diff --git a/PRD.md b/PRD.md index d233539..9c4311b 100644 --- a/PRD.md +++ b/PRD.md @@ -51,6 +51,7 @@ These principles are fundamental to the project's long-term success and must be - **CLI Commands Documentation:** All CLI functionality, options, and usage examples must be documented in `cli/commands.txt` - **Code Comments:** Significant logic changes should include inline documentation - **API Documentation:** New endpoints, functions, or interfaces must be documented +- **API Update Requirement:** Whenever a new API endpoint is added, the PRD.md, README.md, and cli/commands.txt MUST be updated to reflect the new functionality **Documentation Update Checklist:** - [ ] Update PRD.md with any architectural or requirement changes @@ -59,6 +60,7 @@ These principles are fundamental to the project's long-term success and must be - [ ] Add inline comments for complex logic or business rules - [ ] Update any configuration examples or file structure documentation - [ ] Review and update implementation status sections +- [ ] **API Updates:** When new API endpoints are added, update PRD.md, README.md, and cli/commands.txt **CLI Commands Documentation Requirements:** - **Comprehensive Coverage:** All CLI arguments, options, and flags must be documented with examples @@ -68,6 +70,14 @@ These principles are fundamental to the project's long-term success and must be - **Integration Notes:** Document how CLI integrates with web UI and other components - **Version Tracking:** Keep version information and feature status up to date +**API Documentation Requirements:** +- **Endpoint Documentation:** All new API endpoints must be documented in the PRD.md with their purpose, parameters, and responses +- **README Integration:** API changes must be reflected in README.md with usage examples and integration notes +- **CLI Integration:** If CLI commands interact with APIs, they must be documented in cli/commands.txt +- **Version Tracking:** API versioning and changes must be tracked in documentation +- **Error Handling:** Document all possible error responses and status codes +- **Authentication:** Document any authentication requirements or API key usage + This documentation requirement is mandatory and ensures the project remains maintainable and accessible to future developers and users. ### 2.3 Code Quality & Development Standards diff --git a/README.md b/README.md index 6973ed9..d0add6a 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ A comprehensive tool for analyzing, deduplicating, and cleaning up large karaoke - **CDG/MP3 Pairing**: Treats CDG and MP3 files with the same base filename as single karaoke units - **Channel Priority**: For MP4 files, prioritizes based on folder names in the path - **Fuzzy Matching**: Configurable fuzzy matching for artist/title comparison +- **Playlist Validation**: Validates playlists against your song library with exact and fuzzy matching ### File Type Priority System 1. **MP4 files** (with channel priority sorting) @@ -32,12 +33,34 @@ A comprehensive tool for analyzing, deduplicating, and cleaning up large karaoke ## Installation -1. Clone the repository +### Prerequisites + +- Python 3.7 or higher +- pip (Python package installer) + +### Installation Steps + +1. Clone the repository: + ```bash + git clone + cd KaraokeMerge + ``` + 2. Install dependencies: ```bash pip install -r requirements.txt ``` + **Note**: The installation includes: + - **Flask** for the web UI + - **fuzzywuzzy** and **python-Levenshtein** for fuzzy matching in playlist validation + - All other required dependencies + +3. Verify installation: + ```bash + python -c "import flask, fuzzywuzzy; print('All dependencies installed successfully!')" + ``` + ## Usage ### CLI Tool @@ -64,6 +87,21 @@ The web UI will automatically: 2. Start the Flask server 3. Open your default browser to the interface +### Playlist Validation + +Validate your playlists against your song library: +```bash +cd cli +python playlist_validator.py +``` + +Options: +- `--playlist-index N`: Validate a specific playlist by index +- `--output results.json`: Save results to a JSON file +- `--apply`: Apply corrections to playlists (use with caution) + +**Note**: Playlist validation uses fuzzy matching to find potential matches. Make sure fuzzywuzzy is installed for best results. + ### Priority Preferences The web UI now supports drag-and-drop priority management: diff --git a/cli/commands.txt b/cli/commands.txt index d5c8058..8c1a609 100644 --- a/cli/commands.txt +++ b/cli/commands.txt @@ -1,77 +1,117 @@ -# Karaoke Song Library Cleanup Tool - CLI Commands Reference +# Karaoke Song Library Cleanup Tool - CLI Commands Reference (v2.0) ## Overview -The CLI tool analyzes karaoke song collections, identifies duplicates, and generates skip lists for future imports. It supports multiple file formats (MP3, CDG, MP4) with configurable priority systems. +The CLI tool analyzes karaoke song collections, identifies duplicates, validates playlists, and generates skip lists for future imports. It supports multiple file formats (MP3, CDG, MP4) with configurable priority systems. -## Basic Usage +## Quick Start Commands -### Standard Analysis +### Basic Analysis (Most Common) ```bash -python cli/main.py +cd cli +python3 main.py ``` Runs the tool with default settings: - Input: `data/allSongs.json` - Config: `config/config.json` - Output: `data/skipSongs.json` -- Verbose: Disabled -- Reports: **Automatically generated** (including web UI data) +- Reports: **Automatically generated** -### Verbose Output +### Process Everything (Recommended) ```bash -python cli/main.py --verbose +cd cli +python3 main.py --process-all +``` +Complete processing including: +- Duplicate analysis and skip list generation +- Favorites processing with priority logic (MP4 over MP3) +- History processing with priority logic +- Comprehensive report generation + +## Main CLI Commands (main.py) + +### Basic Analysis Commands + +#### Standard Analysis +```bash +python3 main.py +``` +Runs the tool with default settings and generates all reports automatically. + +#### Verbose Output +```bash +python3 main.py --verbose # or -python cli/main.py -v +python3 main.py -v ``` -Enables detailed output showing: -- Individual song processing -- Duplicate detection details -- File type analysis -- Channel priority decisions +Enables detailed output showing individual song processing and decisions. -### Dry Run Mode +#### Dry Run Mode ```bash -python cli/main.py --dry-run +python3 main.py --dry-run ``` -Analyzes songs without generating the skip list file. Useful for: -- Testing configuration changes -- Previewing results before committing -- Validating input data +Analyzes songs without generating the skip list file. Useful for testing and previewing results. -## Configuration Options +### Configuration Commands -### Custom Configuration File +#### Custom Configuration File ```bash -python cli/main.py --config path/to/custom_config.json +python3 main.py --config path/to/custom_config.json ``` Uses a custom configuration file instead of the default `config/config.json`. -### Show Current Configuration +#### Show Current Configuration ```bash -python cli/main.py --show-config +python3 main.py --show-config ``` -Displays the current configuration settings and exits. Useful for: -- Verifying configuration values -- Debugging configuration issues -- Understanding current settings +Displays the current configuration settings and exits. -## Input/Output Options +### Input/Output Commands -### Custom Input File +#### Custom Input File ```bash -python cli/main.py --input path/to/songs.json +python3 main.py --input path/to/songs.json ``` Specifies a custom input file instead of the default `data/allSongs.json`. -### Custom Output Directory +#### Custom Output Directory ```bash -python cli/main.py --output-dir ./custom_output +python3 main.py --output-dir ./custom_output ``` Saves output files to a custom directory instead of the default `data/` folder. -## Report Generation +### Processing Commands -### Detailed Reports (Always Generated) -Reports are now **automatically generated** every time you run the CLI tool. The `--save-reports` flag is kept for backward compatibility but is no longer required. +#### Process Favorites Only +```bash +python3 main.py --process-favorites +``` +Processes favorites with priority-based logic to select best versions (MP4 over MP3). + +#### Process History Only +```bash +python3 main.py --process-history +``` +Processes history with priority-based logic to select best versions (MP4 over MP3). + +#### Process Everything +```bash +python3 main.py --process-all +``` +Processes everything: duplicates, generates reports, AND updates favorites/history with priority logic. + +#### Merge History Objects +```bash +python3 main.py --merge-history +``` +Merges history objects that match on artist, title, and path, summing their count properties. + +### Report Generation + +#### Save Detailed Reports (Legacy) +```bash +python3 main.py --save-reports +``` +**Note**: Reports are now automatically generated every time you run the CLI tool. This flag is kept for backward compatibility. Generated reports include: - `enhanced_summary_report.txt` - Comprehensive analysis @@ -82,43 +122,244 @@ Generated reports include: - `analysis_data.json` - Raw analysis data for further processing - `skip_songs_detailed.json` - **Web UI data (always generated)** -## Combined Examples +## Playlist Validator Commands (playlist_validator.py) -### Full Analysis with Reports +### Basic Playlist Validation + +#### Validate All Playlists ```bash -python cli/main.py --verbose +python3 playlist_validator.py ``` -Runs complete analysis with: +Validates all playlists in `data/songLists.json` against the song library. + +#### Validate Specific Playlist +```bash +python3 playlist_validator.py --playlist-index 0 +``` +Validates a specific playlist by index (0-based). + +### Playlist Validator Options + +#### Custom Configuration +```bash +python3 playlist_validator.py --config path/to/custom_config.json +``` +Uses a custom configuration file. + +#### Custom Data Directory +```bash +python3 playlist_validator.py --data-dir path/to/data +``` +Uses a custom data directory. + +#### Apply Changes (Disable Dry Run) +```bash +python3 playlist_validator.py --apply +``` +Applies changes to playlists instead of just previewing them. + +#### Output Results to File +```bash +python3 playlist_validator.py --output results.json +``` +Saves validation results to a JSON file. + +## Comprehensive Examples + +### Complete Workflow Examples + +#### 1. Full Analysis with Everything +```bash +cd cli +python3 main.py --process-all --verbose +``` +Complete processing with detailed output: +- Duplicate analysis and skip list generation +- Favorites and history processing with priority logic +- Comprehensive report generation - Verbose output for detailed processing information -- **Automatic comprehensive report generation** -- Skip list creation -### Custom Configuration with Dry Run +#### 2. Preview Changes Before Applying ```bash -python cli/main.py --config custom_config.json --dry-run --verbose +cd cli +python3 main.py --process-all --dry-run --verbose ``` -Tests a custom configuration without generating files: -- Uses custom configuration +Preview all changes without saving: +- Shows what would be processed +- No files are modified +- Useful for testing configuration changes + +#### 3. Custom Configuration Testing +```bash +cd cli +python3 main.py --config custom_config.json --dry-run --verbose +``` +Test a custom configuration: +- Uses custom configuration file - Shows detailed processing - No output files created -### Custom Input/Output with Reports +#### 4. Process Only Favorites and History ```bash -python cli/main.py --input /path/to/songs.json --output-dir ./reports +cd cli +python3 main.py --process-favorites --process-history +``` +Process only favorites and history files: +- Updates favorites with best versions (MP4 over MP3) +- Updates history with best versions +- No duplicate analysis performed + +#### 5. Merge History Objects +```bash +cd cli +python3 main.py --merge-history --dry-run +``` +Preview history merging: +- Shows which history objects would be merged +- No files are modified + +#### 6. Apply History Merging +```bash +cd cli +python3 main.py --merge-history +``` +Actually merge history objects: +- Combines duplicate history entries +- Sums count properties +- Saves updated history file + +### Playlist Validation Examples + +#### 1. Validate All Playlists +```bash +cd cli +python3 playlist_validator.py +``` +Validates all playlists and shows summary: +- Total playlists and songs +- Exact matches found +- Missing songs count +- Fuzzy matches (if available) + +#### 2. Validate Specific Playlist +```bash +cd cli +python3 playlist_validator.py --playlist-index 5 +``` +Validates playlist at index 5: +- Shows detailed results for that specific playlist +- Lists exact matches and missing songs + +#### 3. Save Validation Results +```bash +cd cli +python3 playlist_validator.py --output validation_results.json +``` +Saves detailed validation results to JSON file for further analysis. + +#### 4. Apply Playlist Corrections +```bash +cd cli +python3 playlist_validator.py --apply +``` +Applies corrections to playlists (use with caution). + +### Advanced Examples + +#### 1. Custom Input/Output with Full Processing +```bash +cd cli +python3 main.py --input /path/to/songs.json --output-dir ./reports --process-all --verbose ``` Processes custom input and saves all outputs to reports directory: - Custom input file - Custom output location -- **All report files automatically generated** +- Full processing including favorites/history +- Verbose output -### Minimal Output +#### 2. Configuration Testing Workflow ```bash -python cli/main.py --output-dir ./minimal +cd cli +# Show current configuration +python3 main.py --show-config + +# Test with dry run +python3 main.py --dry-run --verbose + +# Test with custom config +python3 main.py --config test_config.json --dry-run --verbose ``` -Runs with minimal output: -- No verbose logging -- No detailed reports -- Only generates skip list + +#### 3. Playlist Analysis Workflow +```bash +cd cli +# Validate all playlists +python3 playlist_validator.py + +# Validate specific playlist +python3 playlist_validator.py --playlist-index 0 + +# Save detailed results +python3 playlist_validator.py --output playlist_analysis.json +``` + +#### 4. Complete System Analysis +```bash +cd cli +# Process everything +python3 main.py --process-all --verbose + +# Validate playlists +python3 playlist_validator.py + +# Show configuration +python3 main.py --show-config +``` + +## Command Line Options Reference + +### Main CLI (main.py) Options + +| Option | Description | Default | +|--------|-------------|---------| +| `--config` | Configuration file path | `../config/config.json` | +| `--input` | Input songs file path | `../data/allSongs.json` | +| `--output-dir` | Output directory | `../data` | +| `--verbose, -v` | Enable verbose output | `False` | +| `--dry-run` | Analyze without generating files | `False` | +| `--save-reports` | Save detailed reports | `True` (always enabled) | +| `--show-config` | Show configuration and exit | `False` | +| `--process-favorites` | Process favorites with priority logic | `False` | +| `--process-history` | Process history with priority logic | `False` | +| `--process-all` | Process everything | `False` | +| `--merge-history` | Merge history objects | `False` | + +### Playlist Validator (playlist_validator.py) Options + +| Option | Description | Default | +|--------|-------------|---------| +| `--config` | Configuration file path | `../config/config.json` | +| `--data-dir` | Data directory path | `../data` | +| `--dry-run` | Dry run mode | `True` | +| `--apply` | Apply changes (disable dry run) | `False` | +| `--playlist-index` | Validate specific playlist by index | `None` | +| `--output` | Output results to JSON file | `None` | + +## File Structure Requirements + +### Required Files +- `data/allSongs.json` - Main song library +- `config/config.json` - Configuration settings + +### Optional Files +- `data/favorites.json` - Favorites list (for processing) +- `data/history.json` - History list (for processing) +- `data/songLists.json` - Playlists (for validation) + +### Generated Files +- `data/skipSongs.json` - Skip list for future imports +- `data/reports/` - Directory containing all analysis reports +- `data/preferences/` - Directory containing priority preferences ## Configuration File Structure @@ -148,31 +389,9 @@ The default configuration file (`config/config.json`) contains: } ``` -### Configuration Options Explained - -#### Channel Priorities -- **channel_priorities**: Array of folder names for MP4 files -- Order determines priority (first = highest priority) -- Files without matching folders are marked for manual review - -#### Matching Settings -- **fuzzy_matching**: Enable/disable fuzzy string matching -- **fuzzy_threshold**: Similarity threshold (0.0-1.0) for fuzzy matching -- **case_sensitive**: Case-sensitive artist/title comparison - -#### Output Settings -- **verbose**: Enable detailed output -- **include_reasons**: Include reason field in skip list -- **max_duplicates_per_song**: Maximum duplicates to process per song - -#### File Type Settings -- **supported_extensions**: All supported file extensions -- **mp4_extensions**: Extensions treated as MP4 files - -## Input File Format - -The tool expects a JSON array of song objects: +## Input File Formats +### Song Library Format (allSongs.json) ```json [ { @@ -183,9 +402,45 @@ The tool expects a JSON array of song objects: ] ``` -Optional fields for MP4 files: -- `channel`: Channel/folder information -- ID3 tag information (artist, title, etc.) +### Playlist Format (songLists.json) +```json +[ + { + "title": "Playlist Name", + "songs": [ + { + "position": 1, + "artist": "Artist Name", + "title": "Song Title" + } + ] + } +] +``` + +### Favorites Format (favorites.json) +```json +[ + { + "artist": "Artist Name", + "title": "Song Title", + "path": "path/to/file.mp3", + "favorite": true + } +] +``` + +### History Format (history.json) +```json +[ + { + "artist": "Artist Name", + "title": "Song Title", + "path": "path/to/file.mp3", + "count": 5 + } +] +``` ## Output Files @@ -193,7 +448,7 @@ Optional fields for MP4 files: - **skipSongs.json**: List of file paths to skip in future imports - Format: `[{"path": "file/path.mp3", "reason": "duplicate"}]` -### Report Files (with --save-reports) +### Report Files (Automatically Generated) - **enhanced_summary_report.txt**: Overall analysis and statistics - **channel_optimization_report.txt**: Channel priority suggestions - **duplicate_pattern_report.txt**: Duplicate detection patterns @@ -222,7 +477,7 @@ The tool provides clear error messages for: ## Performance Notes -- Successfully tested with 37,000+ songs +- Successfully tested with 49,000+ songs - Processes large datasets efficiently - Shows progress indicators for long operations - Memory-efficient processing @@ -245,17 +500,29 @@ The CLI tool integrates with the web UI: ### Debug Mode ```bash -python cli/main.py --verbose --dry-run --show-config +cd cli +python3 main.py --verbose --dry-run --show-config ``` Complete debugging setup: - Shows configuration - Verbose processing - No file changes +### Playlist Validator Debug +```bash +cd cli +python3 playlist_validator.py --dry-run --output debug_results.json +``` +Debug playlist validation: +- Dry run mode +- Save results to file +- No playlist modifications + ## Version Information This commands reference is for Karaoke Song Library Cleanup Tool v2.0 - CLI: Fully functional with comprehensive options - Web UI: Interactive priority management - Priority System: Drag-and-drop with persistence -- Reports: Enhanced analysis with actionable insights \ No newline at end of file +- Reports: Enhanced analysis with actionable insights +- Playlist Validator: Complete playlist analysis and validation \ No newline at end of file diff --git a/cli/complete_playlist_validation.json b/cli/complete_playlist_validation.json new file mode 100644 index 0000000..a494c21 --- /dev/null +++ b/cli/complete_playlist_validation.json @@ -0,0 +1,124359 @@ +{ + "total_playlists": 169, + "playlist_results": [ + { + "playlist_title": "Top 100 Karaoke Songs", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Neil Diamond", + "playlist_title": "Sweet Caroline", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "70aa1d8b-45b6-b3dd-b5d3-5e470c3fac26", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Sweet Caroline (Karaoke Version).mp4", + "title": "Sweet Caroline" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin' on a Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Wanna Dance With Somebody", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "967b0ffa-1914-ea2f-6940-ca5085595a58", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - I Wanna Dance With Somebody (w.mp4", + "title": "I Wanna Dance With Somebody" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Killers", + "playlist_title": "Mr. Brightside", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "37f83db1-2820-ee7d-bfc7-1d52e4d925fd", + "path": "z://MP4\\Sing King Karaoke\\The Killers - Mr Brightside (Karaoke Version).mp4", + "title": "Mr Brightside" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Backstreet Boys", + "playlist_title": "I Want It That Way", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "48ed3e92-55d2-22f3-f7e5-37b4e70ae523", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - I Want It That Way (Karaoke Version).mp4", + "title": "I Want It That Way" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Spice Girls", + "playlist_title": "Wannabe", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "49467912-14fb-ce08-09fd-2e2ea43cf7d5", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - Wannabe (Karaoke Version).mp4", + "title": "Wannabe" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Oasis", + "playlist_title": "Wonderwall", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "4867a49d-407f-dc48-d795-bf9ca55d73f4", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Wonderwall (Karaoke Version).mp4", + "title": "Wonderwall" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse of the Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 to 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Like a Prayer", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "3cee094e-f784-4473-157d-36b8888cf122", + "path": "z://MP4\\Let's Sing Karaoke\\Madonna - Like A Prayer (Karaoke & Lyrics) (2).mp4", + "title": "Like A Prayer" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neil Diamond", + "playlist_title": "Cracklin' Rosie", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "c746960c-cd2b-498f-71e2-c87535d16a19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cracklin Rosie - Neil Diamond.mp4", + "title": "Cracklin Rosie" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "Any Way You Want It", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "42aa663c-28b8-3a5c-de9f-ddea0f3ecffe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Any Way You Want It - Journey.mp4", + "title": "Any Way You Want It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Adele", + "playlist_title": "Rolling in the Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Madonna", + "playlist_title": "Vogue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fc9cbc39-ceb7-4b46-e0f1-a074e596a0b0", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Vogue (Karaoke Version).mp4", + "title": "Vogue" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bryan Adams", + "playlist_title": "Summer of '69", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "18407b50-9913-210b-c09e-8ff71ec4d062", + "path": "z://MP4\\Sing King Karaoke\\Bryan Adams - Summer Of '69 (Karaoke Version).mp4", + "title": "Summer Of '69" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Little Mix", + "playlist_title": "Shout Out to My Ex", + "found_song": { + "artist": "Little Mix", + "disabled": false, + "favorite": false, + "guid": "037470bb-4c46-98ff-34de-69d3c553f121", + "path": "z://MP4\\Sing King Karaoke\\Little Mix - Shout Out To My Ex (Karaoke Version).mp4", + "title": "Shout Out To My Ex" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Shania Twain", + "playlist_title": "Man! I Feel Like a Woman!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "e874c98d-5e8f-1afc-ab9b-13f530125319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Man! I Feel Like A Woman! - Shania Twain.mp4", + "title": "Man! I Feel Like A Woman!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Britney Spears", + "playlist_title": "Oops!... I Did It Again", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "15f490ae-59b1-f079-134f-328d1907d5e2", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Oops!...I Did It Again (Karaoke Version).mp4", + "title": "Oops!...I Did It Again" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Weather Girls", + "playlist_title": "It's Raining Men", + "found_song": { + "artist": "The Weather Girls", + "disabled": false, + "favorite": false, + "guid": "aa8e113d-6f78-0b78-3412-62aab432735f", + "path": "z://MP4\\Stingray Karaoke\\It's Raining Men The Weather Girls Karaoke with Lyrics.mp4", + "title": "It's Raining Men" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Queen", + "playlist_title": "Somebody to Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Spice Girls", + "playlist_title": "Say You'll Be There", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "58d4d851-328a-6ea6-9034-f915961891c7", + "path": "z://CDG\\Various\\Spice Girls - Say You'll Be There.mp3", + "title": "Say You'll Be There" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Everybody (Backstreet's Back)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "53eb2ea2-0647-9a14-f0a4-ded4fc3364f1", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Everybody (Backstreet s Back) (Karaoke Version).mp4", + "title": "Everybody (Backstreet s Back)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Fountains of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Liza Minnelli", + "playlist_title": "Cabaret", + "found_song": { + "artist": "Liza Minnelli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6fcb3b4-65ab-a4f6-51dc-5f2eec549eb2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Liza Minnelli - Cabaret.mp4", + "title": "Cabaret" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Missy Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "a7a9e774-0a98-b1f1-4d59-49c353db5cb4", + "path": "z://MP4\\Let's Sing Karaoke\\Elliott, Missy - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop the Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Blink‑182", + "playlist_title": "All the Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Oasis", + "playlist_title": "Don't Look Back in Anger", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "404f3b17-3427-39d3-41b3-189922f545f9", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Don't Look Back In Anger (Karaoke Version).mp4", + "title": "Don't Look Back In Anger" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Blink‑182", + "playlist_title": "What's My Age Again?", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "guid": "cb394951-2094-513c-c0a5-663c01bfd5ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s My Age Again - Blink-182.mp4", + "title": "What s My Age Again" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Lionel Richie", + "playlist_title": "Hello", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e2d196a3-492c-3a8e-3aad-e7e7c123297f", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - Hello (Karaoke Version).mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "George Michael", + "playlist_title": "Careless Whisper", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "fa7cfb8d-3c09-9839-6607-8a1f4c5547b5", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Careless Whisper (Karaoke Version).mp4", + "title": "Careless Whisper" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Respect", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "5c0977a8-8c70-110a-a799-b4e46a459dd9", + "path": "z://MP4\\Sing King Karaoke\\Aretha Franklin - Respect (Karaoke Version).mp4", + "title": "Respect" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Losing My Religion", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a4a6f38-5742-6a87-3e4d-80946898fd54", + "path": "z://MP4\\Sing King Karaoke\\Rem - Losing My Religion.mp4", + "title": "Losing My Religion" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Go Your Own Way", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "7c5cc505-466c-1c45-ecfa-9959dd563c64", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Go Your Own Way (Karaoke Version).mp4", + "title": "Go Your Own Way" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Queen", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Salt‑n‑Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Michael Jackson", + "playlist_title": "Billie Jean", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc2977c-cbdf-00f6-0997-c3273d2853d4", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - Billie Jean.mp4", + "title": "Billie Jean" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Elvis Presley", + "playlist_title": "Can't Help Falling in Love", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "575336ed-6637-efa8-89d5-3b6242d61db9", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Can t Help Falling In Love (Karaoke Version).mp4", + "title": "Can t Help Falling In Love" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Frank Sinatra", + "playlist_title": "My Way", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "7c0a9b2c-d218-3bf6-6a5c-a2acc8d2a9b8", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - My Way (Karaoke Version).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lil Nas X", + "playlist_title": "Old Town Road", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "93825a62-4f0e-57fe-51f1-9c91318f9101", + "path": "z://MP4\\KaraFun Karaoke\\Old Town Road - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Old Town Road" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "JAY‑Z", + "playlist_title": "Empire State of Mind", + "found_song": { + "artist": "Alicia Keys ft. Jay-Z", + "disabled": false, + "favorite": false, + "guid": "5f14663d-bc79-f476-4617-ebcb49d649fd", + "path": "z://MP4\\singsongsmusic\\Empire State of Mind - Karaoke HD (In the style of Alicia Keys & Jay-Z).mp4", + "title": "Empire State of Mind" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "4 Non Blondes", + "playlist_title": "What's Up?", + "found_song": { + "artist": "4 Non Blondes", + "disabled": false, + "favorite": false, + "guid": "77623013-eb25-7103-4a8f-46c62378d7bf", + "path": "z://MP4\\KaraFun Karaoke\\What’s Up - 4 Non Blondes Karaoke Version KaraFun.mp4", + "title": "What’s Up" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Soundgarden", + "playlist_title": "Fell on Black Days", + "found_song": { + "artist": "Soundgarden", + "disabled": false, + "favorite": false, + "guid": "f19b13c4-7dc1-5947-053d-36964f3f017d", + "path": "z://CDG\\Various\\Soundgarden - Fell On Black Days.mp3", + "title": "Fell On Black Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "63ca77f0-ac16-599f-2f08-b4a4412074b2", + "path": "z://MP4\\Sing King Karaoke\\The Jackson 5 - I Want You Back (Karaoke Version).mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Usher", + "playlist_title": "Climax", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "98cbfbe2-e0d2-0d3f-c3a7-d3c4260be6ab", + "path": "z://MP4\\Sing King Karaoke\\Usher - Climax (Karaoke Version).mp4", + "title": "Climax" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Lionel Richie & Diana Ross", + "playlist_title": "Endless Love", + "found_song": { + "artist": "Lionel Richie & Diana Ross", + "disabled": false, + "favorite": false, + "guid": "9afa9f0b-87fe-5978-a455-5fb98c248b47", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie & Diana Ross - Endless Love (Karaoke Version).mp4", + "title": "Endless Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Brandy & Monica", + "playlist_title": "The Boy Is Mine", + "found_song": { + "artist": "Brandy, Monica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99d44190-b3e2-208b-eae1-edac5dc89b76", + "path": "z://MP4\\Sing King Karaoke\\Brandy, Monica - The Boy Is Mine.mp4", + "title": "The Boy Is Mine" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Kenny Rogers & Dolly Parton", + "playlist_title": "Islands in the Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cruel Summer", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2596a18d-f42c-1be9-249f-8e96304456c4", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Cruel Summer (Karaoke Version).mp4", + "title": "Cruel Summer" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Ed Sheeran & Beyoncé", + "playlist_title": "Perfect Duet", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "4274e7ac-b4db-f357-ff97-468a3da1ef78", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Perfect (Piano Version).mp4", + "title": "Perfect" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Lady Gaga & Bradley Cooper", + "playlist_title": "Shallow", + "found_song": { + "artist": "Lady Gaga & Bradley Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "801991eb-7202-c7f9-77a8-11cc76276395", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Gaga & Bradley Cooper - Shallow.mp4", + "title": "Shallow" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Usher & Alicia Keys", + "playlist_title": "My Boo", + "found_song": { + "artist": "Usher ft. Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "483549a8-985b-30b4-03bd-793d3ab5f2ce", + "path": "z://MP4\\Sing King Karaoke\\Usher And Alicia Keys - My Boo.mp4", + "title": "My Boo" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Elton John & Kiki Dee", + "playlist_title": "Don't Go Breaking My Heart", + "found_song": { + "artist": "Elton John And Kiki Dee", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "e1fed966-32fe-126e-2146-825d279f55ba", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John And Kiki Dee - Dont Go Breaking My Heart.mp4", + "title": "Dont Go Breaking My Heart" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Marvin Gaye ft. Tammi Terrell", + "playlist_title": "Ain't No Mountain High Enough", + "found_song": { + "artist": "Marvin Gaye ft. Tammi Terrell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcc8b0c2-e8c9-bbc0-53c7-c0569ad97ef9", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye, Tammi Terrell - Ain't No Mountain High Enough (Karaoke Version).mp4", + "title": "Ain't No Mountain High Enough" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Taylor Swift ft. Ed Sheeran", + "playlist_title": "Everything Has Changed", + "found_song": { + "artist": "Taylor Swift ft. Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "624e976b-7890-c6ed-8ffb-51e26081f5b9", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift and Ed Sheeran - Everything Has Changed (Karaoke Version).mp4", + "title": "Everything Has Changed" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "playlist_title": "Despacito", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Eminem & Rihanna", + "playlist_title": "Love the Way You Lie", + "found_song": { + "artist": "Eminem Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1346e2a7-efdf-18cd-07fb-915f1a68c16d", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem Featuring Rihanna - Love The Way You Lie.mp4", + "title": "Love The Way You Lie" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Jay‑Z ft. Beyoncé", + "playlist_title": "03 Bonnie & Clyde", + "found_song": { + "artist": "Jay Z ft. Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fd46d57-b392-4650-d2a1-e6e0140a18bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jay Z feat Beyonce - 03 Bonnie And Clyde.mp4", + "title": "03 Bonnie And Clyde" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Sam Smith & Kim Petras", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "SZA & Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Lady Gaga & Bruno Mars", + "playlist_title": "Die with a Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Beyoncé", + "playlist_title": "Crazy in Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3413c594-b3e7-1563-a3dd-fc63955feb74", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Crazy In Love (2014 Remix) (Karaoke Version) (From Fifty Shades Of Grey ).mp4", + "title": "Crazy In Love" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Amy Winehouse & Mark Ronson", + "playlist_title": "Valerie", + "found_song": { + "artist": "Mark Ronson ft. Amy Winehouse", + "disabled": false, + "favorite": false, + "guid": "062ee353-96fd-b992-1bd3-82de9ae711b2", + "path": "z://MP4\\Sing King Karaoke\\Mark Ronson ft. Amy Winehouse - Valerie (Karaoke Version).mp4", + "title": "Valerie" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Huey Lewis & Gwyneth Paltrow", + "playlist_title": "Cruisin'", + "found_song": { + "artist": "Huey Lewis & Gwenyth Paltrow", + "disabled": false, + "favorite": false, + "guid": "29757c3a-3b7f-75b4-95ed-837a271ee835", + "path": "z://MP4\\Let's Sing Karaoke\\Lewis, Huey & Gwenyth Paltrow - Cruisin' (Karaoke & Lyrics).mp4", + "title": "Cruisin'" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "John Travolta & Olivia Newton‑John", + "playlist_title": "Summer Nights", + "found_song": { + "artist": "Olivia Newton-John ft. John Travolta", + "disabled": false, + "favorite": false, + "guid": "be5cc193-48f9-3a93-6f1e-8cb53c038010", + "path": "z://MP4\\KaraokeOnVEVO\\Olivia Newton-John & John Travolta - Summer Nights (Karaoke).mp4", + "title": "Summer Nights" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Rocky Horror Show", + "playlist_title": "The Time Warp", + "found_song": { + "artist": "The Rocky Horror Show", + "disabled": false, + "favorite": false, + "guid": "ec64bc5c-bbe0-d44a-233d-a0089629e820", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Time Warp - The Rocky Horror Show.mp4", + "title": "Time Warp" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Ross & Keyshia Cole", + "playlist_title": "Love", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16b5abc0-e3e5-493f-2b53-6b5318e01659", + "path": "z://MP4\\Sing King Karaoke\\Keyshia Cole - Love.mp4", + "title": "Love" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "I've Had The Time Of My Life", + "found_song": { + "artist": "Bill Medley ft. Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16496c12-f937-78c1-360e-7a09219a748a", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley & Jennifer Warnes - (Ive Had The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Megan Thee Stallion feat. Beyoncé", + "playlist_title": "Savage Remix", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "guid": "ad3fe41a-ff3b-658b-67bd-7a353ef1bb25", + "path": "z://MP4\\Sing King Karaoke\\Megan Thee Stallion - Savage (Karaoke Version).mp4", + "title": "Savage" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Lady Gaga & Ariana Grande", + "playlist_title": "Rain On Me", + "found_song": { + "artist": "Lady Gaga & Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "f50ba95a-91ad-456b-530c-b2d272a8e807", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga & Ariana Grande - Rain On Me (Karaoke Version).mp4", + "title": "Rain On Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Rihanna & JAY‑Z", + "playlist_title": "Umbrella", + "found_song": { + "artist": "Rihanna ft. Jay-Z", + "disabled": false, + "favorite": false, + "guid": "ed702e86-7d37-a4c2-a8df-0a9b739cb12c", + "path": "z://MP4\\Sing King Karaoke\\Rihanna ft. Jay-Z - Umbrella (Karaoke Version).mp4", + "title": "Umbrella" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 73, + "artist": "Nas & Beyoncé", + "title": "Brown Skin Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 69, + "fuzzy_match_count": 30, + "missing_count": 1, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "2025 - Apple Music Top 50", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Drake", + "playlist_title": "NOKIA", + "found_song": { + "artist": "PARTYNEXTDOOR ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "370f81fc-bd2f-f48c-5a60-9bad027e616c", + "path": "z://MP4\\Sing King Karaoke\\PARTYNEXTDOOR, Drake - NOKIA.mp4", + "title": "NOKIA" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bad Bunny", + "playlist_title": "DtMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mariah the Scientist", + "playlist_title": "Burning Blue", + "found_song": { + "artist": "Mariah the Scientist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4a6ae42-46d3-6e43-9c8f-f27e3db4843d", + "path": "z://MP4\\Sing King Karaoke\\Mariah the Scientist - Burning Blue.mp4", + "title": "Burning Blue" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Bieber", + "playlist_title": "DAISIES", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "d8964ae6-e001-b752-97ab-cd1d2a9d7392", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - DAISIES (Karaoke Version).mp4", + "title": "DAISIES" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Bad Bunny", + "playlist_title": "BAILE INoLVIDABLE", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Superman", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "151e7f1d-9e14-10a2-d98a-d5874a38c414", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Superman (Karaoke Version).mp4", + "title": "Superman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Cardi B", + "playlist_title": "Outside", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef89e7a-6702-d628-11ab-c7f2ef139c1e", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Outside.mp4", + "title": "Outside" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Crazy Train", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75c29fc8-76e1-29c1-575d-057d8e39f7a6", + "path": "z://MP4\\VocalStarKaraoke\\Ozzy Osbourne - Crazy Train.mp4", + "title": "Crazy Train" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar & SZA", + "playlist_title": "luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Morgan Wallen & Tate McRae", + "playlist_title": "What I Want", + "found_song": { + "artist": "Morgan Wallen ft. Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21b358b6-7363-25ad-0f32-54e89fe7d464", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen & Tate McRae - What I Want.mp4", + "title": "What I Want" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Playboi Carti", + "playlist_title": "EVIL J0RDAN", + "found_song": { + "artist": "Travis Scott, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6dd5115-714e-728d-4aac-7c4edbc9c6f4", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott, Playboy Carti - FE!N.mp4", + "title": "FE!N" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Drake", + "playlist_title": "What Did I Miss", + "found_song": { + "artist": "Rihanna ft. Drake", + "disabled": false, + "favorite": false, + "guid": "8007f69b-bd9b-bb20-e497-59d200f6a726", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna & Drake - What Is My Name (Female Solo) (Karaoke Version) (2).mp4", + "title": "What Is My Name" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Justin Bieber", + "playlist_title": "ALL I CAN TAKE", + "found_song": { + "artist": "Justin Bieber ft. Khalid", + "disabled": false, + "favorite": false, + "guid": "4aed3bd2-e3a4-f361-5165-0a3f0b1a5b02", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Khalid - As I Am (Karaoke Version).mp4", + "title": "As I Am" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "BigXthaPlug & Bailey Zimmerman", + "playlist_title": "All The Way", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Morgan Wallen & Post Malone", + "playlist_title": "I Ain't Comin' Back", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d444fad-0e1a-fe28-0c43-2a505a6a49da", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Aint Comin Back (feat Post Malone.mp4", + "title": "I Aint Comin Back" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "PARTYNEXTDOOR & Drake", + "playlist_title": "CN TOWER", + "found_song": { + "artist": "PARTYNEXTDOOR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "165ec751-a3f3-d6e7-c560-a514bda8f2c2", + "path": "z://MP4\\Sing King Karaoke\\PARTYNEXTDOOR - Break from Toronto (Karaoke Version).mp4", + "title": "Break from Toronto" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Travis Scott", + "playlist_title": "KICK OUT", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Playboi Carti", + "playlist_title": "RATHER LIE", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Lil Baby", + "playlist_title": "Listen Up", + "found_song": { + "artist": "Future, Lil Baby", + "disabled": false, + "favorite": false, + "guid": "1bc31460-cf36-9d90-5555-a02632492ab0", + "path": "z://MP4\\KaraokeOnVEVO\\Future, Lil Baby - Out The Mud (Karaoke).mp4", + "title": "Out The Mud" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "tv off", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "a2bc9dcd-4b9d-3f0d-17b4-381fc8340cf3", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - i (Karaoke Version).mp4", + "title": "i" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "The Weeknd", + "playlist_title": "Cry For Me", + "found_song": { + "artist": "Lana Del Rey ft. The Weeknd", + "disabled": false, + "favorite": false, + "guid": "117c06db-72cf-f7a0-e65f-ba2a470d5b5e", + "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey ft. The Weeknd - Lust For Life (Karaoke Version).mp4", + "title": "Lust For Life" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Bad Bunny", + "playlist_title": "NUEVAYoL", + "found_song": { + "artist": "Bad Bunny, Drake", + "disabled": false, + "favorite": false, + "guid": "821719cb-acae-67ef-237e-91699d3771f9", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny, Drake - Mia (Karaoke Version).mp4", + "title": "Mia" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Travis Scott", + "playlist_title": "DUMBO", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Toby Keith", + "playlist_title": "Courtesy of the Red, White and Blue", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "14a2ac09-e528-c87d-3300-b03724d8c954", + "path": "z://MP4\\Let's Sing Karaoke\\Keith, Toby - Courtesy Of The Red, White & Blue (Karaoke & Lyrics) (2).mp4", + "title": "Courtesy Of The Red, White & Blue" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm A Little Crazy", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "guid": "6960f285-dab6-4d2c-e3d9-2897536af7b6", + "path": "z://MP4\\King of Karaoke\\Morgan Wallen - Little Rain - King of Karaoke.mp4", + "title": "Little Rain" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Morgan Wallen", + "playlist_title": "20 Cigarettes", + "found_song": { + "artist": "Diplo ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "guid": "2c6cb6f7-fcee-8c55-24a7-e0283aac4e65", + "path": "z://MP4\\Sing King Karaoke\\Diplo ft. Morgan Wallen - Heartless (Karaoke Version).mp4", + "title": "Heartless" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Justin Bieber", + "playlist_title": "GO BABY", + "found_song": { + "artist": "Justin Bieber ft. Ludacris", + "disabled": false, + "favorite": false, + "guid": "d920a036-01db-b2f7-d136-65e894e422b0", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Ludacris - Baby (Karaoke Version).mp4", + "title": "Baby" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Lady Gaga & Bruno Mars", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "PARTYNEXTDOOR & Drake", + "playlist_title": "SOMEBODY LOVES ME", + "found_song": { + "artist": "1920s Standards", + "disabled": false, + "favorite": false, + "guid": "0c69d3bc-fb32-561e-87ac-f47120b266b4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Loves Me - 1920s Standards.mp4", + "title": "Somebody Loves Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "squabble up", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "d3c91e4e-9fdc-3e12-1457-d82869ebfcb8", + "path": "z://MP4\\Stingray Karaoke\\Humble Kendrick Lamar Karaoke with Lyrics.mp4", + "title": "Humble" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Justin Bieber & Gunna", + "playlist_title": "WAY IT IS", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "d8964ae6-e001-b752-97ab-cd1d2a9d7392", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - DAISIES (Karaoke Version).mp4", + "title": "DAISIES" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "Drake", + "title": "GIMME A HUG", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lil Baby, Young Thug & Future", + "title": "Dum, Dumb, and Dumber", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Lil Baby & Rylo Rodriguez", + "title": "By Myself", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny", + "title": "VOY A LLeVARTE PA PR", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "PARTYNEXTDOOR & Drake", + "title": "SOMETHING ABOUT YOU", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Playboi Carti & The Weeknd", + "title": "RATHER LIE", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Baby", + "title": "F U 2x", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lil Durk", + "title": "Vanish Mode", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Travis Scott, Don Toliver & Waka Flocka Flame", + "title": "CHAMPAIN & VACAY", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "PARTYNEXTDOOR & Drake", + "title": "MOTH BALLS", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Playboi Carti & Kendrick Lamar", + "title": "GOOD CREDIT", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Lil Durk", + "title": "They Want To Be You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 23, + "missing_count": 12, + "needs_manual_review": 23 + } + }, + { + "playlist_title": "2025 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "ROSE", + "playlist_title": "APT.", + "found_song": { + "artist": "Rose ft. Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cdc1d65-2b1e-e8a8-59b6-3e9d1949eda5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rose & Bruno Mars - APT.mp4", + "title": "APT" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Chappell Roan", + "playlist_title": "Pink Pony Club", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "660737f7-9bb5-fc12-1bd7-b52a2d02c473", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Pink Pony Club (Karaoke Version).mp4", + "title": "Pink Pony Club" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Love Somebody", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4bd08d6-3839-bc1d-12c1-7cc1ddb69d03", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Love Somebody (Karaoke Version).mp4", + "title": "Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Drake", + "playlist_title": "Nokia", + "found_song": { + "artist": "PARTYNEXTDOOR ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "370f81fc-bd2f-f48c-5a60-9bad027e616c", + "path": "z://MP4\\Sing King Karaoke\\PARTYNEXTDOOR, Drake - NOKIA.mp4", + "title": "NOKIA" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Gracie Abrams", + "playlist_title": "That's So True", + "found_song": { + "artist": "Gracie Abrams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de084702-1eb2-038d-96d7-a9180a5d2af3", + "path": "z://MP4\\Sing King Karaoke\\Gracie Abrams - That’s So True (Karaoke Version).mp4", + "title": "That’s So True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Alex Warren", + "playlist_title": "Ordinary", + "found_song": { + "artist": "Alex Warren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "130e10f6-f0c1-e61a-51bb-63433dffecb5", + "path": "z://MP4\\Sing King Karaoke\\Alex Warren - Ordinary (Karaoke Version).mp4", + "title": "Ordinary" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lola Young", + "playlist_title": "Messy", + "found_song": { + "artist": "Lola Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f4d6765f-389c-8d62-eda8-a8f13089a175", + "path": "z://MP4\\Sing King Karaoke\\Lola Young - Messy (Karaoke Version).mp4", + "title": "Messy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Doechii", + "playlist_title": "Anxiety", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7795470f-0410-b8c4-c871-2bd31edf1a36", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Anxiety.mp4", + "title": "Anxiety" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Leon Thomas", + "playlist_title": "Mutt", + "found_song": { + "artist": "Leon Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3478b3f0-1c00-dd33-d8c6-5a06dc43a0aa", + "path": "z://MP4\\Sing King Karaoke\\Leon Thomas - MUTT (Karaoke Version).mp4", + "title": "MUTT" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "BigXthaPlug", + "playlist_title": "All The Way", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Tate McRae", + "playlist_title": "Sports Car", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb7c7c0f-1ed9-3ab7-3079-aa2d69d87e66", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - Sports car (Karaoke Version).mp4", + "title": "Sports car" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Myles Smith", + "playlist_title": "Stargazing", + "found_song": { + "artist": "Myles Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29311c90-932b-2a64-c703-df0d97cb14f3", + "path": "z://MP4\\Sing King Karaoke\\Myles Smith - Stargazing (Karaoke Version).mp4", + "title": "Stargazing" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "What I Want", + "found_song": { + "artist": "Morgan Wallen ft. Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21b358b6-7363-25ad-0f32-54e89fe7d464", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen & Tate McRae - What I Want.mp4", + "title": "What I Want" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Gaga", + "playlist_title": "Abracadabra", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9a5b697-3618-889d-d726-20f0447ed149", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Abracadabra.mp4", + "title": "Abracadabra" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Benson Boone", + "playlist_title": "Sorry I'm Here For Someone Else", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b050db46-edec-090c-42eb-29b66c7b1bd2", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Sorry Im Here For Someone Else.mp4", + "title": "Sorry I'm Here For Someone Else" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Riley Green", + "playlist_title": "Worst Way", + "found_song": { + "artist": "Riley Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "145d5ab5-347c-60e1-523a-55c0075c86dc", + "path": "z://MP4\\Sing King Karaoke\\Riley Green - Worst Way (Karaoke Version).mp4", + "title": "Worst Way" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bad Bunny", + "playlist_title": "DTMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Marias", + "playlist_title": "No One Noticed", + "found_song": { + "artist": "The Marias", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37ff5d41-37d0-4acf-5f1c-2a49c34c22de", + "path": "z://MP4\\Sing King Karaoke\\The Marias - No One Noticed.mp4", + "title": "No One Noticed" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Manchild", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576600ae-b8e2-8dd5-3eec-157fcee8de7e", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Manchild (Karaoke Version).mp4", + "title": "Manchild" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Ravyn Lenae", + "playlist_title": "Love Me Not", + "found_song": { + "artist": "Ravyn Lenae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4495b3-0ef1-6b9f-e657-816590ccb331", + "path": "z://MP4\\Sing King Karaoke\\Ravyn Lenae - Love Me Not (Karaoke Version).mp4", + "title": "Love Me Not" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Gigi Perez", + "playlist_title": "Sailor Song", + "found_song": { + "artist": "Gigi Perez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "708d4809-5853-8419-0a63-d209e642f8a2", + "path": "z://MP4\\Sing King Karaoke\\Gigi Perez - Sailor Song (Karaoke Version).mp4", + "title": "Sailor Song" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Doechii", + "playlist_title": "Denial Is A River", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8979f1e2-8c09-f7f0-70df-89a79a37dfcb", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Denial Is A River.mp4", + "title": "Denial Is A River" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Zach Top", + "playlist_title": "I Never Lie", + "found_song": { + "artist": "Zach Top", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43bee50c-ab50-1919-c283-c5e1306089d3", + "path": "z://MP4\\Sing King Karaoke\\Zach Top - I Never Lie (Karaoke Version).mp4", + "title": "I Never Lie" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ella Langley", + "playlist_title": "Weren't For The Wind", + "found_song": { + "artist": "Ella Langley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09ac26f4-79e4-8dc2-bcac-c9ef6bd6e511", + "path": "z://MP4\\Sing King Karaoke\\Ella Langley - weren't for the wind (Karaoke Version).mp4", + "title": "weren't for the wind" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bad Bunny", + "playlist_title": "Baile Inolvidable", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Benson Boone", + "playlist_title": "Mystical Magical", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1018a9d3-5d8b-9a17-dc2e-9e9d0e65e8a6", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Mystical Magical (Karaoke Version).mp4", + "title": "Mystical Magical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Shaboozey", + "playlist_title": "Good News", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "guid": "fbabc154-3216-7076-b7e9-cc4ef2920ae5", + "path": "z://MP4\\Stingray Karaoke\\Shaboozey - Good News (Karaoke Version).mp4", + "title": "Good News" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Bed Chem", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "746be54f-dfe6-f096-a00b-f3b5f98f816a", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Bed Chem (Karaoke Version).mp4", + "title": "Bed Chem" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 16, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "TV Off", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "a2bc9dcd-4b9d-3f0d-17b4-381fc8340cf3", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - i (Karaoke Version).mp4", + "title": "i" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Squabble Up", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "d3c91e4e-9fdc-3e12-1457-d82869ebfcb8", + "path": "z://MP4\\Stingray Karaoke\\Humble Kendrick Lamar Karaoke with Lyrics.mp4", + "title": "Humble" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Ain't Coming Back", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d444fad-0e1a-fe28-0c43-2a505a6a49da", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Aint Comin Back (feat Post Malone.mp4", + "title": "I Aint Comin Back" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 3, + "missing_count": 0, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2024 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tommy Richman", + "playlist_title": "Million Dollar Baby", + "found_song": { + "artist": "Tommy Richman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e04622d-2c44-b67e-ef19-5f23d74e6bb2", + "path": "z://MP4\\Sing King Karaoke\\Tommy Richman - MILLION DOLLAR BABY (Karaoke Version).mp4", + "title": "MILLION DOLLAR BABY" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jack Harlow", + "playlist_title": "Lovin On Me", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6cf30417-3cb7-d86c-1e32-bb65adf78cee", + "path": "z://MP4\\Sing King Karaoke\\Jack Harlow - Lovin On Me.mp4", + "title": "Lovin On Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "SZA", + "playlist_title": "Saturn", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96afb253-b553-712c-d082-9e55862545cf", + "path": "z://MP4\\Sing King Karaoke\\SZA - Saturn (Karaoke Version).mp4", + "title": "Saturn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Please Please Please", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "32dd3728-cd72-8ff6-c2bb-83b4f04e546c", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Please Please Please (Karaoke Version).mp4", + "title": "Please Please Please" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Zach Bryan", + "playlist_title": "Pink Skies", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "777b38d4-41f7-da76-e60e-f5dd73f93bde", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Pink Skies (Karaoke Version).mp4", + "title": "Pink Skies" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dasha", + "playlist_title": "Austin", + "found_song": { + "artist": "Dasha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5161a767-35e4-f957-16c8-f0f1e25910c6", + "path": "z://MP4\\Sing King Karaoke\\Dasha - Austin.mp4", + "title": "Austin" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Doja Cat", + "playlist_title": "Agora Hills", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ee009ff-d4b1-b932-abfd-853e86523af3", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Agora Hills.mp4", + "title": "Agora Hills" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Luke Combs", + "playlist_title": "Ain't No Love In Oklahoma", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "44cce20d-99ed-54c0-0be8-75c75ab92f6a", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Ain't No Love In Oklahoma.mp4", + "title": "Ain't No Love In Oklahoma" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chappell Roan", + "playlist_title": "Hot To Go!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f528176f-b611-7406-cc2e-74606f508395", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - HOT TO GO! (Karaoke Version).mp4", + "title": "HOT TO GO!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Feather", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61fcc1dd-9caa-8c9c-297d-9db3fbac12dd", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Feather (Karaoke Version).mp4", + "title": "Feather" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Tyla", + "playlist_title": "Water", + "found_song": { + "artist": "Tyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3cb2600a-0b77-85d1-5d2a-ad2f0e356e80", + "path": "z://MP4\\Sing King Karaoke\\Tyla - Water.mp4", + "title": "Water" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jelly Roll", + "playlist_title": "I Am Not Okay", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6055234-c952-8f64-e6be-c7918a583d44", + "path": "z://MP4\\Sing King Karaoke\\Jelly Roll - I Am Not Okay.mp4", + "title": "I Am Not Okay" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Texas Hold 'Em", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7217242c-c010-274f-08c6-6148f30b5944", + "path": "z://MP4\\Stingray Karaoke\\Beyonce - Texas Hold Em.mp4", + "title": "Texas Hold 'Em" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Eminem", + "playlist_title": "Houdini", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b6cd797-9d56-5f32-20d6-00d837596c75", + "path": "z://MP4\\Sing King Karaoke\\Eminem - Houdini (Karaoke Version).mp4", + "title": "Houdini" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Post Malone", + "playlist_title": "Pour Me A Drink", + "found_song": { + "artist": "Post Malone ft. Blake Shelton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "910f8d9a-cbb3-979e-f471-ed68bd8c45f2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Post Malone feat Blake Shelton - Pour Me A Drink (Without Backing Vocals) -.mp4", + "title": "Pour Me A Drink" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Flo Milli", + "playlist_title": "Never Lose Me", + "found_song": { + "artist": "Flo Milli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77285d76-662b-bcda-75eb-2803f94d9856", + "path": "z://MP4\\Sing King Karaoke\\Flo Milli - Never Lose Me.mp4", + "title": "Never Lose Me" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jimin", + "playlist_title": "Who", + "found_song": { + "artist": "Jimin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "959de075-da03-a27d-276e-cde34fc2bc6d", + "path": "z://MP4\\Sing King Karaoke\\Jimin - Who (Karaoke Version).mp4", + "title": "Who" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Djo", + "playlist_title": "End Of Beginning", + "found_song": { + "artist": "Djo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e114e7b-714d-5d29-78f9-a0a9b64bdabe", + "path": "z://MP4\\Sing King Karaoke\\Djo - End of Beginning (Karaoke Version).mp4", + "title": "End of Beginning" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Cowgirls", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cruel Summer [re-release]", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2596a18d-f42c-1be9-249f-8e96304456c4", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Cruel Summer (Karaoke Version).mp4", + "title": "Cruel Summer" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Marshmello", + "playlist_title": "Miles On It", + "found_song": { + "artist": "Marshmello ft. Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03b6505d-56f5-9a64-4832-e3a74327d3bf", + "path": "z://MP4\\Sing King Karaoke\\Marshmello Featuring Khalid - Silence.mp4", + "title": "Silence" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "We Can't Be Friends (Wait For Your Love)", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e328b766-e4c6-702e-2714-68b3d0ea5a70", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - We Cant Be Friends (Wait For Your Love.mp4", + "title": "We Can't Be Friends (Wait For Your Love)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Lies Lies Lies", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fortnight", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41d574e0-19b7-8737-cef4-d62b635989de", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Fortnight.mp4", + "title": "Fortnight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Can Do It With A Broken Heart", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7563f047-1b3f-1f28-8a64-d98fe54e6383", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - I Can Do It With A Broken Heart.mp4", + "title": "I Can Do It With A Broken Heart" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "21 Savage", + "playlist_title": "Redrum", + "found_song": { + "artist": "21 Savage ft. Metro Boomin, Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1049f3bd-6eb4-ed9f-2ccb-2458ebf463e2", + "path": "z://MP4\\KaraokeOnVEVO\\21 Savage & Metro Boomin Featuring Future - X.mp4", + "title": "X" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "GloRilla", + "playlist_title": "Wanna Be", + "found_song": { + "artist": "GloRilla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dfd81336-5a54-6da5-cffb-b1489f42e883", + "path": "z://MP4\\Sing King Karaoke\\GloRilla - Typa.mp4", + "title": "Typa" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thinkin' Bout Me", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f567e4ab-5b8a-6672-d383-d51110d81dc3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Chasin' You (Karaoke Version).mp4", + "title": "Chasin' You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Taylor Swift", + "playlist_title": "Is It Over Now? (Taylor's Version)", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e924a908-7475-7c0f-23e5-0bbf99cdf417", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Piano Version).mp4", + "title": "Lover (Piano Version)" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 16, + "artist": "Future, Metro Boomin & Kendrick Lamar", + "title": "Like That", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Kanye West and Ty Dolla $ign", + "title": "Carnival", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 11, + "missing_count": 2, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2023 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "Kill Bill", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a876e5f-7a4b-9714-8db1-efc3d1d36f83", + "path": "z://MP4\\Sing King Karaoke\\SZA - Kill Bill (Karaoke Version).mp4", + "title": "Kill Bill" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rema", + "playlist_title": "Calm Down", + "found_song": { + "artist": "Rema &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bcb537-1967-4ef3-86d1-f7ffb2c01b76", + "path": "z://MP4\\Sing King Karaoke\\Rema & Selena Gomez - Calm Down.mp4", + "title": "Calm Down" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Vampire", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac92be2a-60f8-6618-ce9b-be72b1e3bb3f", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - vampire (Karaoke Version).mp4", + "title": "vampire" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Toosii", + "playlist_title": "Favorite Song", + "found_song": { + "artist": "Toosii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57bccd0f-2a6f-c34e-dfa1-e92b8cde5062", + "path": "z://MP4\\Sing King Karaoke\\Toosii - Favorite Song.mp4", + "title": "Favorite Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jelly Roll", + "playlist_title": "Need A Favor", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5a0228e-137f-97e3-95d1-28af37ac9b4c", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Need A Favor.mp4", + "title": "Need A Favor" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dua Lipa", + "playlist_title": "Dance The Night", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5e2cac5-b9e1-09e1-a77e-75ffadf54edf", + "path": "z://MP4\\VocalStarKaraoke\\Dua Lipa - Dance The Night.mp4", + "title": "Dance The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "PinkPantheress", + "playlist_title": "Boy's A Liar, Pt. 2", + "found_song": { + "artist": "PinkPantheress, Ice Spice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3dfdf31-08cc-c16d-8977-05487e381c5c", + "path": "z://MP4\\Sing King Karaoke\\Pink Pantheress, Ice Spice - Boys a liar Pt 2.mp4", + "title": "Boy's a liar Pt. 2" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Eslabon Armado", + "playlist_title": "Ella Baila Sola", + "found_song": { + "artist": "Eslabon Armado, Peso Pluma", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2648069d-5072-644a-44e6-eae465a542f7", + "path": "z://MP4\\Sing King Karaoke\\Eslabon Armado, Peso Pluma - Ella Baila Sola (Karaoke Version).mp4", + "title": "Ella Baila Sola" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kane Brown", + "playlist_title": "Thank God", + "found_song": { + "artist": "Kane Brown, Katelyn Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "957b98a1-995c-9294-006c-bd61399f15f9", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown, Katelyn Brown - Thank God.mp4", + "title": "Thank God" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Coi Leray", + "playlist_title": "Players", + "found_song": { + "artist": "Coi Leray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5720c368-afb8-92c8-a9e7-fb0232e71bba", + "path": "z://MP4\\Sing King Karaoke\\Coi Leray - Players.mp4", + "title": "Players" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Grupo Frontera", + "playlist_title": "Un x100to", + "found_song": { + "artist": "Grupo Frontera, Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33584a9f-276d-995e-2457-622bf4a79605", + "path": "z://MP4\\Sing King Karaoke\\Grupo Frontera, Bad Bunny - un x100to (Karaoke Version).mp4", + "title": "un x100to" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Billie Eilish", + "playlist_title": "What Was I Made For?", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8244850e-b327-bf77-a6fa-562f7dd5bcfb", + "path": "z://MP4\\KaraokeOnVEVO\\Billie Eilish - What Was I Made For.mp4", + "title": "What Was I Made For?" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "RAYE", + "playlist_title": "Escapism", + "found_song": { + "artist": "RAYE, 070 Shake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee7e72fd-cf4b-3fda-ed55-251a2032a117", + "path": "z://MP4\\Sing King Karaoke\\RAYE, 070 Shake - Escapism.mp4", + "title": "Escapism." + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Post Malone", + "playlist_title": "Chemical", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b47b013c-2d76-f82f-3717-67c1b33e7030", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone - Chemical.mp4", + "title": "Chemical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Used To Be Young", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42ccee5-1e69-598d-765a-e51a838af884", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Used To Be Young (Karaoke Version).mp4", + "title": "Used To Be Young" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You [re-release]", + "found_song": { + "artist": "The Weeknd, Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0fc08cd-4981-1acd-8a39-4fa65fb8ff1e", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Ariana Grande - Die For You Remix.mp4", + "title": "Die For You Remix" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thinkin' Bout Me", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f567e4ab-5b8a-6672-d383-d51110d81dc3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Chasin' You (Karaoke Version).mp4", + "title": "Chasin' You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cruel Summer [re-release]", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2596a18d-f42c-1be9-249f-8e96304456c4", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Cruel Summer (Karaoke Version).mp4", + "title": "Cruel Summer" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Gunna", + "playlist_title": "Fukumean", + "found_song": { + "artist": "Chris Brown ft. Gunna", + "disabled": false, + "favorite": false, + "guid": "4cd1a4c5-382a-771e-440c-dc3ea84cf7a4", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown ft. Gunna - Heat (Karaoke Version).mp4", + "title": "Heat" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Lil Durk", + "playlist_title": "All My Life", + "found_song": { + "artist": "K-Ci & Jojo", + "disabled": false, + "favorite": false, + "guid": "48041688-6035-dc78-6be8-f6f212099e7c", + "path": "z://MP4\\Sing King Karaoke\\K-Ci & Jojo - All My Life (Karaoke Version).mp4", + "title": "All My Life" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Miguel", + "playlist_title": "Sure Thing [re-release]", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "483fd9d6-9f80-c3a6-e837-c1c3159e6d25", + "path": "z://MP4\\Sing King Karaoke\\Miguel - Sure Thing (Karaoke Version).mp4", + "title": "Sure Thing" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Karma", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e00aa6b4-04de-c7f8-dd13-b96a9044e1d0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Karma.mp4", + "title": "Karma" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Lil Uzi Vert", + "playlist_title": "Just Wanna Rock", + "found_song": { + "artist": "Lil Uzi Vert", + "disabled": false, + "favorite": false, + "guid": "7a96e5b5-23af-45f8-350c-36fc6ee485bd", + "path": "z://MP4\\Sing King Karaoke\\Lil Uzi Vert - That Way (Karaoke Version).mp4", + "title": "That Way" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Yng Lvcas", + "playlist_title": "La Bebe", + "found_song": { + "artist": "Yng Lvcas, Peso Pluma", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c253cf0d-5b94-21d7-5e47-7320834fd68e", + "path": "z://MP4\\Sing King Karaoke\\Yng Lvcas, Peso Pluma - La Bebe - Remix (Karaoke Version).mp4", + "title": "La Bebe - Remix" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Religiously", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Drake", + "playlist_title": "Rich Flex", + "found_song": { + "artist": "DJ Khaled ft. Drake", + "disabled": false, + "favorite": false, + "guid": "81af2746-ed8a-dee5-e7d4-4be75461a64b", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled ft. Drake - For Free (Karaoke Version).mp4", + "title": "For Free" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Fifty Fifty", + "playlist_title": "Cupid", + "found_song": { + "artist": "Fifty Fifty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a723606-5759-a797-08cf-1604976e1c3c", + "path": "z://MP4\\Sing King Karaoke\\Fifty Fifty - Cupid.mp4", + "title": "Cupid" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lavender Haze", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9cd9e1f-f0f9-060a-588d-e2b0120ccaaf", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lavender Haze (Karaoke Version).mp4", + "title": "Lavender Haze" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Morgan Wallen", + "playlist_title": "One Thing At A Time", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Metro Boomin, The Weeknd & 21 Savage", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nicki Minaj and Ice Spice", + "title": "Barbie World", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Drake", + "title": "Search & Rescue", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Metro Boomin, Future & Chris Brown", + "title": "Superhero (Heroes & Villains)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 15, + "missing_count": 4, + "needs_manual_review": 15 + } + }, + { + "playlist_title": "2022 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Stay", + "found_song": { + "artist": "The Kid LAROI & Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8f8f2877-e968-a875-df4c-9ec9c197398e", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI & Justin Bieber - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elton John", + "playlist_title": "Cold Heart (PNAU Remix)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "332a01a2-856f-db65-9a20-d560ba04c8f0", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Cold Heart (PNAU Remix).mp4", + "title": "Cold Heart (PNAU Remix)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Post Malone", + "playlist_title": "I Like You (A Happier Song)", + "found_song": { + "artist": "Post Malone ft. Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03fad94f-364f-6370-a8d5-33464fac6bad", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone Featuring Doja Cat - I Like You (A Happier Song.mp4", + "title": "I Like You (A Happier Song)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lil Nas X", + "playlist_title": "That's What I Want", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c0dcb0c-51a7-3ab3-4e8b-4499b1296240", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Thats What I Want.mp4", + "title": "That's What I Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Adele", + "playlist_title": "Easy On Me", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "f71193d0-9484-56ca-5627-29eb00d15dff", + "path": "z://MP4\\TheKARAOKEChannel\\Adele - Easy On Me (Karaoke With Lyrics).mp4", + "title": "Easy On Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Nicky Youre", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Lil Nas X", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "One Right Now", + "found_song": { + "artist": "Post Malone ft. The Weeknd", + "disabled": false, + "favorite": false, + "guid": "c4191576-b710-c254-8eb1-a80d0a77ed5c", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, The Weeknd - One Right Now (Karaoke Version).mp4", + "title": "One Right Now" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Muni Long", + "playlist_title": "Hrs And Hrs", + "found_song": { + "artist": "Muni Long", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eefed0d-059d-63e4-4d3f-74af08d5c7e0", + "path": "z://MP4\\Sing King Karaoke\\Muni Long - Hrs And Hrs.mp4", + "title": "Hrs And Hrs" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Kodak Black", + "playlist_title": "Super Gremlin", + "found_song": { + "artist": "Kodak Black ft Travis Scott & Offset", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "83b288c0-7cbe-283c-e950-28450c87fb9a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF394\\SF394-12 - Kodak Black ft Travis Scott & Offset - Zeze.mp3", + "title": "Zeze" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill [re-release]", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "guid": "6c75d46d-966e-b68c-0f03-e4f260e19b43", + "path": "z://MP4\\TheKARAOKEChannel\\Kate Bush - Running Up That Hill (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Running Up That Hill" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Future", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bad Bunny", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz", + "title": "We Don't Talk About Bruno", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Drake", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Gunna and Future", + "title": "Pushin P", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jessica Darrow", + "title": "Surface Pressure", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 4, + "missing_count": 8, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2022 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "AJR", + "playlist_title": "World's Smallest Violin", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6404ba7-2343-c0e3-b8a0-d5922e5d2d33", + "path": "z://MP4\\Sing King Karaoke\\AJR - World's Smallest Violin (Karaoke Version).mp4", + "title": "World's Smallest Violin" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Metallica", + "playlist_title": "Master Of Puppets", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "a514c91f-1c12-800b-ca4e-175849d12199", + "path": "z://CDG\\Various\\Metallica - Master Of Puppets.mp3", + "title": "Master Of Puppets" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foo Fighters", + "playlist_title": "My Hero", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "3dfcf4f9-6d34-c0f8-b91f-1018b7c15e9e", + "path": "z://CDG\\Various\\Foo Fighters - My Hero.mp3", + "title": "My Hero" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Elvis Presley", + "playlist_title": "Suspicious Minds", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "6709163c-b00f-db78-0f0d-cbb3b3789a32", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Suspicious Minds (Karaoke Version).mp4", + "title": "Suspicious Minds" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Billie Eilish", + "playlist_title": "TV", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6f7a6bcb-24d7-83cc-446c-752b3b79e814", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - TV (Karaoke Version).mp4", + "title": "TV" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Maneskin", + "playlist_title": "Supermodel", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f35248a-e0e5-0d64-2b05-28ebd9fac046", + "path": "z://MP4\\VocalStarKaraoke\\Maneskin - Supermodel.mp4", + "title": "Supermodel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Sharks", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a99c7b-c4a9-9c7e-f05b-44d11dddfd08", + "path": "z://MP4\\KaraokeOnVEVO\\Imagine Dragons - Sharks.mp4", + "title": "Sharks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Nessa Barrett", + "playlist_title": "Die First", + "found_song": { + "artist": "Nessa Barrett", + "disabled": false, + "favorite": false, + "guid": "9e6e11e5-c8c8-8f4c-414e-656f8633af72", + "path": "z://MP4\\Sing King Karaoke\\Nessa Barrett - die first (Karaoke Version).mp4", + "title": "die first" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billie Eilish", + "playlist_title": "The 30th", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7c85452-2038-6a65-6493-a9684c21e1d8", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - The 30th.mp4", + "title": "The 30th" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Falling In Reverse", + "playlist_title": "Voices In My Head", + "found_song": { + "artist": "Falling In Reverse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0cc1a13d-0c54-fa9c-fe54-640af57f22aa", + "path": "z://MP4\\KaraokeOnVEVO\\Falling In Reverse - Voices In My Head.mp4", + "title": "Voices In My Head" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Nicky Youre & dazy", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Foo Fighters", + "playlist_title": "Everlong", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "10d5800c-7d54-1878-45dc-88a3c216ade6", + "path": "z://MP4\\Karaoke Sing Sing\\Foo Fighters - Run (Karaoke Version) (2).mp4", + "title": "Run" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Demi Lovato", + "playlist_title": "29", + "found_song": { + "artist": "Olly Murs ft. Demi Lovato", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ce0c677-c1a3-9fc2-6887-fdd9d816d95c", + "path": "z://MP4\\Sing King Karaoke\\Olly Murs Feat. Demi Lovato - Up.mp4", + "title": "Up" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "The 1975", + "playlist_title": "I'm In Love With You", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "guid": "fbc155d6-7085-8849-3d02-842a84bd2e3a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Still In Love With You - Sade.mp4", + "title": "Still In Love With You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Zach Williams", + "playlist_title": "Heart Of God", + "found_song": { + "artist": "Hank Williams", + "disabled": false, + "favorite": false, + "guid": "6ff1ff12-e71b-dd11-a3a9-b887620a70a2", + "path": "z://CDG\\Various\\Hank Williams - Thank God.mp3", + "title": "Thank God" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Rex Orange County", + "playlist_title": "Amazing", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "guid": "b7587128-112e-a90e-2044-39c84e425f27", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Best Friend (Karaoke Version).mp4", + "title": "Best Friend" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "There'd Better Be A Mirrorball", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afd08dd-133e-91e8-fcb3-3e1db5ccc3fc", + "path": "z://MP4\\VocalStarKaraoke\\Arctic Monkeys - Thered Better Be A Mirrorball.mp4", + "title": "Thered Better Be A Mirrorball" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Zach Bryan", + "playlist_title": "Sun To Me", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "777b38d4-41f7-da76-e60e-f5dd73f93bde", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Pink Skies (Karaoke Version).mp4", + "title": "Pink Skies" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Zach Bryan", + "playlist_title": "Heavy Eyes", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "777b38d4-41f7-da76-e60e-f5dd73f93bde", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Pink Skies (Karaoke Version).mp4", + "title": "Pink Skies" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Steve Lacy", + "playlist_title": "Mercury", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aeee56b2-1d66-abc5-e15d-0dd3aedf2712", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Dark Red (Karaoke Version).mp4", + "title": "Dark Red" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Shinedown", + "playlist_title": "Daylight", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ffdf21b-a366-8dfa-c2d6-92772c9e88ed", + "path": "z://CDG\\SBI\\SBI-02\\SBI25952 - Shinedown - Unity.mp3", + "title": "Unity" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "The Killers", + "playlist_title": "Boy", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "192ec929-cd5b-f6d2-a3ca-ef89f1c2a33c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Bones.mp4", + "title": "Bones" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Don't Let The Light Go Out", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f0c93ac-3d8b-df73-2b82-666df2b5420c", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Dont Threaten Me With A Good Time.mp4", + "title": "Don't Threaten Me With A Good Time" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Rex Orange County", + "playlist_title": "The Shade", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "guid": "b7587128-112e-a90e-2044-39c84e425f27", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Best Friend (Karaoke Version).mp4", + "title": "Best Friend" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Steve Lacy", + "playlist_title": "Helmet", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Disturbed", + "playlist_title": "Hey You", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "95293349-45e4-d019-b487-f2a5c3e76acf", + "path": "z://MP4\\KtvEntertainment\\Disturbed - The Light Karaoke Lyrics.mp4", + "title": "The Light" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "AJR", + "playlist_title": "I Won't", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18475993-d9b5-96d8-cfeb-4acdcce60112", + "path": "z://MP4\\VocalStarKaraoke\\AJR - I Wont.mp4", + "title": "I Wont" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Vance Joy", + "playlist_title": "Clarity", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "title": "New Gold", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cafune", + "title": "Tek It", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Beach Weather", + "title": "Sex, Drugs, Etc.", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Pierce The Veil", + "title": "Pass The Nirvana", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "TALK", + "title": "Run Away To Mars", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Gorillaz Featuring Thundercat", + "title": "Cracker Island", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "CORPSE, Scarlxrd & Kordhell", + "title": "Misa Misa!", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Steve Lacy Featuring Foushee", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Suki Waterhouse", + "title": "Good Looking", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 18, + "missing_count": 11, + "needs_manual_review": 18 + } + }, + { + "playlist_title": "2022 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Lil Baby", + "playlist_title": "Detox", + "found_song": { + "artist": "6ix9ine ft. Lil Baby", + "disabled": false, + "favorite": false, + "guid": "4d9b0b65-d5b2-f00b-432e-8bd6549dc307", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version).mp4", + "title": "TIC TOC" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Lil Baby", + "playlist_title": "In A Minute", + "found_song": { + "artist": "6ix9ine ft. Lil Baby", + "disabled": false, + "favorite": false, + "guid": "4d9b0b65-d5b2-f00b-432e-8bd6549dc307", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version).mp4", + "title": "TIC TOC" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Yeat", + "playlist_title": "Talk", + "found_song": { + "artist": "Years & Years", + "disabled": false, + "favorite": false, + "guid": "7786f4d4-1b73-0ccd-7f81-031c966ef7cd", + "path": "z://MP4\\KaraokeOnVEVO\\Years & Years - Real (Karaoke).mp4", + "title": "Real" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Tems", + "playlist_title": "Free Mind", + "found_song": { + "artist": "Emma", + "disabled": false, + "favorite": false, + "guid": "ee87a0fb-d0cb-126d-4004-f9616f5f988c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF206\\Emma - Free Me - SF206 - 06.mp3", + "title": "Free Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Lil Tjay", + "playlist_title": "Beat The Odds", + "found_song": { + "artist": "Future, Lil Baby", + "disabled": false, + "favorite": false, + "guid": "1bc31460-cf36-9d90-5555-a02632492ab0", + "path": "z://MP4\\KaraokeOnVEVO\\Future, Lil Baby - Out The Mud (Karaoke).mp4", + "title": "Out The Mud" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Drake", + "playlist_title": "Sticky", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Rod Wave", + "playlist_title": "Alone", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Beyonce", + "playlist_title": "Alien Superstar", + "found_song": { + "artist": "Beyonce ft. Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "ea409fa2-f444-82ff-3835-e56aea2b449d", + "path": "z://MP4\\King of Karaoke\\Beyonce ft. Nicki Minaj - Flawless - King of Karaoke.mp4", + "title": "Flawless" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Vette Motors", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "playlist_title": "Cash In Cash Out", + "found_song": { + "artist": "Pharrell Williams Featuring 21 Savage &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f88323-8ab8-d16a-6741-85ce8ab583ee", + "path": "z://MP4\\VocalStarKaraoke\\Pharrell Williams Featuring 21 Savage & Tyler, The Creator - Cash In Cash Out.mp4", + "title": "Cash In Cash Out" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Beyonce", + "playlist_title": "Church Girl", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "47884078-3caa-a813-4f66-bf4945643672", + "path": "z://MP4\\Karaoke Sing Sing\\Beyonce - Naughty Girl SING SING KARAOKE.mp4", + "title": "Naughty Girl" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Future & Lil Baby", + "title": "Big Time", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Post Malone Featuring Roddy Ricch", + "title": "Cooped Up", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "City Girls & Usher", + "title": "Good Love", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ice Spice", + "title": "Munch (Feelin' U)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Diddy & Bryson Tiller", + "title": "Gotta Move On", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DJ Khaled Featuring Juice WRLD", + "title": "Juice WRLD Did", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "GloRilla", + "title": "Blessed", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Finesse2Tymes", + "title": "Back End", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "NAV, Travis Scott & Lil Baby", + "title": "Never Sleep", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Moneybagg Yo", + "title": "See Wat I'm Sayin", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "title": "Die Hard", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "YG", + "title": "Toxic", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Rod Wave", + "title": "Sweet Little Lies", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Chris Brown Featuring WizKid", + "title": "Call Me Everyday", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Future", + "title": "Love You Better", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Lil Baby, 42 Dugg & Veeze", + "title": "U-Digg", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rod Wave Featuring Jack Harlow", + "title": "Yungen", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 11, + "missing_count": 30, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2022 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Charlie Puth Featuring Jung Kook", + "playlist_title": "Left And Right", + "found_song": { + "artist": "Charlie Puth Featuring Jung Kook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a83d2c5-dc7e-b7e4-f1d2-9385fa487fcb", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Jung Kook - Left And Right.mp4", + "title": "Left And Right" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Louis Tomlinson", + "playlist_title": "Bigger Than Me", + "found_song": { + "artist": "Louis Tomlinson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46454cde-26d7-397b-d629-0f7a863301f0", + "path": "z://MP4\\KaraokeOnVEVO\\Louis Tomlinson - Bigger Than Me.mp4", + "title": "Bigger Than Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Nicky Youre & dazy", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Post Malone Featuring Doja Cat", + "playlist_title": "I Like You (A Happier Song)", + "found_song": { + "artist": "Post Malone ft. Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03fad94f-364f-6370-a8d5-33464fac6bad", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone Featuring Doja Cat - I Like You (A Happier Song.mp4", + "title": "I Like You (A Happier Song)" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Elton John & Britney Spears", + "playlist_title": "Hold Me Closer", + "found_song": { + "artist": "Elton John &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f357dd2-d315-d6bd-0ccd-7b73599aef04", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John & Britney Spears - Hold Me Closer.mp4", + "title": "Hold Me Closer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Black Eyed Peas, Shakira + David Guetta", + "playlist_title": "Don't You Worry", + "found_song": { + "artist": "Black Eyed Peas, Shakira + David Guetta", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3d9454f-5e0c-8812-83b4-b4d006888977", + "path": "z://MP4\\VocalStarKaraoke\\Black Eyed Peas, Shakira + David Guetta - Dont You Worry.mp4", + "title": "Dont You Worry" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Kane Brown", + "playlist_title": "Grand", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "8cf650fe-e4c0-b840-1f42-6e31bad6c49a", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown - Heaven (Karaoke Version).mp4", + "title": "Heaven" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Kx5 Featuring Hayla", + "playlist_title": "Escape", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "David Guetta & Bebe Rexha", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull + Zac Brown", + "title": "Can't Stop Us Now", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ellie Goulding Featuring Big Sean", + "title": "Easy Lover", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Macklemore Featuring Windser", + "title": "Maniac", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd, Maren Morris & BEAUZ", + "title": "Make You Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 8, + "missing_count": 9, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2022 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Charlie Puth Featuring Jung Kook", + "playlist_title": "Left And Right", + "found_song": { + "artist": "Charlie Puth Featuring Jung Kook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a83d2c5-dc7e-b7e4-f1d2-9385fa487fcb", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Jung Kook - Left And Right.mp4", + "title": "Left And Right" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Ingrid Andress With Sam Hunt", + "playlist_title": "Wishful Drinking", + "found_song": { + "artist": "Ingrid Andress With Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e89113b2-56ff-5726-3205-517d8cf0b758", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress With Sam Hunt - Wishful Drinking.mp4", + "title": "Wishful Drinking" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "JVKE", + "playlist_title": "Golden Hour", + "found_song": { + "artist": "JVKE", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3cdcbf9-4e69-95dd-8d20-5f66ec00509e", + "path": "z://MP4\\Sing King Karaoke\\JVKE - golden hour (Karaoke Version).mp4", + "title": "golden hour" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Nicky Youre & dazy", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Post Malone Featuring Doja Cat", + "playlist_title": "I Like You (A Happier Song)", + "found_song": { + "artist": "Post Malone ft. Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03fad94f-364f-6370-a8d5-33464fac6bad", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone Featuring Doja Cat - I Like You (A Happier Song.mp4", + "title": "I Like You (A Happier Song)" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Elton John & Britney Spears", + "playlist_title": "Hold Me Closer", + "found_song": { + "artist": "Elton John &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f357dd2-d315-d6bd-0ccd-7b73599aef04", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John & Britney Spears - Hold Me Closer.mp4", + "title": "Hold Me Closer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Lil Baby", + "playlist_title": "Detox", + "found_song": { + "artist": "6ix9ine ft. Lil Baby", + "disabled": false, + "favorite": false, + "guid": "4d9b0b65-d5b2-f00b-432e-8bd6549dc307", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version).mp4", + "title": "TIC TOC" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Lil Baby", + "playlist_title": "In A Minute", + "found_song": { + "artist": "6ix9ine ft. Lil Baby", + "disabled": false, + "favorite": false, + "guid": "4d9b0b65-d5b2-f00b-432e-8bd6549dc307", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine feat. Lil Baby - TIC TOC (Karaoke Version).mp4", + "title": "TIC TOC" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Bad Bunny", + "playlist_title": "Efecto", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Fall In Love", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Yeat", + "playlist_title": "Talk", + "found_song": { + "artist": "Years & Years", + "disabled": false, + "favorite": false, + "guid": "7786f4d4-1b73-0ccd-7f81-031c966ef7cd", + "path": "z://MP4\\KaraokeOnVEVO\\Years & Years - Real (Karaoke).mp4", + "title": "Real" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Karol G", + "playlist_title": "Provenza", + "found_song": { + "artist": "TINI, Karol G", + "disabled": false, + "favorite": false, + "guid": "4ac55dc0-24dd-726a-dce0-018af802ec6d", + "path": "z://MP4\\Sing King Karaoke\\TINI, Karol G - Princesa (Karaoke Version).mp4", + "title": "Princesa" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "David Guetta & Bebe Rexha", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Burna Boy", + "playlist_title": "Last Last", + "found_song": { + "artist": "Stormzy ft. Ed Sheeran & Burna Boy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8809d09-9caf-03ef-ff76-7fc8ec67ff16", + "path": "z://MP4\\ZoomKaraokeOfficial\\Stormzy feat Ed Sheeran & Burna Boy - Own It.mp4", + "title": "Own It" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Mitchell Tenpenny", + "playlist_title": "Truth About You", + "found_song": { + "artist": "Mitchell Tenpenny", + "disabled": false, + "favorite": false, + "guid": "45d6e195-7a9c-6927-10a9-dbf6d771c18a", + "path": "z://MP4\\King of Karaoke\\Mitchell Tenpenny - Bitches - King of Karaoke.mp4", + "title": "Bitches" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Tems", + "playlist_title": "Free Mind", + "found_song": { + "artist": "Emma", + "disabled": false, + "favorite": false, + "guid": "ee87a0fb-d0cb-126d-4004-f9616f5f988c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF206\\Emma - Free Me - SF206 - 06.mp3", + "title": "Free Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Justin Moore", + "playlist_title": "With A Woman You Love", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Lil Tjay", + "playlist_title": "Beat The Odds", + "found_song": { + "artist": "Future, Lil Baby", + "disabled": false, + "favorite": false, + "guid": "1bc31460-cf36-9d90-5555-a02632492ab0", + "path": "z://MP4\\KaraokeOnVEVO\\Future, Lil Baby - Out The Mud (Karaoke).mp4", + "title": "Out The Mud" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Drake", + "playlist_title": "Sticky", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Gabby Barrett", + "playlist_title": "Pick Me Up", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Where It Ends", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Rod Wave", + "playlist_title": "Alone", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Bad Bunny", + "playlist_title": "Neverita", + "found_song": { + "artist": "Bad Bunny, Drake", + "disabled": false, + "favorite": false, + "guid": "821719cb-acae-67ef-237e-91699d3771f9", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny, Drake - Mia (Karaoke Version).mp4", + "title": "Mia" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Lee Brice", + "playlist_title": "Soul", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Rema & Selena Gomez", + "playlist_title": "Calm Down", + "found_song": { + "artist": "Rema, Selena Gomez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68fe3ee8-a072-eb07-6852-ccb6afa78869", + "path": "z://MP4\\Sing King Karaoke\\Rema, Selena Gomez - Calm Down.mp4", + "title": "Calm Down" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bizarrap & Quevedo", + "playlist_title": "Bzrp Music Sessions, Vol. 52", + "found_song": { + "artist": "Bizarrap, Shakira", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03677a87-86c9-f2dc-92c2-46c866f217dd", + "path": "z://MP4\\Sing King Karaoke\\Bizarrap, Shakira - Bzrp Music Sessions, #53.mp4", + "title": "Bzrp Music Sessions, #53" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Bad Bunny & Chencho Corleone", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Karol G x Maldy", + "title": "Gatubela", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Bad Bunny & Rauw Alejandro", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Rosalia", + "title": "Despecha", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bad Bunny & Bomba Estereo", + "title": "Ojitos Lindos", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Despues de La Playa", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Tarot", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Manuel Turizo", + "title": "La Bachata", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Romeo Santos & Justin Timberlake", + "title": "Sin Fin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 41, + "fuzzy_match_count": 25, + "missing_count": 34, + "needs_manual_review": 25 + } + }, + { + "playlist_title": "2022 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ingrid Andress With Sam Hunt", + "playlist_title": "Wishful Drinking", + "found_song": { + "artist": "Ingrid Andress With Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e89113b2-56ff-5726-3205-517d8cf0b758", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress With Sam Hunt - Wishful Drinking.mp4", + "title": "Wishful Drinking" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lainey Wilson", + "playlist_title": "Heart Like A Truck", + "found_song": { + "artist": "Lainey Wilson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0389c8e3-bb2b-307c-e817-4305e4281bd6", + "path": "z://MP4\\Sing King Karaoke\\Lainey Wilson - Heart Like A Truck.mp4", + "title": "Heart Like A Truck" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Fall In Love", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Mitchell Tenpenny", + "playlist_title": "Truth About You", + "found_song": { + "artist": "Mitchell Tenpenny", + "disabled": false, + "favorite": false, + "guid": "45d6e195-7a9c-6927-10a9-dbf6d771c18a", + "path": "z://MP4\\King of Karaoke\\Mitchell Tenpenny - Bitches - King of Karaoke.mp4", + "title": "Bitches" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Justin Moore", + "playlist_title": "With A Woman You Love", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Gabby Barrett", + "playlist_title": "Pick Me Up", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Where It Ends", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Lee Brice", + "playlist_title": "Soul", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Old Dominion", + "playlist_title": "No Hard Feelings", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "f2d1006d-cf34-f3a5-b260-30cae0fbdaf5", + "path": "z://MP4\\KtvEntertainment\\Old Dominion - Hotel Key Karaoke Lyrics.mp4", + "title": "Hotel" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Joy Of My Life", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "5c914385-e595-2002-20e7-4977ce63d128", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - More Of You Karaoke Lyrics.mp4", + "title": "More Of You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Heartfirst", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Carly Pearce", + "playlist_title": "What He Didn't Do", + "found_song": { + "artist": "Carly Pearce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b1f9dc08-25a7-f221-709d-56012e8049be", + "path": "z://MP4\\VocalStarKaraoke\\Carly Pearce - What He Didnt Do.mp4", + "title": "What He Didnt Do" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Out In The Middle", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e803535d-86b6-be39-868f-629844141c0f", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - The Wind (Karaoke).mp4", + "title": "The Wind" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Hailey Whitters", + "playlist_title": "Everything She Ain't", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de500eac-d157-6d1f-8bd6-5bcf1579c742", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Everything She Wants.mp4", + "title": "Everything She Wants" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Jason Aldean", + "playlist_title": "That's What Tequila Does", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "384f3f68-4951-720c-b1cd-c1b2d505b877", + "path": "z://MP4\\Karaoke Junkies\\Jason Aldean - Got What I Got (Karaoke).mp4", + "title": "Got What I Got" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Little Big Town", + "playlist_title": "Hell Yeah", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "5042c6be-5d53-f77f-346c-2fd33f44a72a", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Happy People Karaoke Lyrics.mp4", + "title": "Happy People" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Walker Hayes", + "playlist_title": "Y'all Life", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Luke Combs", + "playlist_title": "Tomorrow Me", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "eb496a75-5c45-4d6f-8243-c132f83da176", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Moon Over Mexico (Karaoke).mp4", + "title": "Moon Over Mexico" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Sam Hunt", + "playlist_title": "Water Under The Bridge", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "f6e66fc2-35ab-1457-fcab-e9a45fdfccd7", + "path": "z://MP4\\Stingray Karaoke\\Water Under The Bridge Adele Karaoke with Lyrics.mp4", + "title": "Water Under The Bridge" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Corey Kent", + "title": "Wild As Her", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "HARDY Featuring Lainey Wilson", + "title": "Wait In The Truck", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jimmie Allen", + "title": "Down Home", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BRELAND Featuring Lady A", + "title": "Told You I Could Drink", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "David Morris", + "title": "Dutton Ranch Freestyle", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Dustin Lynch", + "title": "Party Mode", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Parker McCollum", + "title": "Handle On You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Drew Green", + "title": "Good Ol' Man", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jordan Davis", + "title": "Next Thing You Know", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Frank Ray", + "title": "Country'd Look Good On You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Can't Have Mine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 18, + "missing_count": 19, + "needs_manual_review": 18 + } + }, + { + "playlist_title": "2021 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Dreams", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a354524b-3343-e0a7-e332-11645e2a442f", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Dreams (Karaoke Version).mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Billie Eilish", + "playlist_title": "Your Power", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb70b0d7-0df6-e135-d35e-c1dfb460de68", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Your Power (Karaoke Version).mp4", + "title": "Your Power" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Male Fantasy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6462e7a8-10d8-fd2a-56de-660ee8662c07", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Male Fantasy (Karaoke Version).mp4", + "title": "Male Fantasy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Brutal", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "bd4b44d5-b689-ee64-90bd-d1314912c0e4", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - brutal (Karaoke Version).mp4", + "title": "brutal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Maneskin", + "playlist_title": "I Wanna Be Your Slave", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc17f1fb-e9d1-cf02-2082-9a46644f9b1e", + "path": "z://MP4\\KaraokeOnVEVO\\Maneskin - I Wanna Be Your Slave.mp4", + "title": "I Wanna Be Your Slave" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Follow You", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a41bd323-8641-0aff-b418-b1ae370b0a43", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Follow You (Karaoke Version).mp4", + "title": "Follow You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Surf Curse", + "playlist_title": "Freaks", + "found_song": { + "artist": "Surf Curse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0bd2b48-baa9-1576-55c4-df5ceaa7270a", + "path": "z://MP4\\Sing King Karaoke\\Surf Curse - Freaks (Karaoke Version).mp4", + "title": "Freaks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Wrecked", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "e45ec851-8ee5-b34e-c10d-61c4e181a3bc", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Wrecked (Karaoke Version).mp4", + "title": "Wrecked" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lorde", + "playlist_title": "Solar Power", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ad46914-fe77-dedf-8524-aebd9009e0a2", + "path": "z://MP4\\VocalStarKaraoke\\Lorde - Solar Power.mp4", + "title": "Solar Power" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "AURORA", + "playlist_title": "Runaway", + "found_song": { + "artist": "Aurora", + "disabled": false, + "favorite": false, + "guid": "a9e2158c-f693-e6ea-3fe4-84582ec646dd", + "path": "z://MP4\\Sing King Karaoke\\Aurora - Runaway (Karaoke Version).mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Higher Power", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "404361fa-961d-87c5-d5d7-20ad64059c3a", + "path": "z://MP4\\KaraFun Karaoke\\Higher Power - Coldplay Karaoke Version KaraFun.mp4", + "title": "Higher Power" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Vance Joy", + "playlist_title": "Missing Piece", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abecd49e-f5a8-e350-0fe3-29050d9d8cff", + "path": "z://MP4\\VocalStarKaraoke\\Vance Joy - Missing Piece.mp4", + "title": "Missing Piece" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "girl in red", + "playlist_title": "Serotonin", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ab9a71d-b0d0-85a0-1c02-c7401e86cdc7", + "path": "z://MP4\\VocalStarKaraoke\\girl in red - Serotonin.mp4", + "title": "Serotonin" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "John Mayer", + "playlist_title": "Last Train Home", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c045d59-7d96-b9a2-cb8c-28616f15073a", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Mayer - Last Train Home.mp4", + "title": "Last Train Home" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "PinkPantheress", + "playlist_title": "Passion", + "found_song": { + "artist": "PinkPantheress", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b01737d-bb96-8ced-b2f8-1e3fb22224c9", + "path": "z://MP4\\Sing King Karaoke\\PinkPantheress - Passion.mp4", + "title": "Passion" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "twenty one pilots", + "playlist_title": "Shy Away", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "992cbb26-6eba-d3b5-9c9b-883ac5f62ec4", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Shy Away (Karaoke Version).mp4", + "title": "Shy Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Elle King & Miranda Lambert", + "playlist_title": "Drunk (And I Don't Wanna Go Home)", + "found_song": { + "artist": "Elle King & Miranda Lambert", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9df6a86-e195-a851-a098-c84af1800d79", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King & Miranda Lambert - Drunk (And I Dont Wanna Go Home.mp4", + "title": "Drunk (And I Don't Wanna Go Home)" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Billie Eilish", + "playlist_title": "Billie Bossa Nova", + "found_song": { + "artist": "Billie Eilish, ROSALÍA", + "disabled": false, + "favorite": false, + "guid": "48301dc8-b189-e371-aa22-f37c623e5710", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish, ROSALÍA - Lo Vas A Olvidar (Karaoke Version).mp4", + "title": "Lo Vas A Olvidar" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Billie Eilish", + "playlist_title": "Oxytocin", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "0d02be63-6bde-5339-a46c-7638febadac0", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - COPYCAT (Karaoke Version).mp4", + "title": "COPYCAT" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Billie Eilish", + "playlist_title": "I Didn't Change My Number", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efccc75f-6ca2-5985-efc4-c4cf0518d517", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - THE DINER.mp4", + "title": "THE DINER" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Billie Eilish", + "playlist_title": "Goldwing", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "28f911da-665b-a882-7591-9cd6950b7ec0", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - goodbye (Karaoke Version).mp4", + "title": "goodbye" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Billie Eilish", + "playlist_title": "OverHeated", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "703d04b5-3810-8c68-5971-c511811e98db", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Bored (Karaoke Version).mp4", + "title": "Bored" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Billie Eilish", + "playlist_title": "Everybody Dies", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fe71b36a-a5f8-78bb-ccb9-4767a212f966", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my boy (Karaoke Version).mp4", + "title": "my boy" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Billie Eilish", + "playlist_title": "Not My Responsibility", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fe71b36a-a5f8-78bb-ccb9-4767a212f966", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my boy (Karaoke Version).mp4", + "title": "my boy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "PinkPantheress", + "playlist_title": "Break It Off", + "found_song": { + "artist": "PinkPantheress", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c145cfa0-dda8-caad-6102-af0a79b858fe", + "path": "z://MP4\\Sing King Karaoke\\PinkPantheress - Pain (Karaoke Version).mp4", + "title": "Pain" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Foo Fighters", + "playlist_title": "Making A Fire", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3da65c60-0b2b-6005-0967-b32d1d63f9b5", + "path": "z://CDG\\Various\\Foo Fighters - Walking After You.mp3", + "title": "Walking After You" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Darkness Settles In", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38efd75-e122-62bf-fced-371c7e33328b", + "path": "z://MP4\\KaraokeOnVEVO\\Five Finger Death Punch - Trouble.mp4", + "title": "Trouble" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Clairo", + "playlist_title": "Amoeba", + "found_song": { + "artist": "Clairo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0660831e-c040-8a4e-d566-c28a07e70656", + "path": "z://MP4\\Sing King Karaoke\\Clairo - Bags.mp4", + "title": "Bags" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Willow Featuring Travis Barker", + "title": "transparentsoul", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Weezer", + "title": "All My Favorite Songs", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Big Red Machine Featuring Taylor Swift", + "title": "Renegade", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rise Against", + "title": "Nowhere Generation", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Modest Mouse", + "title": "We Are Between", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bleachers", + "title": "Stop Making This Hurt", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "title": "Love Race", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lorde", + "title": "Stoned At The Nail Salon", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "bbno$ Featuring Rich Brian", + "title": "Edamame", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 13, + "missing_count": 11, + "needs_manual_review": 13 + } + }, + { + "playlist_title": "2021 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Lil Nas X & Jack Harlow", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Doja Cat & The Weeknd", + "playlist_title": "You Right", + "found_song": { + "artist": "Doja Cat ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdc58bde-d27c-1449-11be-63313d86ffd0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat & The Weeknd - You Right.mp4", + "title": "You Right" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Roddy Ricch", + "playlist_title": "Late At Night", + "found_song": { + "artist": "Roddy Ricch", + "disabled": false, + "favorite": false, + "guid": "1654bbad-33f1-56d8-588a-94f0ea689b89", + "path": "z://MP4\\Sing King Karaoke\\Roddy Ricch - The Box (Karaoke Version).mp4", + "title": "The Box" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Doja Cat", + "playlist_title": "Ain't Shit", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "guid": "109027af-1000-0284-fdd4-b9ef4c76a7ca", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Say So (Karaoke Version).mp4", + "title": "Say So" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "BIA Featuring Nicki Minaj", + "playlist_title": "Whole Lotta Money", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Rod Wave", + "playlist_title": "Tombstone", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0074134-775b-9d0c-5573-af8dd6d16e3e", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Sinners.mp4", + "title": "Sinners" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "City Girls", + "playlist_title": "Twerkulator", + "found_song": { + "artist": "City Girls", + "disabled": false, + "favorite": false, + "guid": "153b94fc-973d-975b-d3ad-cbb0db3afcdc", + "path": "z://MP4\\Sing King Karaoke\\City Girls - Act Up (Karaoke Version).mp4", + "title": "Act Up" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Nevada", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake Featuring Lil Baby", + "title": "Wants And Needs", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Tjay Featuring 6LACK", + "title": "Calling My Phone", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moneybagg Yo", + "title": "Time Today", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "title": "WUSYANAME", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Young Thug & Gunna", + "title": "Ski", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "DaBaby", + "title": "Red Light Green Light", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "T-Pain & Kehlani", + "title": "I Like Dat", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "42 Dugg & Roddy Ricch", + "title": "4 Da Gang", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brent Faiyaz Featuring Drake", + "title": "Wasting Time", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "42 Dugg Featuring Future", + "title": "Maybach", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Trippie Redd & Playboi Carti", + "title": "Miss The Rage", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "title": "Holy Smokes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Wale Featuring Chris Brown", + "title": "Angles", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Isaiah Rashad", + "title": "RIP Young", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cochise & $NOT", + "title": "Tell Em", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "J. Cole & Lil Baby", + "title": "pride.is.the.devil", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "EST Gee", + "title": "Lick Back", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 9, + "missing_count": 34, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2021 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Doja Cat Featuring SZA", + "playlist_title": "Kiss Me More", + "found_song": { + "artist": "Doja Cat Featuring SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff508c0d-6a40-695e-99b3-fe8a38b41a7b", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat Featuring SZA - Kiss Me More.mp4", + "title": "Kiss Me More" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Weeknd", + "playlist_title": "Take My Breath", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "d8d25e8d-1897-81e7-ad99-6788f0ca053c", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Take My Breath (Karaoke Version).mp4", + "title": "Take My Breath" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Maroon 5", + "playlist_title": "Lost", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ed2b50c-93cc-309f-a1a3-ec554d8854aa", + "path": "z://MP4\\VocalStarKaraoke\\Maroon 5 - Lost.mp4", + "title": "Lost" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tesher X Jason Derulo", + "playlist_title": "Jalebi Baby", + "found_song": { + "artist": "Tesher X Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b2b4a0a-9379-2e1d-1e47-b5b10dc99516", + "path": "z://MP4\\VocalStarKaraoke\\Tesher X Jason Derulo - Jalebi Baby.mp4", + "title": "Jalebi Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "The Kid LAROI & Justin Bieber", + "playlist_title": "Stay", + "found_song": { + "artist": "The Kid LAROI & Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8f8f2877-e968-a875-df4c-9ec9c197398e", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI & Justin Bieber - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello ft. Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ed52b-608a-72bb-5e5f-bba2e2e9a466", + "path": "z://MP4\\Sing King Karaoke\\Marshmello X Jonas Brothers - Leave Before You Love Me.mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Doja Cat & The Weeknd", + "playlist_title": "You Right", + "found_song": { + "artist": "Doja Cat ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdc58bde-d27c-1449-11be-63313d86ffd0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat & The Weeknd - You Right.mp4", + "title": "You Right" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Lil Nas X & Jack Harlow", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Bazzi", + "playlist_title": "I Like That", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "da331221-f6f5-9890-a687-be6b1815fd2f", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - He Like That (Karaoke Version).mp4", + "title": "He Like That" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Tones And I", + "playlist_title": "Cloudy Day", + "found_song": { + "artist": "Tones And I", + "disabled": false, + "favorite": false, + "guid": "d6c796e8-2e23-d7cc-9fd1-daa07550d8a4", + "path": "z://MP4\\KaraFun Karaoke\\Fly Away - Tones And I Karaoke Version KaraFun.mp4", + "title": "Fly Away" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Alessia Cara", + "playlist_title": "Sweet Dream", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Pop Smoke Featuring Dua Lipa", + "title": "Demeanor", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Dixie Featuring Rubi Rose", + "title": "Psycho", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "title": "Lifetime", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 9, + "missing_count": 9, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2021 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Doja Cat Featuring SZA", + "playlist_title": "Kiss Me More", + "found_song": { + "artist": "Doja Cat Featuring SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff508c0d-6a40-695e-99b3-fe8a38b41a7b", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat Featuring SZA - Kiss Me More.mp4", + "title": "Kiss Me More" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Bad Bunny", + "playlist_title": "Yonaguni", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "guid": "eb1195b0-30a6-b4e4-6d54-4f08ed7032a5", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Yonaguni (Karaoke Version).mp4", + "title": "Yonaguni" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Favorite Crime", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "374be4fd-440e-47ed-3174-2086d13083f2", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - favorite crime (Karaoke Version).mp4", + "title": "favorite crime" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Happier", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "f3ce170a-3513-461f-a60a-fd1c869fc6b7", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - happier (Karaoke Version).mp4", + "title": "happier" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "The Kid LAROI & Justin Bieber", + "playlist_title": "Stay", + "found_song": { + "artist": "The Kid LAROI & Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8f8f2877-e968-a875-df4c-9ec9c197398e", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI & Justin Bieber - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Dua Lipa Featuring DaBaby", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Lil Nas X & Jack Harlow", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "The Weeknd & Ariana Grande", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Doja Cat & The Weeknd", + "playlist_title": "You Right", + "found_song": { + "artist": "Doja Cat ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdc58bde-d27c-1449-11be-63313d86ffd0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat & The Weeknd - You Right.mp4", + "title": "You Right" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello ft. Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ed52b-608a-72bb-5e5f-bba2e2e9a466", + "path": "z://MP4\\Sing King Karaoke\\Marshmello X Jonas Brothers - Leave Before You Love Me.mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Nelly & Florida Georgia Line", + "playlist_title": "Lil Bit", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "BTS", + "playlist_title": "Permission To Dance", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "f279e602-82b2-d77d-75d8-67eaebd06c8b", + "path": "z://MP4\\Sing King Karaoke\\BTS - Permission To Dance (Karaoke Version).mp4", + "title": "Permission To Dance (Karaoke Version)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Roddy Ricch", + "playlist_title": "Late At Night", + "found_song": { + "artist": "Roddy Ricch", + "disabled": false, + "favorite": false, + "guid": "1654bbad-33f1-56d8-588a-94f0ea689b89", + "path": "z://MP4\\Sing King Karaoke\\Roddy Ricch - The Box (Karaoke Version).mp4", + "title": "The Box" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Maroon 5 Featuring Megan Thee Stallion", + "playlist_title": "Beautiful Mistakes", + "found_song": { + "artist": "Maroon 5 ft. Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24a14eff-e07d-300a-27a1-097460e36f0b", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Megan Thee Stallion - Beautiful Mistakes.mp4", + "title": "Beautiful Mistakes" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Chris Young + Kane Brown", + "playlist_title": "Famous Friends", + "found_song": { + "artist": "Chris Young & Kane Brown", + "disabled": false, + "favorite": false, + "guid": "b75c8ff1-3c0b-fd24-e2f8-194ce3cb4e7b", + "path": "z://MP4\\KaraFun Karaoke\\Famous Friends - Chris Young & Kane Brown Karaoke Version KaraFun.mp4", + "title": "Famous Friends" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Doja Cat", + "playlist_title": "Ain't Shit", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "guid": "109027af-1000-0284-fdd4-b9ef4c76a7ca", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Say So (Karaoke Version).mp4", + "title": "Say So" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "BIA Featuring Nicki Minaj", + "playlist_title": "Whole Lotta Money", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Country Again", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "0c8edddd-21cf-cfce-4fdc-6c1cc5280250", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Vacation Karaoke Lyrics.mp4", + "title": "Vacation" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Jason Aldean & Carrie Underwood", + "playlist_title": "If I Didn't Love You", + "found_song": { + "artist": "Jason Aldean, Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "fff9b4ec-addf-015d-507e-b0b48ceafd70", + "path": "z://MP4\\Sing King Karaoke\\Jason Aldean, Carrie Underwood - If I Didn't Love You (Karaoke Version).mp4", + "title": "If I Didn't Love You" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Rauw Alejandro", + "playlist_title": "Todo de Ti", + "found_song": { + "artist": "Rauw Alejandro", + "disabled": false, + "favorite": false, + "guid": "046e251c-8487-283c-43c5-53bb8d19666f", + "path": "z://MP4\\Sing King Karaoke\\Rauw Alejandro - Todo De Ti (Karaoke Version).mp4", + "title": "Todo De Ti" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Elle King & Miranda Lambert", + "playlist_title": "Drunk (And I Don't Wanna Go Home)", + "found_song": { + "artist": "Elle King & Miranda Lambert", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9df6a86-e195-a851-a098-c84af1800d79", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King & Miranda Lambert - Drunk (And I Dont Wanna Go Home.mp4", + "title": "Drunk (And I Don't Wanna Go Home)" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Justin Moore", + "playlist_title": "We Didn't Have Much", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Old Dominion", + "playlist_title": "I Was On A Boat That Day", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Billie Eilish", + "playlist_title": "Billie Bossa Nova", + "found_song": { + "artist": "Billie Eilish, ROSALÍA", + "disabled": false, + "favorite": false, + "guid": "48301dc8-b189-e371-aa22-f37c623e5710", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish, ROSALÍA - Lo Vas A Olvidar (Karaoke Version).mp4", + "title": "Lo Vas A Olvidar" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Rod Wave", + "playlist_title": "Tombstone", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0074134-775b-9d0c-5573-af8dd6d16e3e", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Sinners.mp4", + "title": "Sinners" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Billie Eilish", + "playlist_title": "Oxytocin", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "0d02be63-6bde-5339-a46c-7638febadac0", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - COPYCAT (Karaoke Version).mp4", + "title": "COPYCAT" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Jason Aldean", + "playlist_title": "Blame It On You", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "c4940a37-bf90-38da-3006-f590932ca21b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Lights Come On Karaoke Lyrics.mp4", + "title": "Lights Come On" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Billie Eilish", + "playlist_title": "I Didn't Change My Number", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efccc75f-6ca2-5985-efc4-c4cf0518d517", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - THE DINER.mp4", + "title": "THE DINER" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Aventura x Bad Bunny", + "title": "Volvi", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Saweetie Featuring Doja Cat", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Farruko", + "title": "Pepas", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "title": "AM", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "title": "Fiel", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 27, + "missing_count": 33, + "needs_manual_review": 27 + } + }, + { + "playlist_title": "2021 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Sand In My Boots", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dbcea48b-298f-718c-dee1-7d626739c6fa", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Sand In My Boots (Karaoke Version).mp4", + "title": "Sand In My Boots" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ingrid Andress", + "playlist_title": "Lady Like", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "c97cf043-8f7c-1ee3-f04e-5091e75a653e", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Andress - Lady Like (Karaoke).mp4", + "title": "Lady Like" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Nelly & Florida Georgia Line", + "playlist_title": "Lil Bit", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Chris Young + Kane Brown", + "playlist_title": "Famous Friends", + "found_song": { + "artist": "Chris Young & Kane Brown", + "disabled": false, + "favorite": false, + "guid": "b75c8ff1-3c0b-fd24-e2f8-194ce3cb4e7b", + "path": "z://MP4\\KaraFun Karaoke\\Famous Friends - Chris Young & Kane Brown Karaoke Version KaraFun.mp4", + "title": "Famous Friends" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Country Again", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "0c8edddd-21cf-cfce-4fdc-6c1cc5280250", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Vacation Karaoke Lyrics.mp4", + "title": "Vacation" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Jason Aldean & Carrie Underwood", + "playlist_title": "If I Didn't Love You", + "found_song": { + "artist": "Jason Aldean, Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "fff9b4ec-addf-015d-507e-b0b48ceafd70", + "path": "z://MP4\\Sing King Karaoke\\Jason Aldean, Carrie Underwood - If I Didn't Love You (Karaoke Version).mp4", + "title": "If I Didn't Love You" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Elle King & Miranda Lambert", + "playlist_title": "Drunk (And I Don't Wanna Go Home)", + "found_song": { + "artist": "Elle King & Miranda Lambert", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9df6a86-e195-a851-a098-c84af1800d79", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King & Miranda Lambert - Drunk (And I Dont Wanna Go Home.mp4", + "title": "Drunk (And I Don't Wanna Go Home)" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Justin Moore", + "playlist_title": "We Didn't Have Much", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Old Dominion", + "playlist_title": "I Was On A Boat That Day", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Luke Combs", + "playlist_title": "Cold As You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8bf6b10f-0942-4dfe-6e38-242d841d5012", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Lovin' On You (Karaoke).mp4", + "title": "Lovin' On You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Carly Pearce", + "playlist_title": "Next Girl", + "found_song": { + "artist": "Carly Pearce", + "disabled": false, + "favorite": false, + "guid": "3a90146a-2ff0-4ebe-0198-b0928b96bb91", + "path": "z://MP4\\Karaoke Studio\\Carly Pearce - Hide The Wine (Karaoke Version).mp4", + "title": "Hide The Wine" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Knowing You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "3421bef6-47ba-5d9e-c623-3c42ef761213", + "path": "z://MP4\\KtvEntertainment\\Kenny Chesney - Noise Karaoke Lyrics.mp4", + "title": "Noise" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Lady A", + "playlist_title": "Like A Lady", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "3cee094e-f784-4473-157d-36b8888cf122", + "path": "z://MP4\\Let's Sing Karaoke\\Madonna - Like A Prayer (Karaoke & Lyrics) (2).mp4", + "title": "Like A Prayer" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Jimmie Allen & Brad Paisley", + "playlist_title": "Freedom Was A Highway", + "found_song": { + "artist": "Jimmie Allen & Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c131aff8-a465-41c4-7a2f-77778c12f0a1", + "path": "z://MP4\\KaraokeOnVEVO\\Jimmie Allen & Brad Paisley - Freedom Was A Highway.mp4", + "title": "Freedom Was A Highway" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Same Boat", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc31a2e9-645c-8eea-a938-89a5fc63af97", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Same Boat.mp4", + "title": "Same Boat" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Home Sweet", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Aaron Lewis", + "playlist_title": "Am I The Only One", + "found_song": { + "artist": "Aaron Lewis", + "disabled": false, + "favorite": false, + "guid": "624f2b68-c861-e1a6-d00d-4cd9966f3bdb", + "path": "z://MP4\\King of Karaoke\\Aaron Lewis - That Ain't Country - King of Karaoke.mp4", + "title": "That Ain't Country" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Dan + Shay", + "playlist_title": "Good Things", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "45b020d7-2484-31bc-e350-38f1be12009d", + "path": "z://MP4\\KtvEntertainment\\Dan + Shay - How Not To Karaoke Lyrics.mp4", + "title": "How Not To" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Breland Featuring Keith Urban", + "playlist_title": "Throw It Back", + "found_song": { + "artist": "Breland Featuring Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56b303b6-0c1b-fcf0-86d4-6f919486cb5d", + "path": "z://MP4\\KaraokeOnVEVO\\Breland Featuring Keith Urban - Throw It Back.mp4", + "title": "Throw It Back" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Brett Young", + "playlist_title": "Not Yet", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "6e81468e-0657-1c77-7c3d-dd22b4edc893", + "path": "z://MP4\\Karaoke Studio\\Brett Young - Mercy (Karaoke with Lyrics).mp4", + "title": "Mercy" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Kelsea Ballerini & LANY", + "playlist_title": "I Quit Drinking", + "found_song": { + "artist": "Kelsea Ballerini & LANY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd4218e5-b795-8ca9-c348-1ce62b3bfb9e", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini & LANY - I Quit Drinking.mp4", + "title": "I Quit Drinking" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Mitchell Tenpenny", + "playlist_title": "Truth About You", + "found_song": { + "artist": "Mitchell Tenpenny", + "disabled": false, + "favorite": false, + "guid": "45d6e195-7a9c-6927-10a9-dbf6d771c18a", + "path": "z://MP4\\King of Karaoke\\Mitchell Tenpenny - Bitches - King of Karaoke.mp4", + "title": "Bitches" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis Featuring Luke Bryan", + "title": "Buy Dirt", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "title": "Thinking 'Bout You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Parker McCollum", + "title": "To Be Loved By You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Michael Ray", + "title": "Whiskey And Rain", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jon Pardi", + "title": "Tequila Little Time", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Priscilla Block", + "title": "Just About Over You", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dierks Bentley, Breland & HARDY", + "title": "Beers On Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "title": "Half Of My Hometown", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "HARDY", + "title": "Give Heaven Some Hell", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Chase Matthew", + "title": "County Line", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Callista Clark", + "title": "It's 'Cause I Am", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Garth Brooks", + "title": "That's What Cowboys Do", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Riley Green", + "title": "If It Wasn't For Trucks", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 21, + "missing_count": 20, + "needs_manual_review": 21 + } + }, + { + "playlist_title": "2020 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Clairo", + "playlist_title": "Sofia", + "found_song": { + "artist": "Clairo", + "disabled": false, + "favorite": false, + "guid": "493d606a-1d5a-28a9-c840-9e209ba21d23", + "path": "z://MP4\\Sing King Karaoke\\Clairo - Sofia (Karaoke Version).mp4", + "title": "Sofia" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Plastic Hearts", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "22a03a3f-b4dd-a974-ecf2-ffb3095d4d16", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Plastic Hearts (Karaoke Version).mp4", + "title": "Plastic Hearts" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Machine Gun Kelly", + "playlist_title": "Bloody Valentine", + "found_song": { + "artist": "Machine Gun Kelly", + "disabled": false, + "favorite": false, + "guid": "9dfb5697-7255-7932-697e-6ddffa475e3e", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly - Bloody Valentine (Karaoke Version).mp4", + "title": "Bloody Valentine" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wallows Featuring Clairo", + "playlist_title": "Are You Bored Yet?", + "found_song": { + "artist": "Wallows Featuring Clairo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "787d49b1-b513-603d-e3a0-86ee29c94547", + "path": "z://MP4\\Sing King Karaoke\\Wallows Featuring Clairo - Are You Bored Yet.mp4", + "title": "Are You Bored Yet?" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "BANNERS", + "playlist_title": "Someone To You", + "found_song": { + "artist": "BANNERS", + "disabled": false, + "favorite": false, + "guid": "b004ff62-a2d1-dcdf-7233-c390f1564789", + "path": "z://MP4\\Sing King Karaoke\\BANNERS - Someone To You (Karaoke Version).mp4", + "title": "Someone To You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "347aidan", + "playlist_title": "Dancing In My Room", + "found_song": { + "artist": "347aidan", + "disabled": false, + "favorite": false, + "guid": "374e316f-cff8-a838-b906-f463d34a5315", + "path": "z://MP4\\Sing King Karaoke\\347aidan - Dancing In My Room (Karaoke Version).mp4", + "title": "Dancing In My Room" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Shame Shame", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72b20cd6-cdb9-d160-6d95-d809b7868ad5", + "path": "z://MP4\\VocalStarKaraoke\\Foo Fighters - Shame Shame.mp4", + "title": "Shame Shame" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Peach Tree Rascals", + "playlist_title": "Mariposa", + "found_song": { + "artist": "Peach Tree Rascals", + "disabled": false, + "favorite": false, + "guid": "1dc2808f-e7ac-2894-b666-7c01f6f5b51d", + "path": "z://MP4\\Sing King Karaoke\\Peach Tree Rascals - Mariposa (Karaoke Version).mp4", + "title": "Mariposa" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Cannons", + "playlist_title": "Fire For You", + "found_song": { + "artist": "Cannons", + "disabled": false, + "favorite": false, + "guid": "4a9f1e7a-e3fa-4531-cbdf-89482345a834", + "path": "z://MP4\\Sing King Karaoke\\Cannons - Fire For You (Karaoke Version).mp4", + "title": "Fire For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Penelope Scott", + "playlist_title": "Rat", + "found_song": { + "artist": "Penelope Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebc73b4b-5518-8581-a5a8-5cda5f22dc06", + "path": "z://MP4\\Sing King Karaoke\\Penelope Scott - Rat.mp4", + "title": "Rat" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Frances Forever", + "playlist_title": "Space Girl", + "found_song": { + "artist": "Frances Forever", + "disabled": false, + "favorite": false, + "guid": "01433b1a-f4a7-1c76-75a9-e5a77636718f", + "path": "z://MP4\\Sing King Karaoke\\Frances Forever - Space Girl (Karaoke Version).mp4", + "title": "Space Girl" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Stellar", + "playlist_title": "Ashes", + "found_song": { + "artist": "Stellar", + "disabled": false, + "favorite": false, + "guid": "344115df-5fc2-f00b-8fb1-319471c68760", + "path": "z://MP4\\Sing King Karaoke\\Stellar - Ashes (Karaoke Version).mp4", + "title": "Ashes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tones And I", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Tones And I", + "disabled": false, + "favorite": false, + "guid": "d6c796e8-2e23-d7cc-9fd1-daa07550d8a4", + "path": "z://MP4\\KaraFun Karaoke\\Fly Away - Tones And I Karaoke Version KaraFun.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Juice WRLD x Marshmello", + "playlist_title": "Come & Go", + "found_song": { + "artist": "Juice WRLD & Marshmello", + "disabled": false, + "favorite": false, + "guid": "24bbbfd4-3ee5-0661-9f77-5a27ff024656", + "path": "z://MP4\\Come & Go - Juice WRLD & Marshmello (Karaoke Instrumental).mp4", + "title": "Come & Go" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cardigan", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c91637f-a5a9-43bc-7907-9c3d8182d2c0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - cardigan (Karaoke Version).mp4", + "title": "cardigan" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Miley Cyrus", + "playlist_title": "WTF Do I Know", + "found_song": { + "artist": "Will.I.Am ft. Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "8686a7e5-d97d-0641-7c42-6480213c576d", + "path": "z://CDG\\Big Hits Karaoke\\BHK044\\BHK044-06 - Will.I.Am & Miley Cyrus - Fall Down.mp3", + "title": "Fall Down" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Machine Gun Kelly & Halsey", + "playlist_title": "Forget Me Too", + "found_song": { + "artist": "Halsey ft. Machine Gun Kelly", + "disabled": false, + "favorite": false, + "guid": "705a1f72-ee7d-9234-6d62-8bed0309e6f9", + "path": "z://MP4\\Forget Me Too - Halsey Machine Gun Kelly (Karaoke Version).mp4", + "title": "Forget Me Too" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Gimme What I Want", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d89bbd86-a629-a598-802b-7ce5c39f616c", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Slide Away (Karaoke Version).mp4", + "title": "Slide Away" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Miley Cyrus", + "playlist_title": "High", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "7d81b646-cf91-4a51-b1ab-7bc21aa9ad2e", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - 7 Things (Karaoke Version).mp4", + "title": "7 Things" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Royal & The Serpent", + "playlist_title": "Overwhelmed", + "found_song": { + "artist": "Royal ft. The Serpent", + "disabled": false, + "favorite": false, + "guid": "c4a8a18d-a430-a154-2306-1e2bd714020f", + "path": "z://MP4\\Sing King Karaoke\\Royal & The Serpent - Overwhelmed (Karaoke Version).mp4", + "title": "Overwhelmed" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Zombie", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4da0d5e-78d5-7d67-cd0c-421c60a7ee3a", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Climb.mp4", + "title": "Climb" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "My Tears Ricochet", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad51718-c330-2410-cfa3-f41ef8bae403", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - My Tears Ricochet.mp4", + "title": "My Tears Ricochet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Taylor Swift", + "playlist_title": "August", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2a6763c9-0aac-b2f9-8599-8f2f4012f6f0", + "path": "z://MP4\\Stingray Karaoke\\Taylor Swift - August.mp4", + "title": "August" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "AC/DC", + "playlist_title": "Shot In The Dark", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "8946008c-7acc-d187-60e6-5286e55ad502", + "path": "z://MP4\\ACDC - Shot In The Dark (Karaoke Version).mp4", + "title": "Shot In The Dark" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Sista_Prod Featuring Subvrbs", + "playlist_title": "Eyes Blue Like The Atlantic", + "found_song": { + "artist": "Sista Prod, Powfu, Alec Benjamin, Rxseboy", + "disabled": false, + "favorite": false, + "guid": "bcf052ab-39f1-b797-086e-1f4932f04cea", + "path": "z://MP4\\Sing King Karaoke\\Sista Prod, Powfu, Alec Benjamin, Rxseboy - Eyes Blue Like The Atlantic Part 2 (Karaoke Version).mp4", + "title": "Eyes Blue Like The Atlantic Part 2" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Taylor Swift", + "playlist_title": "This Is Me Trying", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4eb202e8-bb49-ee2b-3842-fd0d500820b2", + "path": "z://MP4\\sing2karaoke\\Taylor Swift - its time to go.mp4", + "title": "it's time to go" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Taylor Swift", + "playlist_title": "Mirrorball", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0c9d619b-e37a-fb0f-8def-48cd5b8a3500", + "path": "z://MP4\\KtvEntertainment\\Taylor Swift - Ronan (Karaoke without Vocal).mp4", + "title": "Ronan" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "Seven", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d1c19ce-60d3-ae34-d4a1-60cb3e8e879d", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Seven.mp4", + "title": "Seven" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Machine Gun Kelly", + "playlist_title": "Drunk Face", + "found_song": { + "artist": "Machine Gun Kelly ft. Ester Dean", + "disabled": false, + "favorite": false, + "guid": "8033d14a-b767-dbc7-69d0-e867898a0766", + "path": "z://MP4\\KaraokeOnVEVO\\Machine Gun Kelly ft. Ester Dean - Invincible (Clean) (Karaoke).mp4", + "title": "Invincible" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Royal Blood", + "playlist_title": "Trouble's Coming", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d39e4107-bf8a-211f-7d45-e588cf2d0b9d", + "path": "z://MP4\\VocalStarKaraoke\\Royal Blood - Troubles Coming.mp4", + "title": "Troubles Coming" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Tame Impala", + "playlist_title": "Is It True", + "found_song": { + "artist": "Tame Impala", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c574acd0-b76d-a13e-a94c-bfc2aef68cbe", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tame Impala - Let It Happen.mp4", + "title": "Let It Happen" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Bastille", + "playlist_title": "Survivin'", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1fcc2794-4779-7496-99a0-0bbf896d3fdd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bastille - Oblivion.mp4", + "title": "Oblivion" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "CORPSE", + "playlist_title": "Miss You!", + "found_song": { + "artist": "DeBurgh, Chris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2119fe40-75b6-a34e-9f22-90d911251f03", + "path": "z://CDG\\SBI\\SBI-01\\SB02390 - Chris DeBurgh - Missing You.mp3", + "title": "Missing You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Taylor Swift", + "playlist_title": "Mad Woman", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "6e0c9cc2-64c3-9802-3f53-582353014013", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Mean (Karaoke Version).mp4", + "title": "Mean" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Taylor Swift Featuring Bon Iver", + "title": "Exile", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Miley Cyrus Featuring Billy Idol", + "title": "Night Crawling", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "All Time Low Featuring blackbear", + "title": "Monsters", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Miley Cyrus Featuring Joan Jett", + "title": "Bad Karma", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "NEEDTOBREATHE", + "title": "Who Am I", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tai Verdes", + "title": "Drugs", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Zach Bryan", + "title": "Heading South", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "ILLENIUM", + "title": "Nightlight", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "I Prevail Featuring Delaney Jane", + "title": "Every Time You Leave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 22, + "missing_count": 10, + "needs_manual_review": 22 + } + }, + { + "playlist_title": "2020 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "DaBaby Featuring Roddy Ricch", + "playlist_title": "Rockstar", + "found_song": { + "artist": "DaBaby Featuring Roddy Ricch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2812ca6-610d-fe09-b1f0-11cd1777cefa", + "path": "z://MP4\\Sing King Karaoke\\DaBaby Featuring Roddy Ricch - Rockstar.mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "H.E.R.", + "playlist_title": "Damage", + "found_song": { + "artist": "H.E.R.", + "disabled": false, + "favorite": false, + "guid": "333078e3-0881-7f29-0abe-e2b40ee54feb", + "path": "z://MP4\\Sing King Karaoke\\H.E.R. - Damage (Karaoke Version).mp4", + "title": "Damage" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Body", + "found_song": { + "artist": "BTS (feat. Megan Thee Stallion)", + "disabled": false, + "favorite": false, + "guid": "e355e0f4-205f-b3a4-455e-d0e08229c585", + "path": "z://MP4\\TheKARAOKEChannel\\BTS (feat. Megan Thee Stallion) - Butter (Karaoke with Lyrics).mp4", + "title": "Butter" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Cardi B Featuring Megan Thee Stallion", + "playlist_title": "WAP", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "d6d21966-8166-bfa8-7f99-b2c17e7846db", + "path": "z://MP4\\TheKARAOKEChannel\\Cardi B - WAP feat. Megan Thee Stallion (Karaoke with Lyrics).mp4", + "title": "WAP feat. Megan Thee Stallion" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "DaBaby", + "playlist_title": "Practice", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "429b09cd-91cb-4a46-139c-6da6adef6d24", + "path": "z://MP4\\Sing King Karaoke\\Drake - Practice.mp4", + "title": "Practice" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "Popstar", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Money Man Featuring Lil Baby", + "playlist_title": "24", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Kacey Talk", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "DaBaby Featuring Young Thug", + "playlist_title": "Blind", + "found_song": { + "artist": "Camila Cabello Featuring Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "266f7a81-7eca-3d06-5e54-10a3a98be6fb", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello Featuring Young Thug - Havana.mp4", + "title": "Havana" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Future & Lil Uzi Vert", + "playlist_title": "That's It", + "found_song": { + "artist": "Lil Uzi Vert", + "disabled": false, + "favorite": false, + "guid": "7a96e5b5-23af-45f8-350c-36fc6ee485bd", + "path": "z://MP4\\Sing King Karaoke\\Lil Uzi Vert - That Way (Karaoke Version).mp4", + "title": "That Way" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Juice WRLD & The Weeknd", + "playlist_title": "Smile", + "found_song": { + "artist": "Juice WRLD & The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7b29b943-7911-9a5b-e349-8f6ff3a6c658", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & The Weeknd - Smile (Karaoke Version).mp4", + "title": "Smile" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Usher", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rod Wave Featuring ATR Son Son", + "title": "Rags2Riches", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "title": "The Woo", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Pop Smoke Featuring Lil Tjay", + "title": "Mood Swings", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "title": "Franchise", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ne-Yo & Jeremih", + "title": "U 2 Luv", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Future & Lil Uzi Vert", + "title": "Drankin N Smokin", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "DDG", + "title": "Moonwalking In Calabasas", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "21 Savage & Metro Boomin", + "title": "Runnin", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Lil Yachty, Future & Playboi Carti", + "title": "Flex Up", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Meek Mill Featuring Lil Durk", + "title": "Pain Away", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Megan Thee Stallion Featuring DaBaby", + "title": "Cry Baby", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "DJ Chose Featuring BeatKing", + "title": "Thick", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "title": "Hello", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "K Camp Featuring Jacquees", + "title": "What's On Your Mind", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Ty Dolla $ign Featuring Post Malone", + "title": "Spicy", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Yung Bleu Featuring Drake", + "title": "You're Mines Still", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "King Von Featuring Lil Durk", + "title": "Crazy Story 2.0", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Kid LAROI & Juice WRLD", + "title": "Go!", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Big Sean Featuring Post Malone", + "title": "Wolves", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 10, + "missing_count": 34, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2020 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Holy", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Zoe Wees", + "playlist_title": "Control", + "found_song": { + "artist": "Zoe Wees", + "disabled": false, + "favorite": false, + "guid": "8651018b-ef16-85b8-bebe-674b331e9550", + "path": "z://MP4\\Sing King Karaoke\\Zoe Wees - Control (Karaoke Version).mp4", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jason Derulo", + "playlist_title": "Take You Dancing", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d0cd6f1-020c-b614-529e-3c6940bce5a5", + "path": "z://MP4\\VocalStarKaraoke\\Jason Derulo - Take You Dancing.mp4", + "title": "Take You Dancing" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ritt Momney", + "playlist_title": "Put Your Records On", + "found_song": { + "artist": "Ritt Momney", + "disabled": false, + "favorite": false, + "guid": "81f39d24-23e7-6e6b-bdcb-6888f80b4be0", + "path": "z://MP4\\Sing King Karaoke\\Ritt Momney - Put Your Records On (Karaoke Version).mp4", + "title": "Put Your Records On" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Conan Gray", + "playlist_title": "Heather", + "found_song": { + "artist": "Conan Gray", + "disabled": false, + "favorite": false, + "guid": "fb8ba04f-c065-aa3f-e794-ba69de14aeb3", + "path": "z://MP4\\Sing King Karaoke\\Conan Gray - Heather (Karaoke Version).mp4", + "title": "Heather" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Joel Corry X MNEK", + "playlist_title": "Head & Heart", + "found_song": { + "artist": "Joel Corry X MNEK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "776101c2-da43-f5d2-787c-3a06bb153153", + "path": "z://MP4\\VocalStarKaraoke\\Joel Corry X MNEK - Head & Heart.mp4", + "title": "Head & Heart" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Kane Brown With Swae Lee & Khalid", + "playlist_title": "Be Like That", + "found_song": { + "artist": "Kane Brown With Swae Lee & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "045c1942-b22b-2ce1-96a7-baccb8074b2c", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown With Swae Lee & Khalid - Be Like That.mp4", + "title": "Be Like That" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Dua Lipa Featuring DaBaby", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Justin Bieber & benny blanco", + "playlist_title": "Lonely", + "found_song": { + "artist": "Justin Bieber & benny blanco", + "disabled": false, + "favorite": false, + "guid": "7277adcd-963b-89ea-7882-f9136bb252d8", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber & benny blanco - Lonely (Karaoke Version).mp4", + "title": "Lonely" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Shawn Mendes & Justin Bieber", + "playlist_title": "Monster", + "found_song": { + "artist": "Shawn Mendes ft. Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f114e5b-3235-2902-e1da-f0bd657a1dba", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Justin Bieber - Monster.mp4", + "title": "Monster" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Why Don't We", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Why Don't We", + "disabled": false, + "favorite": false, + "guid": "5e7865cd-6418-65ef-367a-b559be25a6f9", + "path": "z://MP4\\Sing King Karaoke\\Why Don't We - BIG PLANS (Karaoke Version).mp4", + "title": "BIG PLANS" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Miley Cyrus Featuring Dua Lipa", + "playlist_title": "Prisoner", + "found_song": { + "artist": "Miley Cyrus ft. Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40b7c2a0-519e-2685-f8cf-d09d842465d8", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus Featuring Dua Lipa - Prisoner.mp4", + "title": "Prisoner" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Zara Larsson", + "playlist_title": "Wow", + "found_song": { + "artist": "Zara Larsson", + "disabled": false, + "favorite": false, + "guid": "b81915c2-11d2-cbef-6360-2c41fb9e51fb", + "path": "z://MP4\\KtvEntertainment\\Zara Larsson - TG4M Karaoke.mp4", + "title": "TG4M" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Juice WRLD x Marshmello", + "playlist_title": "Come & Go", + "found_song": { + "artist": "Juice WRLD & Marshmello", + "disabled": false, + "favorite": false, + "guid": "24bbbfd4-3ee5-0661-9f77-5a27ff024656", + "path": "z://MP4\\Come & Go - Juice WRLD & Marshmello (Karaoke Instrumental).mp4", + "title": "Come & Go" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Bebe Rexha Featuring Doja Cat", + "title": "Baby, I'm Jealous", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "G-Eazy Featuring blackbear", + "title": "Hate The Way", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 19, + "fuzzy_match_count": 11, + "missing_count": 10, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2020 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Holy", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jose Feliciano", + "playlist_title": "Feliz Navidad", + "found_song": { + "artist": "José Feliciano", + "disabled": false, + "favorite": false, + "guid": "eb804689-a048-9c8c-1b31-7cdcca7d0063", + "path": "z://MP4\\Sing King Karaoke\\José Feliciano - Feliz Navidad (Karaoke Version).mp4", + "title": "Feliz Navidad" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Dean Martin", + "playlist_title": "Let It Snow, Let It Snow, Let It Snow", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e27963d9-e668-815b-a709-6ce8af6d2569", + "path": "z://MP4\\Sing King Karaoke\\Dean Martin - Let It Snow, Let It Snow, Let It Snow.mp4", + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Ronettes", + "playlist_title": "Sleigh Ride", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "b1f8780b-4e8e-2435-e221-e00dbf00997f", + "path": "z://MP4\\Sing King Karaoke\\The Ronettes - Sleigh Ride (Karaoke Version).mp4", + "title": "Sleigh Ride" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "BTS", + "playlist_title": "Life Goes On", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "28f39318-3748-b0cc-8a92-3a947151ce9b", + "path": "z://MP4\\Sing King Karaoke\\BTS - Life Goes On (Karaoke Version).mp4", + "title": "Life Goes On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Andy Williams", + "playlist_title": "Happy Holiday / The Holiday Season", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "38a81819-ddad-ca94-96ea-dd02b7b0b617", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Holiday The Holiday Season - Andy Williams.mp4", + "title": "Happy Holiday The Holiday Season" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "DaBaby Featuring Roddy Ricch", + "playlist_title": "Rockstar", + "found_song": { + "artist": "DaBaby Featuring Roddy Ricch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2812ca6-610d-fe09-b1f0-11cd1777cefa", + "path": "z://MP4\\Sing King Karaoke\\DaBaby Featuring Roddy Ricch - Rockstar.mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Darlene Love", + "playlist_title": "Christmas (Baby Please Come Home)", + "found_song": { + "artist": "Darlene Love", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fc629a4-f944-091f-2cd1-e0c206f843c2", + "path": "z://MP4\\Sing King Karaoke\\Darlene Love - Christmas (Baby Please Come Home.mp4", + "title": "Christmas (Baby Please Come Home)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Before You Go", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "149bc108-473c-3b90-3c15-62bd9bcdea75", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Before You Go (Karaoke Version).mp4", + "title": "Before You Go" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Perry Como", + "playlist_title": "(There's No Place Like) Home For The Holidays", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26628bfb-0d79-a51c-b34e-3e73048c3ed2", + "path": "z://MP4\\KaraokeOnVEVO\\Perry Como - (There's No Place Like) Home For The Holidays.mp4", + "title": "(There's No Place Like) Home For The Holidays" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Midnight Sky", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "4795e4b6-e3ef-9a78-717e-07abea7db336", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Midnight Sky (Karaoke Version).mp4", + "title": "Midnight Sky" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Body", + "found_song": { + "artist": "BTS (feat. Megan Thee Stallion)", + "disabled": false, + "favorite": false, + "guid": "e355e0f4-205f-b3a4-455e-d0e08229c585", + "path": "z://MP4\\TheKARAOKEChannel\\BTS (feat. Megan Thee Stallion) - Butter (Karaoke with Lyrics).mp4", + "title": "Butter" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Dua Lipa Featuring DaBaby", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Kane Brown With Swae Lee & Khalid", + "playlist_title": "Be Like That", + "found_song": { + "artist": "Kane Brown With Swae Lee & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "045c1942-b22b-2ce1-96a7-baccb8074b2c", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown With Swae Lee & Khalid - Be Like That.mp4", + "title": "Be Like That" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Cardi B Featuring Megan Thee Stallion", + "playlist_title": "WAP", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "d6d21966-8166-bfa8-7f99-b2c17e7846db", + "path": "z://MP4\\TheKARAOKEChannel\\Cardi B - WAP feat. Megan Thee Stallion (Karaoke with Lyrics).mp4", + "title": "WAP feat. Megan Thee Stallion" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Gene Autry", + "playlist_title": "Here Comes Santa Claus (Right Down Santa Claus Lane)", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1096ce9b-0757-ec3b-31ef-396137bd03e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane).mp4", + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Shawn Mendes & Justin Bieber", + "playlist_title": "Monster", + "found_song": { + "artist": "Shawn Mendes ft. Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f114e5b-3235-2902-e1da-f0bd657a1dba", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Justin Bieber - Monster.mp4", + "title": "Monster" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Michael Buble", + "playlist_title": "It's Beginning To Look A Lot Like Christmas", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "c16e3761-2b08-1636-8f5f-ca05da1fd445", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - It's Beginning To Look A Lot Like Christmas (Karaoke Version).mp4", + "title": "It's Beginning To Look A Lot Like Christmas" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Gene Autry", + "playlist_title": "Rudolph The Red-Nosed Reindeer", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "671f242a-3007-43d7-63a0-895d5319c63e", + "path": "z://MP4\\KaraFun Karaoke\\Rudolph The Red-Nosed Reindeer - Frank Sinatra Karaoke Version KaraFun.mp4", + "title": "Rudolph The Red-Nosed Reindeer" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "playlist_title": "It's Beginning To Look A Lot Like Christmas", + "found_song": { + "artist": "Perry Como And The Fontane Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c0cc3b6-2a92-42f4-c999-bb681bfdca84", + "path": "z://MP4\\ZoomKaraokeOfficial\\Perry Como And The Fontane Sisters - Its Beginning To Look A Lot Like Christmas -.mp4", + "title": "It's Beginning To Look A Lot Like Christmas -" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Justin Bieber & benny blanco", + "playlist_title": "Lonely", + "found_song": { + "artist": "Justin Bieber & benny blanco", + "disabled": false, + "favorite": false, + "guid": "7277adcd-963b-89ea-7882-f9136bb252d8", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber & benny blanco - Lonely (Karaoke Version).mp4", + "title": "Lonely" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Blake Shelton Featuring Gwen Stefani", + "playlist_title": "Happy Anywhere", + "found_song": { + "artist": "Blake Shelton ft. Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "0443d7b1-daa0-6278-fe68-635a91ef7fcf", + "path": "z://MP4\\Blake Shelton feat. Gwen Stefani - Happy Anywhere (Karaoke Version).mp4", + "title": "Happy Anywhere" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Miley Cyrus Featuring Dua Lipa", + "playlist_title": "Prisoner", + "found_song": { + "artist": "Miley Cyrus ft. Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40b7c2a0-519e-2685-f8cf-d09d842465d8", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus Featuring Dua Lipa - Prisoner.mp4", + "title": "Prisoner" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Bad Bunny", + "playlist_title": "Te Mudaste", + "found_song": { + "artist": "Bad Bunny, Drake", + "disabled": false, + "favorite": false, + "guid": "821719cb-acae-67ef-237e-91699d3771f9", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny, Drake - Mia (Karaoke Version).mp4", + "title": "Mia" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Starting Over", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "332ccbc7-9376-5c1b-25b5-4005889d99ec", + "path": "z://MP4\\KaraFun Karaoke\\I Want Love - Chris Stapleton Karaoke Version KaraFun.mp4", + "title": "I Want Love" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Bad Bunny", + "playlist_title": "Yo Visto Asi", + "found_song": { + "artist": "Tainy ft. Bad Bunny, Julieta Venegas", + "disabled": false, + "favorite": false, + "guid": "c85ce96e-bf4c-494c-6f92-a36a042d6c5c", + "path": "z://MP4\\Sing King Karaoke\\Tainy, Bad Bunny, Julieta Venegas - Lo Siento BB (Karaoke Version).mp4", + "title": "Lo Siento BB" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Bad Bunny", + "playlist_title": "Booker T", + "found_song": { + "artist": "Cardi B ft. Bad Bunny, J Balvin", + "disabled": false, + "favorite": false, + "guid": "a3d2363d-f7b9-8403-3a0f-835c53dac7a8", + "path": "z://MP4\\Sing King Karaoke\\Cardi B, Bad Bunny & J Balvin - I Like It (Karaoke Version).mp4", + "title": "I Like It" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Bad Bunny", + "playlist_title": "El Mundo Es Mio", + "found_song": { + "artist": "Tainy ft. Bad Bunny, Julieta Venegas", + "disabled": false, + "favorite": false, + "guid": "c85ce96e-bf4c-494c-6f92-a36a042d6c5c", + "path": "z://MP4\\Sing King Karaoke\\Tainy, Bad Bunny, Julieta Venegas - Lo Siento BB (Karaoke Version).mp4", + "title": "Lo Siento BB" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Bad Bunny", + "playlist_title": "Hoy Cobre", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Justin Bieber", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brian Setzer", + "disabled": false, + "favorite": false, + "guid": "93d70d8a-edaf-4850-f650-d215cc2af323", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin' Around The Christmas Tree - Brian Setzer.mp4", + "title": "Rockin' Around The Christmas Tree" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Somebody's Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5890bcc-e799-4bd2-8085-f38dc49665a3", + "path": "z://MP4\\sing2karaoke\\Morgan Wallen - Im The Problem Lyrics.mp4", + "title": "Im The Problem" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Still Goin Down", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Bad Bunny", + "playlist_title": "Maldita Pobreza", + "found_song": { + "artist": "Bad Bunny, Drake", + "disabled": false, + "favorite": false, + "guid": "821719cb-acae-67ef-237e-91699d3771f9", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny, Drake - Mia (Karaoke Version).mp4", + "title": "Mia" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Bad Bunny", + "playlist_title": "La Droga", + "found_song": { + "artist": "Bad Bunny, Drake", + "disabled": false, + "favorite": false, + "guid": "821719cb-acae-67ef-237e-91699d3771f9", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny, Drake - Mia (Karaoke Version).mp4", + "title": "Mia" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Favorite Time Of Year", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Hole In The Bottle", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "8b66edc7-5dd4-981b-a5a1-3713a9e71bb5", + "path": "z://MP4\\King of Karaoke\\Kelsea Ballerini - Yeah Boy - King of Karaoke.mp4", + "title": "Yeah Boy" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Karol G", + "playlist_title": "Bichota", + "found_song": { + "artist": "KAROL G, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "917b94ac-4e44-02ae-14b8-0b3294156c88", + "path": "z://MP4\\Sing King Karaoke\\KAROL G, Nicki Minaj - Tusa (Karaoke Version).mp4", + "title": "Tusa" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Dakiti", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bad Bunny & ROSALIA", + "title": "La Noche de Anoche", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Haciendo Que Me Amas", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Bad Bunny", + "title": "Te Deseo Lo Mejor", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 42, + "fuzzy_match_count": 30, + "missing_count": 28, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "2020 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lee Brice", + "playlist_title": "One Of Them Girls", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "9093074c-92a1-1e84-89f8-c5cfef676651", + "path": "z://MP4\\Karaoke Junkies\\Lee Brice - One Of Them Girls (Karaoke).mp4", + "title": "One Of Them Girls" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Silent Night", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "816fafb4-6b5d-b86d-5891-5e464e2e4237", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Silent Night.mp4", + "title": "Silent Night" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Gabby Barrett", + "playlist_title": "The Good Ones", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "3ce86173-0d6c-2f44-807c-81aa423cb659", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - The Good Ones (Karaoke Version).mp4", + "title": "The Good Ones" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Parmalee x Blanco Brown", + "playlist_title": "Just The Way", + "found_song": { + "artist": "Parmalee x Blanco Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8424ea16-230d-3587-8953-cfc47cab7eff", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee x Blanco Brown - Just The Way.mp4", + "title": "Just The Way" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Church", + "playlist_title": "Hell Of A View", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "b7cea25d-bf4b-ca70-06b2-47b75a0e5d43", + "path": "z://MP4\\TheKARAOKEChannel\\Eric Church - Hell Of A View (Karaoke with Lyrics).mp4", + "title": "Hell Of A View" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Gone", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tenille Arts", + "playlist_title": "Somebody Like That", + "found_song": { + "artist": "Tenille Arts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b203f539-0cbd-4f9f-9d94-4e3cc03b8add", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tenille Arts - Somebody Like That.mp4", + "title": "Somebody Like That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Blake Shelton Featuring Gwen Stefani", + "playlist_title": "Happy Anywhere", + "found_song": { + "artist": "Blake Shelton ft. Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "0443d7b1-daa0-6278-fe68-635a91ef7fcf", + "path": "z://MP4\\Blake Shelton feat. Gwen Stefani - Happy Anywhere (Karaoke Version).mp4", + "title": "Happy Anywhere" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Starting Over", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "332ccbc7-9376-5c1b-25b5-4005889d99ec", + "path": "z://MP4\\KaraFun Karaoke\\I Want Love - Chris Stapleton Karaoke Version KaraFun.mp4", + "title": "I Want Love" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Somebody's Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5890bcc-e799-4bd2-8085-f38dc49665a3", + "path": "z://MP4\\sing2karaoke\\Morgan Wallen - Im The Problem Lyrics.mp4", + "title": "Im The Problem" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Still Goin Down", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Favorite Time Of Year", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Hole In The Bottle", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "8b66edc7-5dd4-981b-a5a1-3713a9e71bb5", + "path": "z://MP4\\King of Karaoke\\Kelsea Ballerini - Yeah Boy - King of Karaoke.mp4", + "title": "Yeah Boy" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Happy Does", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "3421bef6-47ba-5d9e-c623-3c42ef761213", + "path": "z://MP4\\KtvEntertainment\\Kenny Chesney - Noise Karaoke Lyrics.mp4", + "title": "Noise" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Thomas Rhett", + "playlist_title": "What's Your Country Song", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "2d75244f-ea27-77db-117c-5278300b09aa", + "path": "z://MP4\\King of Karaoke\\Thomas Rhett - When I Was Your Man - King of Karaoke.mp4", + "title": "When I Was Your Man" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Long Live", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "bf73f481-9843-2b7f-0e7d-6bb32f369c54", + "path": "z://MP4\\King of Karaoke\\Florida Georgia Line - HOLY - King of Karaoke.mp4", + "title": "HOLY" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Luke Bryan", + "playlist_title": "Down To One", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Dan + Shay", + "playlist_title": "Take Me Home For Christmas", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79ac7b14-6c5b-51d8-b2c0-4167170b196d", + "path": "z://MP4\\KaraokeOnVEVO\\Eagles - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Livin' The Dream", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Rascal Flatts", + "playlist_title": "How They Remember You", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Brett Young", + "playlist_title": "Lady", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "6e81468e-0657-1c77-7c3d-dd22b4edc893", + "path": "z://MP4\\Karaoke Studio\\Brett Young - Mercy (Karaoke with Lyrics).mp4", + "title": "Mercy" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Little Big Town", + "playlist_title": "Wine, Beer, Whiskey", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "c18222b1-0b22-aef7-6aa1-d57ce46fe4ff", + "path": "z://MP4\\Sing King Karaoke\\Little Big Town - Better Man (Karaoke Version).mp4", + "title": "Better Man" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Settling Down", + "found_song": { + "artist": "Adam Lambert", + "disabled": false, + "favorite": false, + "guid": "e742c7d4-f547-23a0-0805-f869854f9221", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Feeling Good - Adam Lambert.mp4", + "title": "Feeling Good" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Brothers Osborne", + "playlist_title": "All Night", + "found_song": { + "artist": "Dierks Bentley ft. Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "264303d2-1402-b38f-6ab7-84398641c87f", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley ft. Brothers Osborne - Burning Man (Karaoke).mp4", + "title": "Burning Man" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Maren Morris", + "playlist_title": "To Hell & Back", + "found_song": { + "artist": "Nevada ft. Mark Morrison & Fetty Wap", + "disabled": false, + "favorite": false, + "guid": "d3391e3f-9200-c593-91df-890c4f20cda1", + "path": "z://MP4\\Karaoke Sing Sing\\Nevada feat Mark Morrison & Fetty Wap - The Mack (Karaoke Version).mp4", + "title": "The Mack" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Taylor Swift", + "playlist_title": "Betty", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "228da555-a7cf-f280-79ab-2ce04fb830bd", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Betty.mp4", + "title": "Betty" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Nelly & Florida Georgia Line", + "playlist_title": "Lil Bit", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Parker McCollum", + "title": "Pretty Heart", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "title": "One Beer", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Darius Rucker", + "title": "Beers And Sunshine", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Carrie Underwood & John Legend", + "title": "Hallelujah", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dustin Lynch", + "title": "Momma's House", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jordan Davis", + "title": "Almost Maybes", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Sam Hunt", + "title": "Breaking Up Was Easy In The 90's", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Garth Brooks & Trisha Yearwood", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Nobody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 20, + "missing_count": 14, + "needs_manual_review": 20 + } + }, + { + "playlist_title": "2019 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Hey Look Ma, I Made It", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f71bb7d3-ed74-52e6-82d2-2f0d8148370b", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Hey Look Ma, I Made It (Karaoke Version).mp4", + "title": "Hey Look Ma, I Made It" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Orphans", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "3d0f477b-0c30-adac-57e8-155937c027ec", + "path": "z://MP4\\Coldplay - Orphans Karaoke Instrumetal Lyrics Cover Original Key A.mp4", + "title": "Orphans" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "twenty one pilots", + "playlist_title": "The Hype", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "29c6e3f9-afaa-8d0b-1023-1cd65cdd27e5", + "path": "z://MP4\\Twenty One Pilots - The Hype (Classic Karaoke).mp4", + "title": "The Hype" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Under The Graveyard", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "guid": "fc9a0089-13bc-2bf4-f893-afac80913b0d", + "path": "z://MP4\\Under The Graveyard - Ozzy Osbourne - Instrumental Karaoke by SoMusique.mp4", + "title": "Under The Graveyard" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dermot Kennedy", + "playlist_title": "Outnumbered", + "found_song": { + "artist": "Dermot Kennedy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa34ecd5-df30-51c9-ba84-6d8af7454d6a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dermot Kennedy - Outnumbered.mp4", + "title": "Outnumbered" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "girl in red", + "playlist_title": "we fell in love in october", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "guid": "efdfd418-5e97-beba-16d8-2d2d3746723e", + "path": "z://MP4\\Sing King Karaoke\\girl in red - we fell in love in october (Karaoke Version).mp4", + "title": "we fell in love in october" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Ludens", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc59546e-f293-7d44-c161-456b04efd79c", + "path": "z://MP4\\KaraokeOnVEVO\\Bring Me The Horizon - Ludens.mp4", + "title": "Ludens" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Rex Orange County", + "playlist_title": "Pluto Projector", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b75fe53e-6cd0-9a36-fe9e-cfe3ec389c50", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Pluto Projector.mp4", + "title": "Pluto Projector" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Beach Bunny", + "playlist_title": "Prom Queen", + "found_song": { + "artist": "Beach Bunny", + "disabled": false, + "favorite": false, + "guid": "a8c7f0ad-132d-df1a-b5eb-e58371db9438", + "path": "z://MP4\\Sing King Karaoke\\Beach Bunny - Prom Queen (Karaoke Version).mp4", + "title": "Prom Queen" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "YUNGBLUD", + "playlist_title": "Parents", + "found_song": { + "artist": "YUNGBLUD", + "disabled": false, + "favorite": false, + "guid": "aba66e72-46ca-aad5-e7ab-879f3509f954", + "path": "z://MP4\\Sing King Karaoke\\YUNGBLUD - Parents (Karaoke Version).mp4", + "title": "Parents" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "playlist_title": "I Think I'm OKAY", + "found_song": { + "artist": "Machine Gun Kelly ft. Yungblud, Travis Barker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "133a5c46-356e-2154-f8f5-657194c83e73", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly X YUNGBLUD X Travis Barker - I Think Im OKAY.mp4", + "title": "I Think I'm OKAY" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Meg Myers", + "playlist_title": "Running Up That Hill", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "guid": "6c75d46d-966e-b68c-0f03-e4f260e19b43", + "path": "z://MP4\\TheKARAOKEChannel\\Kate Bush - Running Up That Hill (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Running Up That Hill" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Weezer", + "playlist_title": "The End Of The Game", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "06c83cf6-f390-a3c6-3c40-c9bf4a73af6a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Name Of The Game (Karaoke Version).mp4", + "title": "The Name Of The Game" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Social Cues", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Rex Orange County", + "playlist_title": "10/10", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "guid": "b7587128-112e-a90e-2044-39c84e425f27", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Best Friend (Karaoke Version).mp4", + "title": "Best Friend" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Bad Wolves", + "playlist_title": "Killing Me Slowly", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "7b2ce665-1faa-5b00-26a6-fecb58d7a568", + "path": "z://MP4\\KaraFun Karaoke\\Killing Me Softly - Luther Vandross Karaoke Version KaraFun.mp4", + "title": "Killing Me Softly" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The Black Keys", + "playlist_title": "Go", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Neon Trees", + "playlist_title": "Used To Like", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "09bd9eeb-2958-a360-b1c9-d36f4c7b5a9a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Everybody Talks (Karaoke Version).mp4", + "title": "Everybody Talks" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Blink-182", + "playlist_title": "I Really Wish I Hated You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd9dc6b6-cb8b-6a8c-891b-fefc9a3b7c68", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - i wish i hated you.mp4", + "title": "i wish i hated you" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Tame Impala", + "playlist_title": "It Might Be Time", + "found_song": { + "artist": "Tame Impala", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c574acd0-b76d-a13e-a94c-bfc2aef68cbe", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tame Impala - Let It Happen.mp4", + "title": "Let It Happen" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Papa Roach", + "playlist_title": "Come Around", + "found_song": { + "artist": "Papa Roach", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a17cf359-6800-2402-e6ea-c6acce8f7286", + "path": "z://MP4\\KaraokeOnVEVO\\Papa Roach - Scars.mp4", + "title": "Scars" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Skillet", + "playlist_title": "Legendary", + "found_song": { + "artist": "Skillet", + "disabled": false, + "favorite": false, + "guid": "b24a09f7-446c-5979-fd6f-a0219668495b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hero - Skillet.mp4", + "title": "Hero" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "The Lumineers", + "playlist_title": "Life In The City", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "AWOLNATION", + "playlist_title": "The Best", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "I Prevail", + "playlist_title": "Hurricane", + "found_song": { + "artist": "Hamilton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ddacd28-bc43-abe6-b35c-4db6613d8314", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hamilton The Musical - Hurricane.mp4", + "title": "Hurricane" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Coldplay", + "playlist_title": "Everyday Life", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "c0fd55aa-59f1-ccba-69bc-7a319562be9b", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Everglow SING SING KARAOKE (2).mp4", + "title": "Everglow" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "X Ambassadors", + "playlist_title": "Hold You Down", + "found_song": { + "artist": "DJ Khaled ft. Chris Brown", + "disabled": false, + "favorite": false, + "guid": "ba025a97-88cb-8696-21dc-b88c68f85bcc", + "path": "z://MP4\\singsongsmusic\\Hold You Down - Karaoke HD (In the style of DJ Khaled & Chris Brown).mp4", + "title": "Hold You Down" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Wars", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Marshmello, YUNGBLUD & blackbear", + "title": "Tongue Tied", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Highly Suspect", + "title": "16", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Green Day", + "title": "Father Of All...", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "title": "Outlaws & Outsiders", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Tool", + "title": "Fear Inoculum", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "White Reaper", + "title": "Might Be Right", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Fall Out Boy Featuring Wyclef Jean", + "title": "Dear Future Self (Hands Up)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Local Natives", + "title": "When Am I Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "AJR", + "title": "Dear Winter", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Badflower", + "title": "The Jester", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YUNGBLUD Featuring Dan Reynolds", + "title": "Original Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Mumford & Sons", + "title": "Blind Leading The Blind", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dayglow", + "title": "Can I Call You Tonight?", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Dinosaur Pile-Up", + "title": "Back Foot", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "ONE OK ROCK", + "title": "Stand Out Fit In", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "guardin", + "title": "i think you're really cool", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Unlikely Candidates", + "title": "Novocaine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Falling In Reverse", + "title": "Popular Monster", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Cold War Kids", + "title": "Complainer", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Beck", + "title": "Uneventful Days", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "HAIM", + "title": "Now I'm In It", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 18, + "missing_count": 21, + "needs_manual_review": 18 + } + }, + { + "playlist_title": "2019 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Chris Brown Featuring Gunna", + "playlist_title": "Heat", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Drake Featuring Rick Ross", + "playlist_title": "Money In The Grave", + "found_song": { + "artist": "Drake Featuring Rick Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "391ed033-b5b9-920b-5986-de40806b09e8", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rick Ross - Money In The Grave.mp4", + "title": "Money In The Grave" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Lil Baby", + "playlist_title": "Woah", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "guid": "3ab48a80-890d-786d-4793-a799bc80529f", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Baby - Global (Karaoke).mp4", + "title": "Global" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "DaBaby", + "playlist_title": "BOP", + "found_song": { + "artist": "DaBaby", + "disabled": false, + "favorite": false, + "guid": "714654e3-e342-23a9-d598-e92b38e5dacb", + "path": "z://MP4\\Sing King Karaoke\\DaBaby - Suge (Karaoke Version).mp4", + "title": "Suge" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Mustard Featuring Roddy Ricch", + "playlist_title": "Ballin'", + "found_song": { + "artist": "Mustard ft. Roddy Ricch", + "disabled": false, + "favorite": false, + "guid": "8648e290-457c-d564-7dea-03900a6b05f1", + "path": "z://MP4\\Sing King Karaoke\\Mustard with Roddy Ricch - Ballin' (Karaoke Version).mp4", + "title": "Ballin'" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Young Thug Featuring Gunna", + "playlist_title": "Hot", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Juice WRLD & YoungBoy Never Broke Again", + "playlist_title": "Bandit", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "NF", + "playlist_title": "Time", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Doja Cat & Tyga", + "playlist_title": "Juicy", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "guid": "a8be86c8-c377-4090-a67d-138766c7b3e9", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Juicy (Karaoke Version).mp4", + "title": "Juicy" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Kanye West", + "playlist_title": "Follow God", + "found_song": { + "artist": "Kanye West & Theophilus London & Allan Kingdom & Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "445cd8f1-8ab5-713d-3762-d5bc7b4e1156", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF350\\Kanye West & Theophilus London & Allan Kingdom & Paul McCartney - All Day - SF350 - 13.mp3", + "title": "All Day" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "NLE Choppa", + "playlist_title": "Camelot", + "found_song": { + "artist": "NLE Choppa ft. Kodak Black, Jimin of BTS, JVKE, Muni Long", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43f39e92-5ef4-7d5f-ae9d-7718aef79962", + "path": "z://MP4\\Sing King Karaoke\\NLE Choppa, Kodak Black, Jimin of BTS, JVKE, & Muni Long - Angel Pt 1.mp4", + "title": "Angel Pt. 1" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "DaBaby", + "playlist_title": "VIBEZ", + "found_song": { + "artist": "ZAYN", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fd5756c-4ed0-919b-f5f7-3288e72e1d8e", + "path": "z://MP4\\Sing King Karaoke\\ZAYN - Vibez.mp4", + "title": "Vibez" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Make No Sense", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "playlist_title": "Hot Girl Summer", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "guid": "31f7c4c8-dbb4-8663-a623-4a97658fd48d", + "path": "z://MP4\\Sing King Karaoke\\Megan Thee Stallion - Hot Girl Summer (Karaoke Version) ft. Nicki Minaj, Ty Dolla $ign.mp4", + "title": "Hot Girl Summer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Lonely Child", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Khalid", + "playlist_title": "Up All Night", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88bc03ce-3de8-81f6-c269-3efaf5d49f0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Take That - Up All Night.mp4", + "title": "Up All Night" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Self Control", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Hot Now", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Alicia Keys Featuring Miguel", + "playlist_title": "Show Me Love", + "found_song": { + "artist": "Alicia Keys ft. Miguel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "089ab6d7-dc3f-7dd3-6b30-135bd35cf0e4", + "path": "z://MP4\\KaraokeOnVEVO\\Alicia Keys Featuring Miguel - Show Me Love.mp4", + "title": "Show Me Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Summer Walker & Usher", + "title": "Come Thru", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "title": "The Trade", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Russ & BIA", + "title": "BEST ON EARTH", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 17, + "missing_count": 19, + "needs_manual_review": 17 + } + }, + { + "playlist_title": "2019 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Ed Sheeran Featuring Khalid", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Ed Sheeran Featuring Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f04046c8-236e-bf47-cd18-9d9fd7f4a75e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran Featuring Khalid - Beautiful People.mp4", + "title": "Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Saweetie", + "playlist_title": "My Type", + "found_song": { + "artist": "Saweetie", + "disabled": false, + "favorite": false, + "guid": "b0f6a5a4-ab18-4dcf-cd2c-872bf721165e", + "path": "z://MP4\\Sing King Karaoke\\Saweetie - My Type (Karaoke Version).mp4", + "title": "My Type" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Kesha Featuring Big Freedia", + "playlist_title": "Raising Hell", + "found_song": { + "artist": "Kesha Featuring Big Freedia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14141206-249a-c144-8309-8e0f501205bb", + "path": "z://MP4\\KaraokeOnVEVO\\Kesha Featuring Big Freedia - Raising Hell.mp4", + "title": "Raising Hell" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "playlist_title": "Lonely", + "found_song": { + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c70e1c4-d41d-7ae3-3996-6ab739ab21c2", + "path": "z://MP4\\KaraokeOnVEVO\\Diplo Presents Thomas Wesley With Jonas Brothers - Lonely.mp4", + "title": "Lonely" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Teeth", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "683b6d6c-0c1c-0f8d-b8ee-e7eba6431766", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Teeth (Karaoke Version).mp4", + "title": "Teeth" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Charlie Puth", + "playlist_title": "Mother", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efeb5c64-4dc6-9072-fb3f-de5951b007ca", + "path": "z://MP4\\KaraokeOnVEVO\\Charlie Puth - Mother.mp4", + "title": "Mother" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Public", + "playlist_title": "Make You Mine", + "found_song": { + "artist": "PUBLIC", + "disabled": false, + "favorite": false, + "guid": "e5a25517-895b-c6e2-ebb5-c3e8e92a040e", + "path": "z://MP4\\Sing King Karaoke\\PUBLIC - Make You Mine (Karaoke Version).mp4", + "title": "Make You Mine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "Senorita", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b2bf7ce-bc35-6223-ac58-cbf97a9701a5", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - Senorita.mp4", + "title": "Senorita" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "NF", + "playlist_title": "Time", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Dan + Shay & Justin Bieber", + "playlist_title": "10,000 Hours", + "found_song": { + "artist": "Dan + Shay, Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "0503f7bf-0412-926b-5dcf-26f94dbeafb7", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay, Justin Bieber - 10,000 Hours (Karaoke Version).mp4", + "title": "10,000 Hours" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Marshmello & Kane Brown", + "playlist_title": "One Thing Right", + "found_song": { + "artist": "Marshmello ft. Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ef29014a-bfff-b83b-0f24-dacc33e769c2", + "path": "z://MP4\\Sing King Karaoke\\Marshmello & Kane Brown - One Thing Right (Karaoke Version).mp4", + "title": "One Thing Right" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Why Don't We", + "playlist_title": "What Am I", + "found_song": { + "artist": "Jonas Blue, Why Don't We", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63cf16ef-d508-db13-c874-46404820b157", + "path": "z://MP4\\sing2karaoke\\Jonas Blue, Why Don't We - Don't Wake Me Up.mp4", + "title": "Don't Wake Me Up" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Lauv Featuring Anne-Marie", + "playlist_title": "fuck, i'm lonely", + "found_song": { + "artist": "Lauv, Anne Marie", + "disabled": false, + "favorite": false, + "guid": "9be30b9a-7051-5794-7353-877b74a5c78e", + "path": "z://MP4\\Sing King Karaoke\\Lauv, Anne Marie - f ck, i'm lonely (Karaoke Version).mp4", + "title": "f ck, i'm lonely" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 29, + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "title": "Writing On The Wall", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "AJ Mitchell & Ava Max", + "title": "Slow Dance", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BTS Featuring Lauv", + "title": "Make It Right", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Loud Luxury And Bryce Vine", + "title": "I'm Not Alright", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd & Kehlani", + "title": "Good Thing", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 8, + "missing_count": 6, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2019 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "everything i wanted", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "292566a9-43fb-21d8-6cf8-920eb8110f17", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - everything i wanted (Karaoke Version).mp4", + "title": "everything i wanted" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Bad Guy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "4becb299-aac1-7a98-da4f-7421b3fa185d", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - bad guy (Karaoke Version).mp4", + "title": "bad guy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Ed Sheeran Featuring Khalid", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Ed Sheeran Featuring Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f04046c8-236e-bf47-cd18-9d9fd7f4a75e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran Featuring Khalid - Beautiful People.mp4", + "title": "Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Lil Nas X Featuring Billy Ray Cyrus", + "playlist_title": "Old Town Road", + "found_song": { + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39cfb3d1-1320-3e1c-a48a-a4c6d2207294", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Nas X Featuring Billy Ray Cyrus - Old Town Road.mp4", + "title": "Old Town Road" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Khalid", + "playlist_title": "Talk", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "61590d8e-62d9-65f9-b453-874736ef12b2", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Talk (Karaoke Version).mp4", + "title": "Talk" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Chris Brown Featuring Gunna", + "playlist_title": "Heat", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Sucker", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "d53e3497-8149-1948-7aad-f320cfeb5f5b", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Sucker (Karaoke Version).mp4", + "title": "Sucker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "DaBaby", + "playlist_title": "Suge", + "found_song": { + "artist": "DaBaby", + "disabled": false, + "favorite": false, + "guid": "714654e3-e342-23a9-d598-e92b38e5dacb", + "path": "z://MP4\\Sing King Karaoke\\DaBaby - Suge (Karaoke Version).mp4", + "title": "Suge" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Drake Featuring Rick Ross", + "playlist_title": "Money In The Grave", + "found_song": { + "artist": "Drake Featuring Rick Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "391ed033-b5b9-920b-5986-de40806b09e8", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rick Ross - Money In The Grave.mp4", + "title": "Money In The Grave" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Harry Styles", + "playlist_title": "Lights Up", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "985f9eaa-81c7-2932-fbf1-fcd2222c6175", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Lights Up (Karaoke Version).mp4", + "title": "Lights Up" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Ant Saunders", + "playlist_title": "Yellow Hearts", + "found_song": { + "artist": "Ant Saunders", + "disabled": false, + "favorite": false, + "guid": "0df1cce5-d558-ba99-4977-e78438e3f911", + "path": "z://MP4\\Sing King Karaoke\\Ant Saunders - Yellow Hearts (Karaoke Version).mp4", + "title": "Yellow Hearts" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "Senorita", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b2bf7ce-bc35-6223-ac58-cbf97a9701a5", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - Senorita.mp4", + "title": "Senorita" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Dan + Shay & Justin Bieber", + "playlist_title": "10,000 Hours", + "found_song": { + "artist": "Dan + Shay, Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "0503f7bf-0412-926b-5dcf-26f94dbeafb7", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay, Justin Bieber - 10,000 Hours (Karaoke Version).mp4", + "title": "10,000 Hours" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lil Baby", + "playlist_title": "Woah", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "guid": "3ab48a80-890d-786d-4793-a799bc80529f", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Baby - Global (Karaoke).mp4", + "title": "Global" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "DaBaby", + "playlist_title": "BOP", + "found_song": { + "artist": "DaBaby", + "disabled": false, + "favorite": false, + "guid": "714654e3-e342-23a9-d598-e92b38e5dacb", + "path": "z://MP4\\Sing King Karaoke\\DaBaby - Suge (Karaoke Version).mp4", + "title": "Suge" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Mustard Featuring Roddy Ricch", + "playlist_title": "Ballin'", + "found_song": { + "artist": "Mustard ft. Roddy Ricch", + "disabled": false, + "favorite": false, + "guid": "8648e290-457c-d564-7dea-03900a6b05f1", + "path": "z://MP4\\Sing King Karaoke\\Mustard with Roddy Ricch - Ballin' (Karaoke Version).mp4", + "title": "Ballin'" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Young Thug Featuring Gunna", + "playlist_title": "Hot", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Juice WRLD & YoungBoy Never Broke Again", + "playlist_title": "Bandit", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Ed Sheeran & Justin Bieber", + "playlist_title": "I Don't Care", + "found_song": { + "artist": "Ed Sheeran ft. Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "c2b50713-861d-5db4-991e-6ee99f309668", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran & Justin Bieber - I Don't Care (Karaoke Version).mp4", + "title": "I Don't Care" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "NF", + "playlist_title": "Time", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Marshmello & Kane Brown", + "playlist_title": "One Thing Right", + "found_song": { + "artist": "Marshmello ft. Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ef29014a-bfff-b83b-0f24-dacc33e769c2", + "path": "z://MP4\\Sing King Karaoke\\Marshmello & Kane Brown - One Thing Right (Karaoke Version).mp4", + "title": "One Thing Right" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Sam Smith & Normani", + "playlist_title": "Dancing With A Stranger", + "found_song": { + "artist": "Sam Smith ft. Normani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1569241d-064c-e35f-2049-1231bdcce495", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith & Normani - Dancing With A Stranger.mp4", + "title": "Dancing With A Stranger" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Doja Cat & Tyga", + "playlist_title": "Juicy", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "guid": "a8be86c8-c377-4090-a67d-138766c7b3e9", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Juicy (Karaoke Version).mp4", + "title": "Juicy" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Kanye West", + "playlist_title": "Follow God", + "found_song": { + "artist": "Kanye West & Theophilus London & Allan Kingdom & Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "445cd8f1-8ab5-713d-3762-d5bc7b4e1156", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF350\\Kanye West & Theophilus London & Allan Kingdom & Paul McCartney - All Day - SF350 - 13.mp3", + "title": "All Day" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "NLE Choppa", + "playlist_title": "Camelot", + "found_song": { + "artist": "NLE Choppa ft. Kodak Black, Jimin of BTS, JVKE, Muni Long", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43f39e92-5ef4-7d5f-ae9d-7718aef79962", + "path": "z://MP4\\Sing King Karaoke\\NLE Choppa, Kodak Black, Jimin of BTS, JVKE, & Muni Long - Angel Pt 1.mp4", + "title": "Angel Pt. 1" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "DaBaby", + "playlist_title": "VIBEZ", + "found_song": { + "artist": "ZAYN", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fd5756c-4ed0-919b-f5f7-3288e72e1d8e", + "path": "z://MP4\\Sing King Karaoke\\ZAYN - Vibez.mp4", + "title": "Vibez" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Ellie Goulding & Juice WRLD", + "playlist_title": "Hate Me", + "found_song": { + "artist": "Ellie Goulding & Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53fca313-4998-a1d6-0a82-b3d20c587e0f", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding & Juice WRLD - Hate Me.mp4", + "title": "Hate Me" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Dustin Lynch", + "playlist_title": "Ridin' Roads", + "found_song": { + "artist": "Dustin Lynch", + "disabled": false, + "favorite": false, + "guid": "1459b59b-3402-5a8d-0e9e-8d895e100b44", + "path": "z://MP4\\KtvEntertainment\\Dustin Lynch - Seein Red Karaoke Lyrics.mp4", + "title": "Seein Red" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Every Little Thing", + "found_song": { + "artist": "Carlene Carter", + "disabled": false, + "favorite": false, + "guid": "25efc4b3-d817-dc56-4abf-20ddc62c5488", + "path": "z://MP4\\Let's Sing Karaoke\\Carter, Carlene - Every Little Thing (Karaoke & Lyrics).mp4", + "title": "Every Little Thing" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Tip Of My Tongue", + "found_song": { + "artist": "Johnny Diesel", + "disabled": false, + "favorite": false, + "guid": "b91683f8-4c8f-8700-0c9f-5901d409acef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tip Of My Tongue - Johnny Diesel.mp4", + "title": "Tip Of My Tongue" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Make No Sense", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "playlist_title": "Hot Girl Summer", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "guid": "31f7c4c8-dbb4-8663-a623-4a97658fd48d", + "path": "z://MP4\\Sing King Karaoke\\Megan Thee Stallion - Hot Girl Summer (Karaoke Version) ft. Nicki Minaj, Ty Dolla $ign.mp4", + "title": "Hot Girl Summer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Chris Lane", + "playlist_title": "I Don't Know About You", + "found_song": { + "artist": "HRVY", + "disabled": false, + "favorite": false, + "guid": "30939ba5-0269-6fac-c3a5-8c1d79440c09", + "path": "z://MP4\\Sing King Karaoke\\HRVY – I Don't Think About You (Karaoke Version).mp4", + "title": "I Don't Think About You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Lonely Child", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Chris Janson", + "playlist_title": "Good Vibes", + "found_song": { + "artist": "Chris Janson", + "disabled": false, + "favorite": false, + "guid": "2134a9bb-a841-b59f-1ad4-dedf3fd1f19a", + "path": "z://MP4\\King of Karaoke\\Chris Janson - Holdin' Her - King of Karaoke.mp4", + "title": "Holdin' Her" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Khalid", + "playlist_title": "Up All Night", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88bc03ce-3de8-81f6-c269-3efaf5d49f0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Take That - Up All Night.mp4", + "title": "Up All Night" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Y2K & bbno$", + "playlist_title": "Lalala", + "found_song": { + "artist": "Y2K ft. bbno$", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74557c5b-4471-97c6-5fe2-52cecaf5a3d0", + "path": "z://MP4\\Sing King Karaoke\\Y2K & bbno$ - Lalala.mp4", + "title": "Lalala" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Karol G & Nicki Minaj", + "playlist_title": "Tusa", + "found_song": { + "artist": "KAROL G, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "917b94ac-4e44-02ae-14b8-0b3294156c88", + "path": "z://MP4\\Sing King Karaoke\\KAROL G, Nicki Minaj - Tusa (Karaoke Version).mp4", + "title": "Tusa" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Self Control", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Kane Brown", + "playlist_title": "Homesick", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Blake Shelton Featuring Trace Adkins", + "playlist_title": "Hell Right", + "found_song": { + "artist": "Blake Shelton Featuring Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5215450-6791-f138-5a51-89122806acaa", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Trace Adkins - Hillbilly Bone.mp4", + "title": "Hillbilly Bone" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 29, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "J Balvin & Bad Bunny", + "title": "La Cancion", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Black Eyed Peas X J Balvin", + "title": "RITMO (Bad Boys For Life)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 32, + "missing_count": 23, + "needs_manual_review": 32 + } + }, + { + "playlist_title": "2019 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Blanco Brown", + "playlist_title": "The Git Up", + "found_song": { + "artist": "Blanco Brown", + "disabled": false, + "favorite": false, + "guid": "c412ee98-7fce-4bf3-e94d-f066eedddf08", + "path": "z://MP4\\Sing King Karaoke\\Blanco Brown - The Git Up (Karaoke Version).mp4", + "title": "The Git Up" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Luke Bryan", + "playlist_title": "What She Wants Tonight", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6e4e74c-5cba-40bd-82ef-30cc07110726", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - What She Wants Tonight.mp4", + "title": "What She Wants Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ingrid Andress", + "playlist_title": "More Hearts Than Mine", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "0802e2e0-0b78-6366-3bbb-ba7bcbc7a108", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress - More Hearts Than Mine (Karaoke Version).mp4", + "title": "More Hearts Than Mine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Chasin' You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f567e4ab-5b8a-6672-d383-d51110d81dc3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Chasin' You (Karaoke Version).mp4", + "title": "Chasin' You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Combs", + "playlist_title": "Refrigerator Door", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "9259e424-7187-5103-bbf2-3266e81eefe9", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Refrigerator Door (Karaoke).mp4", + "title": "Refrigerator Door" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Kane Brown", + "playlist_title": "For My Daughter", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70bf87f2-3f65-3cf2-633f-5eb6d000d6d3", + "path": "z://MP4\\KaraokeOnVEVO\\Kane Brown - For My Daughter.mp4", + "title": "For My Daughter" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Luke Combs", + "playlist_title": "Moon Over Mexico", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "eb496a75-5c45-4d6f-8243-c132f83da176", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Moon Over Mexico (Karaoke).mp4", + "title": "Moon Over Mexico" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Luke Combs", + "playlist_title": "Nothing Like You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff33931d-ffad-dd43-9cf5-ec61b3191c62", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Nothing Like You (Karaoke).mp4", + "title": "Nothing Like You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Luke Combs", + "playlist_title": "Lovin' On You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8bf6b10f-0942-4dfe-6e38-242d841d5012", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Lovin' On You (Karaoke).mp4", + "title": "Lovin' On You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Caylee Hammack", + "playlist_title": "Family Tree", + "found_song": { + "artist": "Caylee Hammack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9400c16d-7cea-7de1-2b14-dc9476d76faa", + "path": "z://MP4\\KaraokeOnVEVO\\Caylee Hammack - Family Tree.mp4", + "title": "Family Tree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Dan + Shay & Justin Bieber", + "playlist_title": "10,000 Hours", + "found_song": { + "artist": "Dan + Shay, Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "0503f7bf-0412-926b-5dcf-26f94dbeafb7", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay, Justin Bieber - 10,000 Hours (Karaoke Version).mp4", + "title": "10,000 Hours" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Marshmello & Kane Brown", + "playlist_title": "One Thing Right", + "found_song": { + "artist": "Marshmello ft. Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ef29014a-bfff-b83b-0f24-dacc33e769c2", + "path": "z://MP4\\Sing King Karaoke\\Marshmello & Kane Brown - One Thing Right (Karaoke Version).mp4", + "title": "One Thing Right" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Dustin Lynch", + "playlist_title": "Ridin' Roads", + "found_song": { + "artist": "Dustin Lynch", + "disabled": false, + "favorite": false, + "guid": "1459b59b-3402-5a8d-0e9e-8d895e100b44", + "path": "z://MP4\\KtvEntertainment\\Dustin Lynch - Seein Red Karaoke Lyrics.mp4", + "title": "Seein Red" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Tip Of My Tongue", + "found_song": { + "artist": "Johnny Diesel", + "disabled": false, + "favorite": false, + "guid": "b91683f8-4c8f-8700-0c9f-5901d409acef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tip Of My Tongue - Johnny Diesel.mp4", + "title": "Tip Of My Tongue" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Kane Brown", + "playlist_title": "Homesick", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Blake Shelton Featuring Trace Adkins", + "playlist_title": "Hell Right", + "found_song": { + "artist": "Blake Shelton Featuring Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5215450-6791-f138-5a51-89122806acaa", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Trace Adkins - Hillbilly Bone.mp4", + "title": "Hillbilly Bone" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Brett Young", + "playlist_title": "Catch", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "6e81468e-0657-1c77-7c3d-dd22b4edc893", + "path": "z://MP4\\Karaoke Studio\\Brett Young - Mercy (Karaoke with Lyrics).mp4", + "title": "Mercy" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Jake Owen", + "playlist_title": "Homemade", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "9618a6cb-eb49-1746-8c8d-3d45a5746200", + "path": "z://MP4\\KtvEntertainment\\Jake Owen - Real Life Karaoke Lyrics.mp4", + "title": "Real Life" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Luke Combs & Brooks & Dunn", + "playlist_title": "1, 2 Many", + "found_song": { + "artist": "Luke Combs ft. Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c06b9d77-4b19-7401-4660-efb101dd8fe9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luke Combs feat Brooks & Dunn - 1, 2 Many (Without Backing Vocals).mp4", + "title": "1, 2 Many" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Carly Pearce & Lee Brice", + "playlist_title": "I Hope You're Happy Now", + "found_song": { + "artist": "Carly Pearce & Lee Brice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d205fc6-1781-bb83-3f00-3734ec6339ad", + "path": "z://MP4\\Sing King Karaoke\\Carly Pearce & Lee Brice - I Hope Youre Happy Now.mp4", + "title": "I Hope You're Happy Now" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Luke Combs", + "playlist_title": "What You See Is What You Get", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc7bc808-145c-72eb-4383-31d183bde2f3", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - What You See Is What You Get.mp4", + "title": "What You See Is What You Get" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Drinking Alone", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "4e5049d7-3a89-99dd-926b-c23917d41d7f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Praying For Time - Carrie Underwood.mp4", + "title": "Praying For Time" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Luke Combs", + "playlist_title": "Reasons", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "c8e3cf9d-6e24-50ff-ae44-1a97c05df0dd", + "path": "z://MP4\\King of Karaoke\\Luke Combs - Hurricane - King of Karaoke.mp4", + "title": "Hurricane" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Luke Combs", + "playlist_title": "All Over Again", + "found_song": { + "artist": "Ed Sheeran ft. Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3615c272-4c93-c577-edd2-35653cfb2862", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ed Sheeran feat Luke Combs - Life Goes On (Live Version).mp4", + "title": "Life Goes On" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Michael Ray", + "playlist_title": "Her World Or Mine", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "c703bcb4-a5e7-e94e-845e-151d457a61da", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Girl Is Mine - Michael Jackson.mp4", + "title": "The Girl Is Mine" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Chris Young", + "playlist_title": "Drowning", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "a6b905f0-d71b-5784-fd75-c719b04b5eec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tomorrow - Chris Young.mp4", + "title": "Tomorrow" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Eric Church", + "playlist_title": "Monsters", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c0b6326-f05e-88d1-3c0d-bc5dee871bf6", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - The Outsiders.mp4", + "title": "The Outsiders" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Miranda Lambert", + "title": "It All Comes Out In The Wash", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jimmie Allen", + "title": "Make Me Want To", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Garth Brooks & Blake Shelton", + "title": "Dive Bar", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis", + "title": "Slow Dance In A Parking Lot", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Riley Green", + "title": "I Wish Grandpas Never Died", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Ryan Hurd", + "title": "To A T", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Travis Denning", + "title": "After A Few", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Luke Combs Featuring Eric Church", + "title": "Does To Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 18, + "missing_count": 12, + "needs_manual_review": 18 + } + }, + { + "playlist_title": "2018 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a48ea54-c714-ea62-83f7-08c94bce978d", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Will Rock You (2.mp4", + "title": "We Will Rock You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Queen", + "playlist_title": "Killer Queen", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "86abd8d9-bbe2-3ebb-86a0-818309b65288", + "path": "z://MP4\\Sing King Karaoke\\Queen - Killer Queen (Karaoke Version).mp4", + "title": "Killer Queen" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Queen", + "playlist_title": "We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "f77cf827-4ec3-14c5-7afd-b28061589a08", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Are The Champions (Karaoke Version).mp4", + "title": "We Are The Champions" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bad Liar", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "9363c3e9-27dd-4168-9f80-a56a8f0526f1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bad Liar (Karaoke Version).mp4", + "title": "Bad Liar" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Zero", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "f65787cf-7654-65e4-730a-71b0104d2710", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Zero (Karaoke Version).mp4", + "title": "Zero" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Queen", + "playlist_title": "I Want To Break Free", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7eedc299-eedf-9b34-51df-9cc40ad17547", + "path": "z://MP4\\Sing King Karaoke\\Queen - I Want To Break Free (Karaoke Version).mp4", + "title": "I Want To Break Free" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Radio Ga Ga", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "33fc0ad0-9e6a-56f1-2ef1-f6fe431b8b32", + "path": "z://MP4\\Sing King Karaoke\\Queen - Radio Ga Ga (Karaoke Version).mp4", + "title": "Radio Ga Ga" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Queen", + "playlist_title": "Fat Bottomed Girls", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "72634af2-46a7-deba-6d54-666ba5e54ed9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fat Bottomed Girls - Queen.mp4", + "title": "Fat Bottomed Girls" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Queen", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7d27d172-136b-8538-58cd-1a54e39a4f2a", + "path": "z://MP4\\Sing King Karaoke\\Queen - Love Of My Life (Karaoke Version).mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "George Ezra", + "playlist_title": "Shotgun", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "497317c0-2a67-7155-6744-1ac112e17108", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Shotgun (Karaoke Version).mp4", + "title": "Shotgun" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hozier", + "playlist_title": "Movement", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad509a09-2fce-a4e9-6a0f-427299cf344a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hozier - Movement.mp4", + "title": "Movement" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Queen", + "playlist_title": "Hammer To Fall (Live Aid)", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a297761f-af13-8d18-ff7d-ca16a3655846", + "path": "z://MP4\\KaraFun Karaoke\\Hammer to Fall (Live Aid) - Queen Karaoke Version KaraFun.mp4", + "title": "Hammer to Fall (Live Aid)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The 1975", + "playlist_title": "Love It If We Made It", + "found_song": { + "artist": "The 1975", + "disabled": false, + "favorite": false, + "guid": "312899c6-cc20-877f-7be9-a3e18b41a770", + "path": "z://MP4\\Sing King Karaoke\\The 1975 - Love It If We Made It (Karaoke Version).mp4", + "title": "Love It If We Made It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "twenty one pilots", + "playlist_title": "Chlorine", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "15adda1c-76c5-c59d-1a08-ef7dbceb8be3", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Chlorine (Karaoke Version).mp4", + "title": "Chlorine" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "When The Curtain Falls", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "074febe9-9e38-3e22-7629-5f7907fbdfe3", + "path": "z://MP4\\KaraokeOnVEVO\\Greta Van Fleet - When The Curtain Falls (Karaoke).mp4", + "title": "When The Curtain Falls" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Ghost", + "playlist_title": "Dance Macabre", + "found_song": { + "artist": "Ghost", + "disabled": false, + "favorite": false, + "guid": "72d977f5-2b3f-5d63-0917-d8cd9cff4e3d", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Ghost - Dance Macabre (Karaoke).mp4", + "title": "Dance Macabre" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Mantra", + "found_song": { + "artist": "Bring Me the Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab7172ea-287b-4846-9c6c-6ad52275b06d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-12 - Bring Me the Horizon - Mantra.mp3", + "title": "Mantra" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Elle King", + "playlist_title": "Shame", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57f1429e-b239-eb79-463d-09af4ffa4776", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King - Shame.mp4", + "title": "Shame" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "The Greatest Show", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Shinedown", + "playlist_title": "Get Up", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2594b2d-2896-5355-5333-f670ad055249", + "path": "z://CDG\\SBI\\SBI-03\\SB20352 - Shinedown - Devour.mp3", + "title": "Devour" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Revivalists", + "playlist_title": "All My Friends", + "found_song": { + "artist": "Snakehips & Tinashe & Chance the Rapper", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "44c74453-8136-d583-3ba3-a842d2fd0bd4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF360\\Snakehips & Tinashe & Chance the Rapper - All My Friends - SF360 - 04.mp3", + "title": "All My Friends" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Disturbed", + "playlist_title": "Are You Ready", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "950ea377-17b8-800c-b39d-bdfb94ea1a58", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - Are You Ready.mp4", + "title": "Are You Ready" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "The Struts", + "playlist_title": "Body Talks", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "09bd9eeb-2958-a360-b1c9-d36f4c7b5a9a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Everybody Talks (Karaoke Version).mp4", + "title": "Everybody Talks" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The Glorious Sons", + "playlist_title": "S.O.S. (Sawed Off Shotgun)", + "found_song": { + "artist": "The Glorious Sons", + "disabled": false, + "favorite": false, + "guid": "7c3f54b6-c3df-5b8f-ca1e-ead95c62ccc5", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Glorious Sons - Sawed Off Shotgun (SOS) (Karaoke).mp4", + "title": "Sawed Off Shotgun (SOS)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Muse", + "playlist_title": "Pressure", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f42ab135-f888-0bac-f94d-97321824df28", + "path": "z://CDG\\SBI\\SBI-03\\SB27502 - Muse - Supremacy.mp3", + "title": "Supremacy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Machine", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Queen", + "playlist_title": "Radio Ga Ga (Live Aid)", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "33fc0ad0-9e6a-56f1-2ef1-f6fe431b8b32", + "path": "z://MP4\\Sing King Karaoke\\Queen - Radio Ga Ga (Karaoke Version).mp4", + "title": "Radio Ga Ga" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Young The Giant", + "playlist_title": "Superposition", + "found_song": { + "artist": "Calvin Harris ft. Dua Lipa, Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "491b5fe7-ee16-1f3a-9c7c-8fb16b21f765", + "path": "z://MP4\\ZoomKaraokeOfficial\\Calvin Harris, Dua Lipa & Young Thug - Potion.mp4", + "title": "Potion" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Foster The People", + "playlist_title": "Worst Nites", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "e91c8241-86d8-bd8c-844c-d9418af1dfb6", + "path": "z://MP4\\Karaoke Studio\\Foster The People - Sit Next To Me (Karaoke Version) - YouTube.mp4", + "title": "Sit Next To Me" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Queen", + "playlist_title": "Ay-Oh (Live Aid)", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a297761f-af13-8d18-ff7d-ca16a3655846", + "path": "z://MP4\\KaraFun Karaoke\\Hammer to Fall (Live Aid) - Queen Karaoke Version KaraFun.mp4", + "title": "Hammer to Fall (Live Aid)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Tidal Wave", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Weezer", + "title": "Africa", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Mumford & Sons", + "title": "Guiding Light", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "flora cash", + "title": "You're Somebody Else", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Interrupters", + "title": "She's Kerosene", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bad Wolves Featuring DIAMANTE", + "title": "Hear Me Now", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Godsmack", + "title": "When Legends Rise", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Slipknot", + "title": "All Out Life", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Mumford & Sons", + "title": "42", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "lovelytheband", + "title": "These Are My Friends", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 15, + "missing_count": 9, + "needs_manual_review": 15 + } + }, + { + "playlist_title": "2018 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "6ix9ine Featuring Lil Baby", + "playlist_title": "TIC TOC", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Daniel Caesar Featuring H.E.R.", + "playlist_title": "Best Part", + "found_song": { + "artist": "Daniel Caesar Featuring H.E.R.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2335b9f7-7ad8-f5e2-9a49-807929aeba62", + "path": "z://MP4\\Sing King Karaoke\\Daniel Caesar Featuring H.E.R. - Best Part.mp4", + "title": "Best Part" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Gucci Mane X Bruno Mars X Kodak Black", + "playlist_title": "Wake Up In The Sky", + "found_song": { + "artist": "Gucci Mane ft. Bruno Mars ft. Kodak Black", + "disabled": false, + "favorite": false, + "guid": "18cfd53a-29f9-8cd5-1b3c-b9232b16ec91", + "path": "z://MP4\\Sing King Karaoke\\Gucci Mane, Bruno Mars, Kodak Black - Wake Up In The Sky (Karaoke Version).mp4", + "title": "Wake Up In The Sky" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Lil Wayne", + "playlist_title": "Uproar", + "found_song": { + "artist": "Lil Wayne ft. Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a9390d3-1910-4a9c-da83-9c6d430dee2a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lil Wayne feat Bruno Mars - Mirror.mp4", + "title": "Mirror" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Drake", + "playlist_title": "Nonstop", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Trippie Redd", + "playlist_title": "Topanga", + "found_song": { + "artist": "iann dior, Trippie Redd", + "disabled": false, + "favorite": false, + "guid": "0f824184-15fc-d7e0-79f1-4722f1efd5b9", + "path": "z://MP4\\Sing King Karaoke\\iann dior, Trippie Redd - gone girl (Karaoke Version).mp4", + "title": "gone girl" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "French Montana Featuring Drake", + "playlist_title": "No Stylist", + "found_song": { + "artist": "French Montana Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "604df22c-a3c5-f2fb-d607-c1f99d7a1fd1", + "path": "z://MP4\\Sing King Karaoke\\French Montana Featuring Swae Lee - Unforgettable.mp4", + "title": "Unforgettable" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Tyga & Nicki Minaj", + "playlist_title": "Dip", + "found_song": { + "artist": "Nicki Minaj ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c98329ad-c2a5-e6f0-1b14-6b423a987134", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj ft. Ariana Grande - Bed (Karaoke Version).mp4", + "title": "Bed" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Metro Boomin Featuring Gunna", + "playlist_title": "Space Cadet", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Kanye West & Lil Pump", + "playlist_title": "I Love It", + "found_song": { + "artist": "Kanye West & Lil Pump ft. Adele Givens", + "disabled": false, + "favorite": false, + "guid": "6f303516-0c87-c5d7-4cd7-d52b8d29bbcd", + "path": "z://MP4\\Sing King Karaoke\\Kanye West & Lil Pump ft. Adele Givens - I Love It (Karaoke Version).mp4", + "title": "I Love It" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Lil Mosey", + "playlist_title": "Noticed", + "found_song": { + "artist": "Tate McRae ft. Lil Mosey", + "disabled": false, + "favorite": false, + "guid": "eed91088-37fa-43a9-434f-1e34639a43ab", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae ft. Lil Mosey - vicious (Karaoke Version).mp4", + "title": "vicious" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Amine", + "playlist_title": "Reel It In", + "found_song": { + "artist": "Javine", + "disabled": false, + "favorite": false, + "guid": "1ec456a3-a44e-4c0d-7e47-caab8ab9f56e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF207\\Javine - Real Things - Sf207 - 13.mp3", + "title": "Real Things" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "title": "Big Bank", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Quavo", + "title": "W O R K I N M E", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Eminem Featuring Joyner Lucas", + "title": "Lucky You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "6ix9ine Featuring DJ SPINKING", + "title": "TATI", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 11, + "missing_count": 24, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2018 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Bazzi Featuring Camila Cabello", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Bazzi Featuring Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3283d8bf-6c02-04ec-1144-f4282960eb6f", + "path": "z://MP4\\Sing King Karaoke\\Bazzi Featuring Camila Cabello - Beautiful.mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "playlist_title": "Close To Me", + "found_song": { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e000c325-49ce-07f0-8543-618446263e05", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding X Diplo Featuring Swae Lee - Close To Me.mp4", + "title": "Close To Me" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Chainsmokers Featuring Kelsea Ballerini", + "playlist_title": "This Feeling", + "found_song": { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "975c5121-8704-e712-2a81-acccd6f24aa5", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Kelsea Ballerini - This Feeling.mp4", + "title": "This Feeling" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Why Don't We", + "playlist_title": "8 Letters", + "found_song": { + "artist": "Why Don't We", + "disabled": false, + "favorite": false, + "guid": "5eafe4e2-ca60-4f7e-5ef7-6783be8505eb", + "path": "z://MP4\\Sing King Karaoke\\Why Don't We - 8 Letters (Karaoke Version).mp4", + "title": "8 Letters" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Zara Larsson", + "playlist_title": "Ruin My Life", + "found_song": { + "artist": "Zara Larsson", + "disabled": false, + "favorite": false, + "guid": "3047e50a-39ab-f160-2eea-7f4e56c83624", + "path": "z://MP4\\Sing King Karaoke\\Zara Larsson - Ruin My Life (Karaoke Version).mp4", + "title": "Ruin My Life" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Lauv Featuring Julia Michaels", + "playlist_title": "There's No Way", + "found_song": { + "artist": "Lauv Featuring Julia Michaels", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b72bee52-591c-90a5-0927-01e196082c26", + "path": "z://MP4\\Sing King Karaoke\\Lauv Featuring Julia Michaels - There's No Way.mp4", + "title": "There's No Way" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lukas Graham", + "playlist_title": "Love Someone", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "09c5bf2a-68c3-74c0-1fec-b9328620e5f1", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Love Someone (Karaoke Version).mp4", + "title": "Love Someone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Marshmello & Bastille", + "playlist_title": "Happier", + "found_song": { + "artist": "Marshmello ft. Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aeedf2fc-29b3-b58f-d86e-1610a743f7af", + "path": "z://MP4\\Sing King Karaoke\\Marshmello & Bastille - Happier.mp4", + "title": "Happier" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Khalid & Normani", + "playlist_title": "Love Lies", + "found_song": { + "artist": "Khalid & Normali", + "disabled": false, + "favorite": false, + "guid": "86e9f21f-ae8b-7e03-ad8d-45a6018ccad8", + "path": "z://MP4\\Karaoke Sing Sing\\Khalid & Normali - Love Lies (Karaoke Version).mp4", + "title": "Love Lies" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Benny Blanco, Halsey & Khalid", + "playlist_title": "Eastside", + "found_song": { + "artist": "Benny Blanco ft. Halsey, Khalid", + "disabled": false, + "favorite": false, + "guid": "307c6ddf-a738-9968-a12e-fea99ea98885", + "path": "z://MP4\\Sing King Karaoke\\benny blanco, Halsey & Khalid - Eastside (Karaoke Version).mp4", + "title": "Eastside" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Maroon 5 Featuring Cardi B", + "playlist_title": "Girls Like You", + "found_song": { + "artist": "Maroon 5 ft. Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "608dc4ad-2879-d3c0-a6b7-911faa653728", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Cardi B - Girls Like You.mp4", + "title": "Girls Like You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Silk City x Dua Lipa", + "playlist_title": "Electricity", + "found_song": { + "artist": "Silk City ft. Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bd635c4-4137-d7e7-752e-e8306b762ae9", + "path": "z://MP4\\Sing King Karaoke\\Silk City x Dua Lipa - Electricity.mp4", + "title": "Electricity" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "playlist_title": "Taki Taki", + "found_song": { + "artist": "DJ Snake", + "disabled": false, + "favorite": false, + "guid": "34cb0255-cd86-50de-6cd3-e0491bd8e112", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake - Taki Taki ft. Selena Gomez, Ozuna, Cardi B (Karaoke Version).mp4", + "title": "Taki Taki ft. Selena Gomez, Ozuna, Cardi B" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Lady Gaga & Bradley Cooper", + "playlist_title": "Shallow", + "found_song": { + "artist": "Lady Gaga & Bradley Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "801991eb-7202-c7f9-77a8-11cc76276395", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Gaga & Bradley Cooper - Shallow.mp4", + "title": "Shallow" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Alessia Cara", + "playlist_title": "Trust My Lonely", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "a3d1eb82-e02b-d51b-7b46-3b0185fdb0af", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Out Of Love (Karaoke Version).mp4", + "title": "Out Of Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Loud Luxury Featuring Brando", + "playlist_title": "Body", + "found_song": { + "artist": "Loud Luxury Featuring Brando", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ab0327e-cd22-14e4-23b8-e6fe70b6ef98", + "path": "z://MP4\\Sing King Karaoke\\Loud Luxury Featuring Brando - Body.mp4", + "title": "Body" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "playlist_title": "No Brainer", + "found_song": { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a37bd99c-9951-b574-ded2-ed26aa48fc72", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo - No Brainer.mp4", + "title": "No Brainer" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Steve Aoki Featuring BTS", + "playlist_title": "Waste It On Me", + "found_song": { + "artist": "Steve Aoki ft. BTS", + "disabled": false, + "favorite": false, + "guid": "b21de478-7719-b1e3-1fce-6cc0a223518a", + "path": "z://MP4\\Sing King Karaoke\\Steve Aoki feat. BTS - Waste It On Me (Karaoke Version).mp4", + "title": "Waste It On Me" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 15, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Labrinth, Sia & Diplo Present... LSD", + "title": "Thunderclouds", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Drake Featuring Michael Jackson", + "title": "Don't Matter To Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 16, + "missing_count": 4, + "needs_manual_review": 16 + } + }, + { + "playlist_title": "2018 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Bazzi Featuring Camila Cabello", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Bazzi Featuring Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3283d8bf-6c02-04ec-1144-f4282960eb6f", + "path": "z://MP4\\Sing King Karaoke\\Bazzi Featuring Camila Cabello - Beautiful.mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ella Mai", + "playlist_title": "Boo'd Up", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "fc8b7192-9e13-6662-e1ea-cd27edeff2a8", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Boo'd Up (Karaoke Version).mp4", + "title": "Boo'd Up" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Eilish", + "playlist_title": "When The Party's Over", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "71a1943f-3bbe-80e5-b1f4-65a69de29032", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - when the party's over (Karaoke Version).mp4", + "title": "when the party's over" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Lauren Daigle", + "playlist_title": "You Say", + "found_song": { + "artist": "Lauren Daigle", + "disabled": false, + "favorite": false, + "guid": "b37aa5f4-041e-f4e3-3237-2e71866e24ae", + "path": "z://MP4\\Sing King Karaoke\\Lauren Daigle - You Say (Karaoke Version).mp4", + "title": "You Say" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "6ix9ine Featuring Lil Baby", + "playlist_title": "TIC TOC", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Come Out And Play", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "32ba4069-8510-f0ad-5ede-22d5265d29b2", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - come out and play (Karaoke Version).mp4", + "title": "come out and play" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Dierks Bentley Featuring Brothers Osborne", + "playlist_title": "Burning Man", + "found_song": { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96ec64b9-4e71-7916-0a64-fa4cc7c9d5ab", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Brothers Osborne - Burning Man.mp4", + "title": "Burning Man" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bebe Rexha", + "playlist_title": "I'm A Mess", + "found_song": { + "artist": "Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "f1b186ab-2866-50e3-a066-3e142757a058", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha - I'm A Mess (Karaoke Version).mp4", + "title": "I'm A Mess" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "The Chainsmokers Featuring Kelsea Ballerini", + "playlist_title": "This Feeling", + "found_song": { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "975c5121-8704-e712-2a81-acccd6f24aa5", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Kelsea Ballerini - This Feeling.mp4", + "title": "This Feeling" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Maren Morris", + "playlist_title": "Rich", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "be2f1409-5b99-a5e9-e56b-222bd1fb6dec", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - Rich (Karaoke Version).mp4", + "title": "Rich" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Daniel Caesar Featuring H.E.R.", + "playlist_title": "Best Part", + "found_song": { + "artist": "Daniel Caesar Featuring H.E.R.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2335b9f7-7ad8-f5e2-9a49-807929aeba62", + "path": "z://MP4\\Sing King Karaoke\\Daniel Caesar Featuring H.E.R. - Best Part.mp4", + "title": "Best Part" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Billie Eilish", + "playlist_title": "Ocean Eyes", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb03dae2-190a-7ef5-4996-742afe03de13", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Ocean Eyes (Karaoke Version).mp4", + "title": "Ocean Eyes" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "playlist_title": "Close To Me", + "found_song": { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e000c325-49ce-07f0-8543-618446263e05", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding X Diplo Featuring Swae Lee - Close To Me.mp4", + "title": "Close To Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Marshmello & Bastille", + "playlist_title": "Happier", + "found_song": { + "artist": "Marshmello ft. Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aeedf2fc-29b3-b58f-d86e-1610a743f7af", + "path": "z://MP4\\Sing King Karaoke\\Marshmello & Bastille - Happier.mp4", + "title": "Happier" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Maroon 5 Featuring Cardi B", + "playlist_title": "Girls Like You", + "found_song": { + "artist": "Maroon 5 ft. Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "608dc4ad-2879-d3c0-a6b7-911faa653728", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Cardi B - Girls Like You.mp4", + "title": "Girls Like You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Gucci Mane X Bruno Mars X Kodak Black", + "playlist_title": "Wake Up In The Sky", + "found_song": { + "artist": "Gucci Mane ft. Bruno Mars ft. Kodak Black", + "disabled": false, + "favorite": false, + "guid": "18cfd53a-29f9-8cd5-1b3c-b9232b16ec91", + "path": "z://MP4\\Sing King Karaoke\\Gucci Mane, Bruno Mars, Kodak Black - Wake Up In The Sky (Karaoke Version).mp4", + "title": "Wake Up In The Sky" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Benny Blanco, Halsey & Khalid", + "playlist_title": "Eastside", + "found_song": { + "artist": "Benny Blanco ft. Halsey, Khalid", + "disabled": false, + "favorite": false, + "guid": "307c6ddf-a738-9968-a12e-fea99ea98885", + "path": "z://MP4\\Sing King Karaoke\\benny blanco, Halsey & Khalid - Eastside (Karaoke Version).mp4", + "title": "Eastside" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Khalid & Normani", + "playlist_title": "Love Lies", + "found_song": { + "artist": "Khalid & Normali", + "disabled": false, + "favorite": false, + "guid": "86e9f21f-ae8b-7e03-ad8d-45a6018ccad8", + "path": "z://MP4\\Karaoke Sing Sing\\Khalid & Normali - Love Lies (Karaoke Version).mp4", + "title": "Love Lies" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "playlist_title": "Taki Taki", + "found_song": { + "artist": "DJ Snake", + "disabled": false, + "favorite": false, + "guid": "34cb0255-cd86-50de-6cd3-e0491bd8e112", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake - Taki Taki ft. Selena Gomez, Ozuna, Cardi B (Karaoke Version).mp4", + "title": "Taki Taki ft. Selena Gomez, Ozuna, Cardi B" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Lady Gaga & Bradley Cooper", + "playlist_title": "Shallow", + "found_song": { + "artist": "Lady Gaga & Bradley Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "801991eb-7202-c7f9-77a8-11cc76276395", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Gaga & Bradley Cooper - Shallow.mp4", + "title": "Shallow" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Lil Wayne", + "playlist_title": "Uproar", + "found_song": { + "artist": "Lil Wayne ft. Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a9390d3-1910-4a9c-da83-9c6d430dee2a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lil Wayne feat Bruno Mars - Mirror.mp4", + "title": "Mirror" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Drake", + "playlist_title": "Nonstop", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Mitchell Tenpenny", + "playlist_title": "Drunk Me", + "found_song": { + "artist": "Mitchell Tenpenny", + "disabled": false, + "favorite": false, + "guid": "45d6e195-7a9c-6927-10a9-dbf6d771c18a", + "path": "z://MP4\\King of Karaoke\\Mitchell Tenpenny - Bitches - King of Karaoke.mp4", + "title": "Bitches" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Trippie Redd", + "playlist_title": "Topanga", + "found_song": { + "artist": "iann dior, Trippie Redd", + "disabled": false, + "favorite": false, + "guid": "0f824184-15fc-d7e0-79f1-4722f1efd5b9", + "path": "z://MP4\\Sing King Karaoke\\iann dior, Trippie Redd - gone girl (Karaoke Version).mp4", + "title": "gone girl" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "French Montana Featuring Drake", + "playlist_title": "No Stylist", + "found_song": { + "artist": "French Montana Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "604df22c-a3c5-f2fb-d607-c1f99d7a1fd1", + "path": "z://MP4\\Sing King Karaoke\\French Montana Featuring Swae Lee - Unforgettable.mp4", + "title": "Unforgettable" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Chris Young", + "playlist_title": "Hangin' On", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "9867e982-dcfc-bb3b-231e-d5d6b445127a", + "path": "z://MP4\\KtvEntertainment\\Chris Young - Think Of You Karaoke Lyrics.mp4", + "title": "Think Of You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Tyga & Nicki Minaj", + "playlist_title": "Dip", + "found_song": { + "artist": "Nicki Minaj ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c98329ad-c2a5-e6f0-1b14-6b423a987134", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj ft. Ariana Grande - Bed (Karaoke Version).mp4", + "title": "Bed" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Dustin Lynch", + "playlist_title": "Good Girl", + "found_song": { + "artist": "Dustin Lynch", + "disabled": false, + "favorite": false, + "guid": "2711de76-1c90-2a3b-78ee-138e13032c4e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cowboys And Angels - Dustin Lynch.mp4", + "title": "Cowboys And Angels" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Billie Eilish & Khalid", + "playlist_title": "Lovely", + "found_song": { + "artist": "Billie Eilish ft. Khalid", + "disabled": false, + "favorite": false, + "guid": "cddb2405-0c0c-fb1e-5728-26ad8b4d6e97", + "path": "z://MP4\\KaraFun Karaoke\\Lovely - Billie Eilish & Khalid Karaoke Version KaraFun.mp4", + "title": "Lovely" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "6ix9ine Featuring Anuel AA", + "playlist_title": "BEBE", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Sixteen", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "4e7a9c59-0c15-d578-5887-6748020ad472", + "path": "z://MP4\\Stingray Karaoke\\T-Shirt Thomas Rhett Karaoke with Lyrics.mp4", + "title": "T-Shirt" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Blue Tacoma", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Metro Boomin Featuring Gunna", + "playlist_title": "Space Cadet", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Kip Moore", + "playlist_title": "Last Shot", + "found_song": { + "artist": "Kip Moore", + "disabled": false, + "favorite": false, + "guid": "6dd8206a-75f5-f1a2-ba6f-1676c36d64b7", + "path": "z://MP4\\Karaoke Studio\\Plead The Fifth (In the Style of Kip Moore) Karaoke with Lyrics.mp4", + "title": "Plead The Fifth" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Jason Aldean", + "playlist_title": "Girl Like You", + "found_song": { + "artist": "Maroon 5 ft. Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "608dc4ad-2879-d3c0-a6b7-911faa653728", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Cardi B - Girls Like You.mp4", + "title": "Girls Like You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Kanye West & Lil Pump", + "playlist_title": "I Love It", + "found_song": { + "artist": "Kanye West & Lil Pump ft. Adele Givens", + "disabled": false, + "favorite": false, + "guid": "6f303516-0c87-c5d7-4cd7-d52b8d29bbcd", + "path": "z://MP4\\Sing King Karaoke\\Kanye West & Lil Pump ft. Adele Givens - I Love It (Karaoke Version).mp4", + "title": "I Love It" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Lil Peep & XXXTENTACION", + "playlist_title": "Falling Down", + "found_song": { + "artist": "Lil Peep & XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "5023bbec-1186-4fb3-a18d-836934e20093", + "path": "z://MP4\\Sing King Karaoke\\Lil Peep & XXXTENTACION - Falling Down (Karaoke Version).mp4", + "title": "Falling Down" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Lil Mosey", + "playlist_title": "Noticed", + "found_song": { + "artist": "Tate McRae ft. Lil Mosey", + "disabled": false, + "favorite": false, + "guid": "eed91088-37fa-43a9-434f-1e34639a43ab", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae ft. Lil Mosey - vicious (Karaoke Version).mp4", + "title": "vicious" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Cardi B, Bad Bunny & J Balvin", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyga Featuring Offset", + "title": "Taste", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Lil Baby & Drake", + "title": "Yes Indeed", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Anuel AA & Romeo Santos", + "title": "Ella Quiere Beber", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 31, + "missing_count": 26, + "needs_manual_review": 31 + } + }, + { + "playlist_title": "2018 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Dierks Bentley Featuring Brothers Osborne", + "playlist_title": "Burning Man", + "found_song": { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96ec64b9-4e71-7916-0a64-fa4cc7c9d5ab", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Brothers Osborne - Burning Man.mp4", + "title": "Burning Man" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Scotty McCreery", + "playlist_title": "This Is It", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "ac4138e8-24a2-c1c3-cfed-fab42e7745f7", + "path": "z://MP4\\Karaoke Studio\\Scotty McCreery - This Is It (Karaoke with Lyrics).mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Millionaire", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "95534f43-a242-c5f8-adf5-ac47ada16bca", + "path": "z://MP4\\Stingray Karaoke\\Millionaire Chris Stapleton Karaoke with Lyrics.mp4", + "title": "Millionaire" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eric Church", + "playlist_title": "Desperate Man", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "23fceba7-f85b-58cd-8df5-7bccefffbd09", + "path": "z://MP4\\King of Karaoke\\Eric Church - Desperate Man - King of Karaoke.mp4", + "title": "Desperate Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Luke Combs", + "playlist_title": "Beautiful Crazy", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a182bbe1-f007-bd48-dbe6-629ad92b9e92", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Beautiful Crazy (Karaoke Version).mp4", + "title": "Beautiful Crazy" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jake Owen", + "playlist_title": "Down To The Honkytonk", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "3382b479-7d9a-a4b3-fc3f-d97bf5246b04", + "path": "z://MP4\\Stingray Karaoke\\Down To The Honkytonk Jake Owen Karaoke with Lyrics.mp4", + "title": "Down To The Honkytonk" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Luke Bryan", + "playlist_title": "What Makes You Country", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "073c8c3c-e474-6080-1ec8-49c945a98963", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - What Makes You Country Karaoke.mp4", + "title": "What Makes You Country" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Whiskey Glasses", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "696b4a9b-4671-fc44-d095-73da32cc5452", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Whiskey Glasses (Karaoke Version).mp4", + "title": "Whiskey Glasses" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Bebe Rexha & Florida Georgia Line", + "playlist_title": "Meant To Be", + "found_song": { + "artist": "Bebe Rexha ft. Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329dfb31-bdda-56a8-e973-14dcdd65daa1", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha & Florida Georgia Line - Meant To Be.mp4", + "title": "Meant To Be" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Mitchell Tenpenny", + "playlist_title": "Drunk Me", + "found_song": { + "artist": "Mitchell Tenpenny", + "disabled": false, + "favorite": false, + "guid": "45d6e195-7a9c-6927-10a9-dbf6d771c18a", + "path": "z://MP4\\King of Karaoke\\Mitchell Tenpenny - Bitches - King of Karaoke.mp4", + "title": "Bitches" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Chris Young", + "playlist_title": "Hangin' On", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "9867e982-dcfc-bb3b-231e-d5d6b445127a", + "path": "z://MP4\\KtvEntertainment\\Chris Young - Think Of You Karaoke Lyrics.mp4", + "title": "Think Of You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Dustin Lynch", + "playlist_title": "Good Girl", + "found_song": { + "artist": "Dustin Lynch", + "disabled": false, + "favorite": false, + "guid": "2711de76-1c90-2a3b-78ee-138e13032c4e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cowboys And Angels - Dustin Lynch.mp4", + "title": "Cowboys And Angels" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Sixteen", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "4e7a9c59-0c15-d578-5887-6748020ad472", + "path": "z://MP4\\Stingray Karaoke\\T-Shirt Thomas Rhett Karaoke with Lyrics.mp4", + "title": "T-Shirt" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Kip Moore", + "playlist_title": "Last Shot", + "found_song": { + "artist": "Kip Moore", + "disabled": false, + "favorite": false, + "guid": "6dd8206a-75f5-f1a2-ba6f-1676c36d64b7", + "path": "z://MP4\\Karaoke Studio\\Plead The Fifth (In the Style of Kip Moore) Karaoke with Lyrics.mp4", + "title": "Plead The Fifth" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Jason Aldean", + "playlist_title": "Girl Like You", + "found_song": { + "artist": "Maroon 5 ft. Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "608dc4ad-2879-d3c0-a6b7-911faa653728", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Cardi B - Girls Like You.mp4", + "title": "Girls Like You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Blake Shelton", + "playlist_title": "Turnin' Me On", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "d7ead195-e19e-1e2f-f99a-e1b9e12c6634", + "path": "z://MP4\\KtvEntertainment\\Blake Shelton - Friends Karaoke Lyrics.mp4", + "title": "Friends" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Midland", + "playlist_title": "Burn Out", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "26be8d4d-f23f-1ced-ba5a-c0fa3f85a677", + "path": "z://MP4\\King of Karaoke\\Midland - Burn Out - King of Karaoke.mp4", + "title": "Burn Out" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Tim McGraw", + "playlist_title": "Neon Church", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "a28a6792-0c21-b5b9-eeb3-1c4bc2bfb1be", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Down On The Farm (Karaoke & Lyrics).mp4", + "title": "Down On The Farm" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Miss Me More", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Jon Pardi", + "playlist_title": "Night Shift", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "7fde1ae7-6390-43b4-fd02-1a001d219836", + "path": "z://CDG\\Various\\Lionel Richie - Night Shift.mp3", + "title": "Night Shift" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Old Dominion", + "playlist_title": "Make It Sweet", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "f2d1006d-cf34-f3a5-b260-30cae0fbdaf5", + "path": "z://MP4\\KtvEntertainment\\Old Dominion - Hotel Key Karaoke Lyrics.mp4", + "title": "Hotel" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Love Wins", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "e26d8f42-acc8-c8e9-9985-ca1569bdaa63", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Blown Away (Karaoke).mp4", + "title": "Blown Away" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Brett Young", + "playlist_title": "Here Tonight", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "6e81468e-0657-1c77-7c3d-dd22b4edc893", + "path": "z://MP4\\Karaoke Studio\\Brett Young - Mercy (Karaoke with Lyrics).mp4", + "title": "Mercy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Cody Johnson", + "playlist_title": "On My Way To You", + "found_song": { + "artist": "Cody Johnson, Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c980ce32-bfe7-1e26-441f-19792e866c06", + "path": "z://MP4\\Sing King Karaoke\\Cody Johnson, Carrie Underwood - I'm Gonna Love You.mp4", + "title": "I'm Gonna Love You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Keith Urban", + "playlist_title": "Never Comin Down", + "found_song": { + "artist": "Keith Urban & Julia Michaels", + "disabled": false, + "favorite": false, + "guid": "ab364475-87d5-c1c1-cfa6-d28b6cdd62fd", + "path": "z://MP4\\Karaoke Studio\\Keith Urban & Julia Michaels - Coming Home (Karaoke with Lyrics).mp4", + "title": "Coming Home" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Michael Ray", + "playlist_title": "One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b0022e4d-82b7-f850-dc9b-5920352e6b42", + "path": "z://MP4\\Karaoke Sing Sing\\Katy Perry - One That Got Away (Karaoke Version) (2).mp4", + "title": "One That Got Away" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Lee Brice", + "playlist_title": "Rumor", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Kenny Chesney Featuring Mindy Smith", + "playlist_title": "Better Boat", + "found_song": { + "artist": "Kenny Chesney ft. Mindy Smith", + "disabled": false, + "favorite": false, + "guid": "ee87624b-bf0a-7abe-4621-a38d9d3f66db", + "path": "z://MP4\\King of Karaoke\\Kenny Chesney ft. Mindy Smith - Better Boat - King of Karaoke.mp4", + "title": "Better Boat" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Talk You Out Of It", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "3d60ca54-821a-25f6-9e15-9ad02cc506c0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Get Your Shine On Karaoke Lyrics.mp4", + "title": "Get Your Shine On" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Chris Lane", + "playlist_title": "I Don't Know About You", + "found_song": { + "artist": "HRVY", + "disabled": false, + "favorite": false, + "guid": "30939ba5-0269-6fac-c3a5-8c1d79440c09", + "path": "z://MP4\\Sing King Karaoke\\HRVY – I Don't Think About You (Karaoke Version).mp4", + "title": "I Don't Think About You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Chase Rice", + "playlist_title": "Eyes On You", + "found_song": { + "artist": "Meek Mill ft. Nicki Minaj & Chris Brown", + "disabled": false, + "favorite": false, + "guid": "6e1815c6-fc7b-a94a-b705-6d36174c2cae", + "path": "z://MP4\\Sing King Karaoke\\Meek Mill ft. Nicki Minaj & Chris Brown - All Eyes On You (Karaoke Version).mp4", + "title": "All Eyes On You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Kane Brown", + "playlist_title": "Homesick", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Love Someone", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "7697a8bd-8b7e-c092-985b-8de7726f4929", + "path": "z://MP4\\KtvEntertainment\\Brett Eldredge - Lose My Mind Karaoke Lyrics.mp4", + "title": "Lose My Mind" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Kane Brown", + "playlist_title": "Good As You", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ab8632aa-598f-6e49-3526-65967316d37e", + "path": "z://MP4\\Karaoke Studio\\Kane Brown - Found You (Karaoke Version).mp4", + "title": "Found You" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Billy Currington", + "playlist_title": "Bring It On Over", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "ea590392-0723-2ddc-dbe0-75cef55b0864", + "path": "z://CDG\\Various\\Billy Currington - Good Directions.mp3", + "title": "Good Directions" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Back To Life", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a9b3ef39-0d5f-2a4c-25c7-493975075543", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Backwards - Rascal Flatts.mp4", + "title": "Backwards" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Friends Don't", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "a5fe7352-f222-7435-4ac0-a643e6172f3c", + "path": "z://MP4\\KtvEntertainment\\Maddie & Tae - Friends Don't Karaoke Lyrics.mp4", + "title": "Friends Don't" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jordan Davis", + "title": "Take It From Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Riley Green", + "title": "There Was This Girl", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tyler Rich", + "title": "The Difference", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Eli Young Band", + "title": "Love Ain't", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "title": "Caught Up In The Country", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Granger Smith", + "title": "You're In It", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Travis Denning", + "title": "David Ashley Parker From Powder Springs", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 30, + "missing_count": 8, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "2017 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Revivalists", + "playlist_title": "Wish I Knew You", + "found_song": { + "artist": "The Revivalists", + "disabled": false, + "favorite": false, + "guid": "844a5802-715e-69b9-2cbe-1508dfe66bba", + "path": "z://MP4\\Karaoke Studio\\Wish I Knew You (In the Style of The Revivalists) Karaoke with Lyrics.mp4", + "title": "Wish I Knew You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Rx (Medicate)", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "227ac9f9-339a-3125-2a0d-00ed6c21ed51", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Theory Of A Deadman - RX (Medicate) (Karaoke).mp4", + "title": "RX (Medicate)" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Whatever It Takes", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "acdf3a83-0de4-9cde-eba8-13ea6f7063a9", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Whatever It Takes (Karaoke Version).mp4", + "title": "Whatever It Takes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Gone Away", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "55b940db-9d51-d87b-f32c-9d3a72ed3c00", + "path": "z://MP4\\King of Karaoke\\Five Finger Death Punch - Gone Away - King of Karaoke.mp4", + "title": "Gone Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alice Merton", + "playlist_title": "No Roots", + "found_song": { + "artist": "Alice Merton", + "disabled": false, + "favorite": false, + "guid": "6a448447-6367-bb35-e5a0-39ae1ff5bd4b", + "path": "z://MP4\\Karaoke Sing Sing\\Alice Merton - No Roots (Karaoke Version).mp4", + "title": "No Roots" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beck", + "playlist_title": "Up All Night", + "found_song": { + "artist": "Beck", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "2424c4c9-1ace-1f16-ba06-5fc0a8584ca3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF381\\SF381-13 - Beck - Up All Night.mp3", + "title": "Up All Night" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Linkin Park", + "playlist_title": "One More Light", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "ab986ef4-b202-6648-d9f7-d7e893d4a3f2", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - One More Light (Karaoke Version).mp4", + "title": "One More Light" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gary Clark Jr.", + "playlist_title": "Come Together", + "found_song": { + "artist": "Gary Clark Jr. & Junkie XL", + "disabled": false, + "favorite": false, + "guid": "811166b5-3d59-371e-d08e-5c02ea772379", + "path": "z://MP4\\KaraFun Karaoke\\Come Together - Gary Clark Jr. & Junkie XL Karaoke Version KaraFun.mp4", + "title": "Come Together" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Foster The People", + "playlist_title": "Sit Next To Me", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "e91c8241-86d8-bd8c-844c-d9418af1dfb6", + "path": "z://MP4\\Karaoke Studio\\Foster The People - Sit Next To Me (Karaoke Version) - YouTube.mp4", + "title": "Sit Next To Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Hold Me Tight Or Don't", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "06fb4e4d-5b44-4cd8-8ad7-48842d8ba47f", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - HOLD ME TIGHT OR DON'T (Karaoke Version).mp4", + "title": "HOLD ME TIGHT OR DON'T" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Trouble", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38efd75-e122-62bf-fced-371c7e33328b", + "path": "z://MP4\\KaraokeOnVEVO\\Five Finger Death Punch - Trouble.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Bastille", + "playlist_title": "World Gone Mad", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "bcec6da9-e349-a321-2fc0-3af7185d0aa1", + "path": "z://MP4\\Karaoke Sing Sing\\Bastille - World Gone Mad (Karaoke Version).mp4", + "title": "World Gone Mad" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "Highway Tune", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "fb3d9aba-b7e2-bbb4-95a8-09fb3182f3e1", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Greta Van Fleet - Highway Tune (Karaoke) (Vocal Reduction).mp4", + "title": "Highway Tune" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Weezer", + "playlist_title": "Happy Hour", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "2e184434-1c3c-0ee2-0742-b841cb02a3e3", + "path": "z://MP4\\Karaoke Studio\\Weezer - Happy Hour (Karaoke Version).mp4", + "title": "Happy Hour" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Welshly Arms", + "playlist_title": "Legendary", + "found_song": { + "artist": "Welshly Arms", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f493fd6d-9358-d971-523a-79b4538c9599", + "path": "z://MP4\\KaraokeOnVEVO\\Welshly Arms - Legendary.mp4", + "title": "Legendary" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Seether", + "playlist_title": "Betray And Degrade", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2632adda-dae8-4627-5428-8e5394d160a9", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Betray And Degrade.mp4", + "title": "Betray And Degrade" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bishop Briggs", + "playlist_title": "Dream", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "e88f608d-cc9d-1184-1ea7-6b3c49acff0e", + "path": "z://MP4\\KtvEntertainment\\Bishop Briggs - Dream Karaoke.mp4", + "title": "Dream" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "U2", + "playlist_title": "American Soul", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "05d7cd10-e56e-e21a-ea70-e89232c8d546", + "path": "z://MP4\\Karaoke Studio\\U2 - American Soul (Karaoke Version).mp4", + "title": "American Soul" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Walk On Water", + "found_song": { + "artist": "Thirty Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "ce4e1a4a-7b14-bc98-fafd-e896c0dc1e44", + "path": "z://MP4\\Karaoke Sing Sing\\Thirty Seconds To Mars - Rescue Me (Karaoke Version).mp4", + "title": "Rescue Me" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "AC/DC", + "playlist_title": "Thunderstruck", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "0cc0016f-a5dd-f17f-9efe-1247e75375a0", + "path": "z://MP4\\KtvEntertainment\\AC DC - Thunderstruck (Karaoke without Vocal).mp4", + "title": "Thunderstruck" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Angela", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8171f8dc-413c-885b-254a-01caea4348f4", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Lumineers - Gloria.mp4", + "title": "Gloria" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Vance Joy", + "playlist_title": "Lay It On Me", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "guid": "51eba66c-9bc2-07b9-cf7d-853536b7c765", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Call If You Need Me (Karaoke Version).mp4", + "title": "Call If You Need Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "AC/DC", + "playlist_title": "Highway To Hell", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "e9a66438-e15b-0e6d-d091-c1e24b10f11a", + "path": "z://MP4\\Sing King Karaoke\\AC DC - Highway To Hell (Karaoke Version).mp4", + "title": "Highway To Hell" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Live In The Moment", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "212f3c75-1fa9-a81d-d483-38a53792bb0c", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Keep On (Karaoke Version).mp4", + "title": "Keep On" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "U2", + "playlist_title": "Get Out Of Your Own Way", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "46e2afac-ea3d-daf7-b6ee-8376c8c53f4e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Go Your Own Way - Glee.mp4", + "title": "Go Your Own Way" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Noah Mac", + "playlist_title": "Ordinary World", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eb88e74-4060-ffab-202f-f08563944a62", + "path": "z://MP4\\ZoomKaraokeOfficial\\Duran Duran - Ordinary World.mp4", + "title": "Ordinary World" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "All That Remains", + "playlist_title": "The Thunder Rolls", + "found_song": { + "artist": "All That Remains", + "disabled": false, + "favorite": false, + "guid": "67d8201d-8247-5ae6-a49b-417975c2c587", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - All That Remains - Thunder Rolls (Karaoke).mp4", + "title": "Thunder Rolls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Dirty Heads", + "playlist_title": "Vacation", + "found_song": { + "artist": "Dirty Heads", + "disabled": false, + "favorite": false, + "guid": "515f867c-9866-e269-4428-2e8199ebc05a", + "path": "z://MP4\\Karaoke Studio\\Dirty Heads - Vacation (Karaoke Version).mp4", + "title": "Vacation" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "X Ambassadors", + "playlist_title": "Ahead Of Myself", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Fall Out Boy", + "playlist_title": "The Last Of The Real Ones", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "165fd100-2278-fd94-39d0-4ee80f8128f0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF257\\Fall Out Boy - The Take Over, The Break's Over - SF257 - 12.mp3", + "title": "The Take Over, The Break's Over" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Score", + "playlist_title": "Legend", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "10bfeba8-bbfe-3c0f-71f2-ed25543d1767", + "path": "z://MP4\\KtvEntertainment\\The Cure - Lovesong Karaoke Lyrics.mp4", + "title": "Lovesong" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Marilyn Manson", + "playlist_title": "Kill4me", + "found_song": { + "artist": "Marilyn Manson", + "disabled": false, + "favorite": false, + "guid": "3eaed56a-4317-4c4d-233d-6dfda2dec77d", + "path": "z://MP4\\Stingray Karaoke\\Tainted Love in the Style of Marilyn Manson karaoke video with lyrics (no lead vocal).mp4", + "title": "Tainted Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "U2", + "title": "You're The Best Thing About Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chloe Kohanski", + "title": "Call Me", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Foo Fighters", + "title": "The Sky Is A Neighborhood", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Nothing More", + "title": "Go To War", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Royal Blood", + "title": "I Only Lie When I Love You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cold War Kids Featuring Bishop Briggs", + "title": "So Tied Up", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Skillet", + "title": "The Resistance", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Papa Roach", + "title": "Born For Greatness", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Manchester Orchestra", + "title": "The Gold", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Two Feet", + "title": "Go Fuck Yourself", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Fozzy", + "title": "Judas", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 16, + "missing_count": 11, + "needs_manual_review": 16 + } + }, + { + "playlist_title": "2017 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "Go Flex", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "7b4fd6d5-b21b-75d9-08a9-3213aab2c419", + "path": "z://MP4\\KtvEntertainment\\Post Malone - Go Flex Karaoke Lyrics.mp4", + "title": "Go Flex" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lil Baby", + "playlist_title": "My Dawg", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "guid": "7a96e336-9795-8ca0-3502-9dccd967ff49", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Baby - My Dawg (Karaoke).mp4", + "title": "My Dawg" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Cardi B", + "playlist_title": "Bodak Yellow (Money Moves)", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "094440b8-fb86-6300-5df5-a14e1e100ccc", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Bodak Yellow (Karaoke Version).mp4", + "title": "Bodak Yellow" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "6ix9ine", + "playlist_title": "Gummo", + "found_song": { + "artist": "6ix9ine ft. Kanye West, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "71d0f472-d47f-6502-4970-24825cb087af", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version).mp4", + "title": "MAMA" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Migos, Nicki Minaj & Cardi B", + "playlist_title": "MotorSport", + "found_song": { + "artist": "Migos ft. Nicki Minaj, Cardi B", + "disabled": false, + "favorite": false, + "guid": "38b9203b-5721-5d21-28a9-79c2f099f1ab", + "path": "z://MP4\\Karaoke Sing Sing\\Migos ft Nicki Minaj & Cardi B - MotorSport (Karaoke Version).mp4", + "title": "MotorSport" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "G-Eazy & Halsey", + "playlist_title": "Him & I", + "found_song": { + "artist": "G-Eazy & Halsey", + "disabled": false, + "favorite": false, + "guid": "12a3a0e3-d69f-5f55-2ec9-451256184e00", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy & Halsey - Him & I (Karaoke Version).mp4", + "title": "Him & I" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Kendrick Lamar Featuring Zacari", + "playlist_title": "Love.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84feda9f-5b4f-178e-a63f-44ad65f0dd67", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - LOVE FEAT ZACARI.mp4", + "title": "LOVE. FEAT. ZACARI." + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Miguel Featuring Travis Scott", + "playlist_title": "Sky Walker", + "found_song": { + "artist": "Miguel ft. Travis Scott", + "disabled": false, + "favorite": false, + "guid": "bdbfbf07-b0ad-3c14-d6cd-9132d11d707e", + "path": "z://MP4\\Sing King Karaoke\\Miguel ft. Travis Scott - Sky Walker (Karaoke Version).mp4", + "title": "Sky Walker" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Offset & Metro Boomin", + "playlist_title": "Ric Flair Drip", + "found_song": { + "artist": "Offset ft. Metro Boomin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6683f355-dcdc-b50a-10ed-058b2c8c7d01", + "path": "z://MP4\\Sing King Karaoke\\Offset & Metro Boomin - Ric Flair Drip.mp4", + "title": "Ric Flair Drip" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Yo Gotti Featuring Nicki Minaj", + "playlist_title": "Rake It Up", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Post Malone", + "playlist_title": "Candy Paint", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "N*E*R*D & Rihanna", + "playlist_title": "Lemon", + "found_song": { + "artist": "N.E.R.D. & Rihanna", + "disabled": false, + "favorite": false, + "guid": "ea3cd569-8288-2207-af9e-a06607d8bd09", + "path": "z://MP4\\Sing King Karaoke\\N.E.R.D. & Rihanna - Lemon (Karaoke Version).mp4", + "title": "Lemon" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "6ix9ine", + "playlist_title": "Kooda", + "found_song": { + "artist": "6ix9ine ft. Kanye West, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "71d0f472-d47f-6502-4970-24825cb087af", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version).mp4", + "title": "MAMA" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Kodak Black", + "playlist_title": "Transportin'", + "found_song": { + "artist": "A Boogie Wit Da Hoodie, Kodak Black", + "disabled": false, + "favorite": false, + "guid": "290de127-ce4d-cddb-9d13-296ef513eb26", + "path": "z://MP4\\Sing King Karaoke\\A Boogie Wit Da Hoodie, Kodak Black - Drowning (Karaoke Version).mp4", + "title": "Drowning" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Lil Uzi Vert", + "playlist_title": "Sauce It Up", + "found_song": { + "artist": "Lil Uzi Vert", + "disabled": false, + "favorite": false, + "guid": "7a96e5b5-23af-45f8-350c-36fc6ee485bd", + "path": "z://MP4\\Sing King Karaoke\\Lil Uzi Vert - That Way (Karaoke Version).mp4", + "title": "That Way" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "No Smoke", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Jaden Smith", + "playlist_title": "Icon", + "found_song": { + "artist": "Disclosure ft. Sam Smith", + "disabled": false, + "favorite": false, + "guid": "43982220-703b-246e-d332-580d9385a286", + "path": "z://MP4\\Sing King Karaoke\\Disclosure ft. Sam Smith - Omen (Karaoke Version).mp4", + "title": "Omen" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "title": "Crew", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eminem Featuring Beyonce", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "title": "Come Through And Chill", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Rich The Kid Featuring Kendrick Lamar", + "title": "New Freezer", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "title": "Something New", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "title": "Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 16, + "missing_count": 24, + "needs_manual_review": 16 + } + }, + { + "playlist_title": "2017 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Camila Cabello Featuring Young Thug", + "playlist_title": "Havana", + "found_song": { + "artist": "Camila Cabello Featuring Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "266f7a81-7eca-3d06-5e54-10a3a98be6fb", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello Featuring Young Thug - Havana.mp4", + "title": "Havana" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Liam Payne Featuring Quavo", + "playlist_title": "Strip That Down", + "found_song": { + "artist": "Liam Payne Featuring Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d7683f4-1f89-3ea0-cf1f-4fd76668d2f9", + "path": "z://MP4\\Sing King Karaoke\\Liam Payne Featuring Quavo - Strip That Down.mp4", + "title": "Strip That Down" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "MAX Featuring gnash", + "playlist_title": "Lights Down Low", + "found_song": { + "artist": "MAX Featuring gnash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97bb0ab7-f630-cffd-7bc9-d171273cb9a7", + "path": "z://MP4\\Sing King Karaoke\\MAX Featuring gnash - Lights Down Low.mp4", + "title": "Lights Down Low" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Macklemore Featuring Kesha", + "playlist_title": "Good Old Days", + "found_song": { + "artist": "Macklemore Featuring Kesha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4218345-02e7-204b-825c-c08c6493a6ee", + "path": "z://MP4\\VocalStarKaraoke\\Macklemore Featuring Kesha - Good Old Days.mp4", + "title": "Good Old Days" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Blackbear", + "playlist_title": "Do Re Mi", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "c0645d87-7866-c9ab-af13-650fa03de5bc", + "path": "z://MP4\\Sing King Karaoke\\blackbear - do re mi (Karaoke Version).mp4", + "title": "do re mi" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lauv", + "playlist_title": "I Like Me Better", + "found_song": { + "artist": "Lauv", + "disabled": false, + "favorite": false, + "guid": "309b922f-f3d5-a8b1-5ed3-708d19a1e707", + "path": "z://MP4\\Sing King Karaoke\\Lauv - I Like Me Better (Karaoke Version).mp4", + "title": "I Like Me Better" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Liam Payne", + "playlist_title": "Bedroom Floor", + "found_song": { + "artist": "Liam Payne", + "disabled": false, + "favorite": false, + "guid": "d4654857-b194-0a80-d598-b032ad7b64c8", + "path": "z://MP4\\Sing King Karaoke\\Liam Payne - Bedroom Floor (Karaoke Version).mp4", + "title": "Bedroom Floor" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Maroon 5 Featuring SZA", + "playlist_title": "What Lovers Do", + "found_song": { + "artist": "Maroon 5 ft. SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8edd023-2acf-2199-863a-5ed7f2ab964e", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring SZA - What Lovers Do.mp4", + "title": "What Lovers Do" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Bebe Rexha & Florida Georgia Line", + "playlist_title": "Meant To Be", + "found_song": { + "artist": "Bebe Rexha ft. Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329dfb31-bdda-56a8-e973-14dcdd65daa1", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha & Florida Georgia Line - Meant To Be.mp4", + "title": "Meant To Be" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "G-Eazy & Halsey", + "playlist_title": "Him & I", + "found_song": { + "artist": "G-Eazy & Halsey", + "disabled": false, + "favorite": false, + "guid": "12a3a0e3-d69f-5f55-2ec9-451256184e00", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy & Halsey - Him & I (Karaoke Version).mp4", + "title": "Him & I" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Zayn Featuring Sia", + "playlist_title": "Dusk Till Dawn", + "found_song": { + "artist": "ZAYN ft. Sia", + "disabled": false, + "favorite": false, + "guid": "ffe5e14e-0221-fd9e-c191-c037ef24b03e", + "path": "z://MP4\\Sing King Karaoke\\ZAYN, Sia - Dusk Till Dawn (Karaoke Version).mp4", + "title": "Dusk Till Dawn" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Marshmello Featuring Khalid", + "playlist_title": "Silence", + "found_song": { + "artist": "Marshmello ft. Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03b6505d-56f5-9a64-4832-e3a74327d3bf", + "path": "z://MP4\\Sing King Karaoke\\Marshmello Featuring Khalid - Silence.mp4", + "title": "Silence" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Kendrick Lamar Featuring Zacari", + "playlist_title": "Love.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84feda9f-5b4f-178e-a63f-44ad65f0dd67", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - LOVE FEAT ZACARI.mp4", + "title": "LOVE. FEAT. ZACARI." + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "CNCO & Little Mix", + "playlist_title": "Reggaeton Lento (Bailemos)", + "found_song": { + "artist": "Cnco & Little Mix", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3e4ab85-0776-ab51-df4c-1e1576e393bb", + "path": "z://MP4\\Sing King Karaoke\\Cnco & Little Mix - Reggaeton Lento (Remix).mp4", + "title": "Reggaeton Lento (Remix)" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "title": "Feels Great", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Daya", + "title": "New", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 10, + "missing_count": 10, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2017 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Camila Cabello Featuring Young Thug", + "playlist_title": "Havana", + "found_song": { + "artist": "Camila Cabello Featuring Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "266f7a81-7eca-3d06-5e54-10a3a98be6fb", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello Featuring Young Thug - Havana.mp4", + "title": "Havana" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shape Of You", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "e65e5be8-f28d-7c1a-11f3-3a6408d1d09a", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shape Of You (Karaoke Version).mp4", + "title": "Shape Of You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "French Montana Featuring Swae Lee", + "playlist_title": "Unforgettable", + "found_song": { + "artist": "French Montana Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "604df22c-a3c5-f2fb-d607-c1f99d7a1fd1", + "path": "z://MP4\\Sing King Karaoke\\French Montana Featuring Swae Lee - Unforgettable.mp4", + "title": "Unforgettable" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Charlie Puth", + "playlist_title": "Attention", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "5be8908f-4826-0e3d-5e51-ea0b382c9a48", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - Attention (Karaoke Version).mp4", + "title": "Attention" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Bruno Mars", + "playlist_title": "That's What I Like", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "549fedd8-513f-eade-f0a0-1b13bb9485d5", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - That s What I Like (Karaoke Version).mp4", + "title": "That s What I Like" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Shawn Mendes", + "playlist_title": "There's Nothing Holdin' Me Back", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43731608-cb85-bd56-84c6-d4dc4501303f", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - There's Nothing Holdin' Me Back.mp4", + "title": "There's Nothing Holdin' Me Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Humble.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3069327c-f9a2-0c55-5c6f-ff03dfd472c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - HUMBLE. (Karaoke Version).mp4", + "title": "HUMBLE." + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Demi Lovato", + "playlist_title": "Tell Me You Love Me", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "ac7bc2e0-3b3f-a1b0-d288-88a365eac36d", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Tell Me You Love Me (Karaoke Version).mp4", + "title": "Tell Me You Love Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Macklemore Featuring Kesha", + "playlist_title": "Good Old Days", + "found_song": { + "artist": "Macklemore Featuring Kesha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4218345-02e7-204b-825c-c08c6493a6ee", + "path": "z://MP4\\VocalStarKaraoke\\Macklemore Featuring Kesha - Good Old Days.mp4", + "title": "Good Old Days" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "MAX Featuring gnash", + "playlist_title": "Lights Down Low", + "found_song": { + "artist": "MAX Featuring gnash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97bb0ab7-f630-cffd-7bc9-d171273cb9a7", + "path": "z://MP4\\Sing King Karaoke\\MAX Featuring gnash - Lights Down Low.mp4", + "title": "Lights Down Low" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Love So Soft", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "eeedbbff-3f9b-ea0f-e64f-a85a0d13ca6c", + "path": "z://MP4\\Karaoke Studio\\Kelly Clarkson - Love So Soft (Karaoke Version).mp4", + "title": "Love So Soft" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Cardi B", + "playlist_title": "Bodak Yellow (Money Moves)", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "094440b8-fb86-6300-5df5-a14e1e100ccc", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Bodak Yellow (Karaoke Version).mp4", + "title": "Bodak Yellow" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Maroon 5 Featuring SZA", + "playlist_title": "What Lovers Do", + "found_song": { + "artist": "Maroon 5 ft. SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8edd023-2acf-2199-863a-5ed7f2ab964e", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring SZA - What Lovers Do.mp4", + "title": "What Lovers Do" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "6ix9ine", + "playlist_title": "Gummo", + "found_song": { + "artist": "6ix9ine ft. Kanye West, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "71d0f472-d47f-6502-4970-24825cb087af", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version).mp4", + "title": "MAMA" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Migos, Nicki Minaj & Cardi B", + "playlist_title": "MotorSport", + "found_song": { + "artist": "Migos ft. Nicki Minaj, Cardi B", + "disabled": false, + "favorite": false, + "guid": "38b9203b-5721-5d21-28a9-79c2f099f1ab", + "path": "z://MP4\\Karaoke Sing Sing\\Migos ft Nicki Minaj & Cardi B - MotorSport (Karaoke Version).mp4", + "title": "MotorSport" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "G-Eazy & Halsey", + "playlist_title": "Him & I", + "found_song": { + "artist": "G-Eazy & Halsey", + "disabled": false, + "favorite": false, + "guid": "12a3a0e3-d69f-5f55-2ec9-451256184e00", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy & Halsey - Him & I (Karaoke Version).mp4", + "title": "Him & I" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Kendrick Lamar Featuring Zacari", + "playlist_title": "Love.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84feda9f-5b4f-178e-a63f-44ad65f0dd67", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - LOVE FEAT ZACARI.mp4", + "title": "LOVE. FEAT. ZACARI." + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Bebe Rexha & Florida Georgia Line", + "playlist_title": "Meant To Be", + "found_song": { + "artist": "Bebe Rexha ft. Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329dfb31-bdda-56a8-e973-14dcdd65daa1", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha & Florida Georgia Line - Meant To Be.mp4", + "title": "Meant To Be" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "playlist_title": "Despacito", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Marshmello Featuring Khalid", + "playlist_title": "Silence", + "found_song": { + "artist": "Marshmello ft. Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03b6505d-56f5-9a64-4832-e3a74327d3bf", + "path": "z://MP4\\Sing King Karaoke\\Marshmello Featuring Khalid - Silence.mp4", + "title": "Silence" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Miguel Featuring Travis Scott", + "playlist_title": "Sky Walker", + "found_song": { + "artist": "Miguel ft. Travis Scott", + "disabled": false, + "favorite": false, + "guid": "bdbfbf07-b0ad-3c14-d6cd-9132d11d707e", + "path": "z://MP4\\Sing King Karaoke\\Miguel ft. Travis Scott - Sky Walker (Karaoke Version).mp4", + "title": "Sky Walker" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Offset & Metro Boomin", + "playlist_title": "Ric Flair Drip", + "found_song": { + "artist": "Offset ft. Metro Boomin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6683f355-dcdc-b50a-10ed-058b2c8c7d01", + "path": "z://MP4\\Sing King Karaoke\\Offset & Metro Boomin - Ric Flair Drip.mp4", + "title": "Ric Flair Drip" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Post Malone Featuring Quavo", + "playlist_title": "Congratulations", + "found_song": { + "artist": "Post Malone ft. Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b4c7bf6-2bbf-f5d3-ba35-6de836849d1e", + "path": "z://MP4\\Sing King Karaoke\\Post Malone Featuring Quavo - Congratulations.mp4", + "title": "Congratulations" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Post Malone", + "playlist_title": "Candy Paint", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "N*E*R*D & Rihanna", + "playlist_title": "Lemon", + "found_song": { + "artist": "N.E.R.D. & Rihanna", + "disabled": false, + "favorite": false, + "guid": "ea3cd569-8288-2207-af9e-a06607d8bd09", + "path": "z://MP4\\Sing King Karaoke\\N.E.R.D. & Rihanna - Lemon (Karaoke Version).mp4", + "title": "Lemon" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "6ix9ine", + "playlist_title": "Kooda", + "found_song": { + "artist": "6ix9ine ft. Kanye West, Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "71d0f472-d47f-6502-4970-24825cb087af", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine ft. Kanye West & Nicki Minaj - MAMA (Karaoke Version).mp4", + "title": "MAMA" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Unforgettable", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "28e39444-6e64-ac4d-5a27-1b47f8d76447", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Grave (Karaoke Version).mp4", + "title": "Grave" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Luis Fonsi & Demi Lovato", + "playlist_title": "Echame La Culpa", + "found_song": { + "artist": "Luis Fonsi & Demi Lovato", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b80788ba-2803-8df4-6e78-281875d5e9c7", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Demi Lovato - Echame La Culpa.mp4", + "title": "Echame La Culpa" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Zayn Featuring Sia", + "playlist_title": "Dusk Till Dawn", + "found_song": { + "artist": "ZAYN ft. Sia", + "disabled": false, + "favorite": false, + "guid": "ffe5e14e-0221-fd9e-c191-c037ef24b03e", + "path": "z://MP4\\Sing King Karaoke\\ZAYN, Sia - Dusk Till Dawn (Karaoke Version).mp4", + "title": "Dusk Till Dawn" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Kodak Black", + "playlist_title": "Transportin'", + "found_song": { + "artist": "A Boogie Wit Da Hoodie, Kodak Black", + "disabled": false, + "favorite": false, + "guid": "290de127-ce4d-cddb-9d13-296ef513eb26", + "path": "z://MP4\\Sing King Karaoke\\A Boogie Wit Da Hoodie, Kodak Black - Drowning (Karaoke Version).mp4", + "title": "Drowning" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Lil Uzi Vert", + "playlist_title": "Sauce It Up", + "found_song": { + "artist": "Lil Uzi Vert", + "disabled": false, + "favorite": false, + "guid": "7a96e5b5-23af-45f8-350c-36fc6ee485bd", + "path": "z://MP4\\Sing King Karaoke\\Lil Uzi Vert - That Way (Karaoke Version).mp4", + "title": "That Way" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Becky G Featuring Bad Bunny", + "title": "Mayores", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "title": "Krippy Kush", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "title": "Bella y Sensual", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Natti Natasha x Ozuna", + "title": "Criminal", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 24, + "missing_count": 27, + "needs_manual_review": 24 + } + }, + { + "playlist_title": "2017 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kane Brown Featuring Lauren Alaina", + "playlist_title": "What Ifs", + "found_song": { + "artist": "Kane Brown Featuring Lauren Alaina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "baf2d056-5745-fdd5-d04a-aec5934e000b", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown Featuring Lauren Alaina - What Ifs.mp4", + "title": "What Ifs" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Hunt", + "playlist_title": "Body Like A Back Road", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "aafc36bd-edad-52e5-30dd-bdd993b0102a", + "path": "z://MP4\\Sing King Karaoke\\Sam Hunt - Body Like A Back Road (Karaoke Version).mp4", + "title": "Body Like A Back Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Chris Janson", + "playlist_title": "Fix A Drink", + "found_song": { + "artist": "Chris Janson", + "disabled": false, + "favorite": false, + "guid": "9a77ae8b-425b-66e3-9901-328c2f61bd60", + "path": "z://MP4\\KtvEntertainment\\Chris Janson - Fix a Drink Karaoke.mp4", + "title": "Fix a Drink" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Urban", + "playlist_title": "Female", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "28ad1988-ad9a-e768-1d98-e3355a050669", + "path": "z://MP4\\Karaoke Studio\\Keith Urban - Female (Karaoke Version).mp4", + "title": "Female" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aaron Watson", + "playlist_title": "Outta Style", + "found_song": { + "artist": "Aaron Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e20eac4a-479e-3a07-3934-d48f478d3ded", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Watson - Outta Style.mp4", + "title": "Outta Style" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Kane Brown", + "playlist_title": "Heaven", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "8cf650fe-e4c0-b840-1f42-6e31bad6c49a", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown - Heaven (Karaoke Version).mp4", + "title": "Heaven" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Brett Eldredge", + "playlist_title": "The Long Way", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "2692b3e8-3f0f-1382-cae5-ac3443b7d220", + "path": "z://MP4\\Karaoke Studio\\Brett Eldredge - The Long Way (Karaoke Version).mp4", + "title": "The Long Way" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Granger Smith", + "playlist_title": "Happens Like That", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "c9943190-809b-d585-b512-187b0eb2ce5c", + "path": "z://MP4\\Karaoke Studio\\Granger Smith - Happens Like That (Karaoke with Lyrics).mp4", + "title": "Happens Like That" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lee Brice", + "playlist_title": "Boy", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Smooth", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "c7cbfd68-b99d-773e-607f-441d5e1c776e", + "path": "z://MP4\\Karaoke Studio\\Florida Georgia Line - Smooth (Karaoke Version).mp4", + "title": "Smooth" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kane Brown", + "playlist_title": "Found You", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ab8632aa-598f-6e49-3526-65967316d37e", + "path": "z://MP4\\Karaoke Studio\\Kane Brown - Found You (Karaoke Version).mp4", + "title": "Found You" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Michael Ray", + "playlist_title": "Get To You", + "found_song": { + "artist": "Michael Ray", + "disabled": false, + "favorite": false, + "guid": "a6a35c8a-6262-05a1-847b-20db9147ed68", + "path": "z://MP4\\Karaoke Studio\\Michael Ray - Get To You (Karaoke with Lyrics).mp4", + "title": "Get To You" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darius Rucker", + "playlist_title": "For The First Time", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "guid": "86a3b590-7cd7-7c4b-b5be-c57186a82527", + "path": "z://MP4\\Karaoke Studio\\Darius Rucker - For The First Time (Karaoke with Lyrics).mp4", + "title": "For The First Time" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Little Big Town", + "playlist_title": "When Someone Stops Loving You", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "a111ab69-3582-2cf7-27f7-0845c599726c", + "path": "z://MP4\\Stingray Karaoke\\When Someone Stops Loving You Little Big Town Karaoke with Lyrics.mp4", + "title": "When Someone Stops Loving You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Bebe Rexha & Florida Georgia Line", + "playlist_title": "Meant To Be", + "found_song": { + "artist": "Bebe Rexha ft. Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329dfb31-bdda-56a8-e973-14dcdd65daa1", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha & Florida Georgia Line - Meant To Be.mp4", + "title": "Meant To Be" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Unforgettable", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "28e39444-6e64-ac4d-5a27-1b47f8d76447", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Grave (Karaoke Version).mp4", + "title": "Grave" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Legends", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Easton Corbin", + "playlist_title": "A Girl Like You", + "found_song": { + "artist": "Edwyn Collins", + "disabled": false, + "favorite": false, + "guid": "08d9b69c-6e00-7917-540d-71e696fb73d3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Girl Like You - Edwyn Collins.mp4", + "title": "A Girl Like You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Tin Man", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "43f75206-e8fd-748b-ce17-50855894e358", + "path": "z://MP4\\King of Karaoke\\Miranda Lambert - Tin Man - King of Karaoke.mp4", + "title": "Tin Man" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Midland", + "playlist_title": "Make A Little", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "1e9730db-4340-45ea-7142-da2eb5838aa1", + "path": "z://MP4\\KtvEntertainment\\Midland - Make a Little Karaoke.mp4", + "title": "Make a Little" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Big & Rich", + "playlist_title": "California", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bc83ca1-3a5c-4cc3-8da1-7cc1dd334250", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joni Mitchell - California.mp4", + "title": "California" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Chris Lane Featuring Tori Kelly", + "playlist_title": "Take Back Home Girl", + "found_song": { + "artist": "Chris Lane", + "disabled": false, + "favorite": false, + "guid": "aaaee69f-db1b-a354-d7f9-df9b7a372ef0", + "path": "z://MP4\\Karaoke Studio\\Chris Lane - Take Back Home Girl (ft. Tori Kelly) (Karaoke Version).mp4", + "title": "Take Back Home Girl" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Cole Swindell", + "playlist_title": "Stay Downtown", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Brantley Gilbert", + "playlist_title": "Ones That Like Me", + "found_song": { + "artist": "Brantley Gilbert", + "disabled": false, + "favorite": false, + "guid": "dc0f74fb-711c-dfe7-5735-d58602ed3d8b", + "path": "z://MP4\\Karaoke Studio\\Brantley Gilbert - The Ones That Like Me (Karaoke with Lyrics).mp4", + "title": "The Ones That Like Me" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "David Lee Murphy & Kenny Chesney", + "playlist_title": "Everything's Gonna Be Alright", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "7ca580a5-0c7f-ae3e-e976-e4781bd84054", + "path": "z://MP4\\King of Karaoke\\Kenny Chesney - Everything's Gonna Be Alright - King of Karaoke.mp4", + "title": "Everything's Gonna Be Alright" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Red Marlow", + "playlist_title": "The Dance", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "1ff72267-777a-5cb7-9843-5923941212ab", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Dance - Garth Brooks.mp4", + "title": "The Dance" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "New Year's Day", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cddf4c3b-ac7b-977b-a298-e7f946e493dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Best Day - Taylor Swift.mp4", + "title": "The Best Day" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Dustin Lynch", + "title": "Small Town Boy", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tim McGraw & Faith Hill", + "title": "The Rest Of Our Life", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jordan Davis", + "title": "Singles You Up", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "High Valley", + "title": "She's With Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "title": "Up Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Chase Rice", + "title": "Three Chords & The Truth", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Dylan Scott", + "title": "Hooked", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 29, + "fuzzy_match_count": 14, + "missing_count": 7, + "needs_manual_review": 14 + } + }, + { + "playlist_title": "2016 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Waste A Moment", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "cad209d7-37d8-4857-a24a-17a979ae70cb", + "path": "z://MP4\\Karaoke Sing Sing\\Kings Of Leon - Waste A Moment (Karaoke Version).mp4", + "title": "Waste A Moment" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Lumineers", + "playlist_title": "Ophelia", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "4d35e840-a495-5597-ca00-f309fff48fbd", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ophelia (Karaoke Version).mp4", + "title": "Ophelia" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Fitz And The Tantrums", + "playlist_title": "HandClap", + "found_song": { + "artist": "Fitz And The Tantrums", + "disabled": false, + "favorite": false, + "guid": "352d05f7-d8c0-034f-f76a-dbeb0c36fde6", + "path": "z://MP4\\King of Karaoke\\Fitz And The Tantrums - HandClap - King of Karaoke.mp4", + "title": "HandClap" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "twenty one pilots", + "playlist_title": "Cancer", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "8d835e62-43e1-dc8e-9434-df9f369b9e91", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Cancer (Karaoke Version).mp4", + "title": "Cancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bastille", + "playlist_title": "Good Grief", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "a16cf0b7-9f7c-4df0-58f4-b9c352ce2020", + "path": "z://MP4\\King of Karaoke\\Bastille - Good Grief - King of Karaoke.mp4", + "title": "Good Grief" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kaleo", + "playlist_title": "Way Down We Go", + "found_song": { + "artist": "Kaleo", + "disabled": false, + "favorite": false, + "guid": "5733f138-96ae-59ea-402e-da2fd17ea925", + "path": "z://MP4\\KtvEntertainment\\Kaleo - Way Down We Go Karaoke Lyrics.mp4", + "title": "Way Down We Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bishop Briggs", + "playlist_title": "River", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "d056b86a-af1c-b358-8b7a-40cea9ba399b", + "path": "z://MP4\\King of Karaoke\\Bishop Briggs - River - King of Karaoke.mp4", + "title": "River" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blink-182", + "playlist_title": "Bored To Death", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "ff7d3959-134d-f8e8-7121-5c367a0e13c3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Blink 182 - Bored to Death - SF364 - 17.mp3", + "title": "Bored to Death" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Dark Necessities", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "b7d8c55a-0212-9786-64e1-3fc8883429a0", + "path": "z://MP4\\KtvEntertainment\\Red Hot Chili Peppers - Dark Necessities Karaoke Lyrics.mp4", + "title": "Dark Necessities" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Green Day", + "playlist_title": "Bang Bang", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "93012853-2ab1-af5d-d1b6-b5998749f1d9", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Bang Bang (Karaoke Version).mp4", + "title": "Bang Bang" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Trouble", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Green Day", + "playlist_title": "Revolution Radio", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf8b1d0f-5805-89f1-2548-bd13abc7e5a1", + "path": "z://MP4\\CCKaraoke\\Green Day - Revolution Radio.mp4", + "title": "Revolution Radio" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 19, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Metallica", + "playlist_title": "Hardwired", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "77019d9d-5232-610d-b100-f4e6841b9628", + "path": "z://MP4\\KaraFun Karaoke\\One - Metallica Karaoke Version KaraFun.mp4", + "title": "One" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Beck", + "playlist_title": "Wow", + "found_song": { + "artist": "Beck", + "disabled": false, + "favorite": false, + "guid": "f95768b4-da68-60ec-015f-78e9163e8e61", + "path": "z://MP4\\KaraokeOnVEVO\\Beck - E Pro (Karaoke).mp4", + "title": "E Pro" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Skillet", + "playlist_title": "Feel Invincible", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5e78261-c38d-4e9f-161b-74f5fd2496ec", + "path": "z://CDG\\SBI\\SBI-04\\SB15471 - Muse - Invincible.mp3", + "title": "Invincible" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Head And The Heart", + "title": "All We Ever Knew", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Fray", + "title": "Singing Low", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Phantogram", + "title": "You Don't Get Me High Anymore", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 4, + "missing_count": 4, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2016 - Hot R & B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "D.R.A.M. Featuring Lil Yachty", + "playlist_title": "Broccoli", + "found_song": { + "artist": "D.R.A.M. Featuring Lil Yachty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa9e3d9b-ce3c-9529-0250-b8add07f3e29", + "path": "z://MP4\\Sing King Karaoke\\D.R.A.M. Featuring Lil Yachty - Broccoli.mp4", + "title": "Broccoli" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "For Free", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Aminé", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Drake Featuring Rihanna", + "playlist_title": "Too Good", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Usher Featuring Young Thug", + "playlist_title": "No Limit", + "found_song": { + "artist": "Usher ft. Young Thug", + "disabled": false, + "favorite": false, + "guid": "688188d9-36e7-ca07-195e-de33f73ccc8c", + "path": "z://MP4\\Karaoke Sing Sing\\Usher feat. Young Thug - No Limit (Karaoke Version).mp4", + "title": "No Limit" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Post Malone Featuring Justin Bieber", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 4, + "missing_count": 11, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2016 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Chainsmokers Featuring Halsey", + "playlist_title": "Closer", + "found_song": { + "artist": "The Chainsmokers Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f356cc1e-7e81-12cc-d369-747aa42b0412", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Halsey - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Calvin Harris Featuring Rihanna", + "playlist_title": "This Is What You Came For", + "found_song": { + "artist": "Calvin Harris Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2f5acf0-bc6e-73f3-0f93-cbc184be0915", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris Featuring Rihanna - This Is What You Came For.mp4", + "title": "This Is What You Came For" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Charlie Puth Featuring Selena Gomez", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Charlie Puth Featuring Selena Gomez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48a2880c-0d7f-13f2-97be-75ca5f35b324", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Selena Gomez - We Dont Talk Anymore.mp4", + "title": "We Don't Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "DJ Snake Featuring Justin Bieber", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "DJ Snake Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec3c8e50-91f7-7c53-391a-e6a3ba54d085", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake Featuring Justin Bieber - Let Me Love You.mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "gnash Featuring Olivia O'Brien", + "playlist_title": "I Hate U I Love U", + "found_song": { + "artist": "gnash Featuring Olivia O'Brien", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "227b53d5-4176-1d56-ed1c-ebcd0a7ca392", + "path": "z://MP4\\KaraokeOnVEVO\\gnash Featuring Olivia O'Brien - I Hate U I Love U.mp4", + "title": "I Hate U I Love U" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Major Lazer Featuring Justin Bieber & MO", + "playlist_title": "Cold Water", + "found_song": { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a37bd99c-9951-b574-ded2-ed26aa48fc72", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo - No Brainer.mp4", + "title": "No Brainer" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Sia Featuring Sean Paul", + "playlist_title": "Cheap Thrills", + "found_song": { + "artist": "Sia ft. Sean Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57877f5e-d1ed-0206-ee0e-f66b0afc679a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sia feat Sean Paul - Cheap Thrills (Remix).mp4", + "title": "Cheap Thrills" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Kiiara", + "playlist_title": "Gold", + "found_song": { + "artist": "Travie McCoy ft. Sia", + "disabled": false, + "favorite": false, + "guid": "5e3975b6-c253-361e-3837-e99024d77199", + "path": "z://MP4\\Sing King Karaoke\\Travie McCoy ft. Sia - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Drake Featuring Rihanna", + "playlist_title": "Too Good", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Daya", + "playlist_title": "Sit Still, Look Pretty", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "6d399a45-e878-99e4-5a0b-79d356d2b4c0", + "path": "z://MP4\\Sing King Karaoke\\Daya - Sit Still, Look Pretty (Karaoke Version).mp4", + "title": "Sit Still, Look Pretty (Karaoke Version)" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 7, + "missing_count": 0, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2016 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Dierks Bentley Featuring Elle King", + "playlist_title": "Different For Girls", + "found_song": { + "artist": "Dierks Bentley Featuring Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cac1bb8e-54e3-4552-865b-9014ac8559d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Elle King - Different For Girls.mp4", + "title": "Different For Girls" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Florida Georgia Line Featuring Tim McGraw", + "playlist_title": "May We All", + "found_song": { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84803f89-e341-6a16-038b-96d21682c081", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line Featuring Tim McGraw - May We All.mp4", + "title": "May We All" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jason Aldean", + "playlist_title": "Lights Come On", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "c4940a37-bf90-38da-3006-f590932ca21b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Lights Come On Karaoke Lyrics.mp4", + "title": "Lights Come On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Church Bells", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2fb127d9-b8ab-384a-e9d1-817210938d39", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Church Bells Karaoke Lyrics.mp4", + "title": "Church Bells" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Old Dominion", + "playlist_title": "Song For Another Time", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "4f23529f-5e04-5b37-a3e0-c59435612402", + "path": "z://MP4\\KtvEntertainment\\Old Dominion - Song for Another Time Karaoke Lyrics.mp4", + "title": "Song for Another Time" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Wanna Be That Song", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "198e8564-3efa-a31a-8f36-a29d06b2fcdc", + "path": "z://MP4\\King of Karaoke\\Brett Eldredge - Wanna Be That Song - King of Karaoke.mp4", + "title": "Wanna Be That Song" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tim McGraw", + "playlist_title": "How I'll Always Be", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "d869240f-5d69-1914-1b16-4ce620577f16", + "path": "z://MP4\\KtvEntertainment\\Tim McGraw - How I'll Always Be Karaoke Lyrics.mp4", + "title": "How I'll Always Be" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Vice", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "449edd17-4b49-8032-f4c8-8872a8ba4cdb", + "path": "z://MP4\\Stingray Karaoke\\Vice Miranda Lambert Karaoke with Lyrics.mp4", + "title": "Vice" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Jason Aldean", + "playlist_title": "A Little More Summertime", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "ebbaae7e-00d7-8c27-4d62-6c1f3d9d84ff", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Take A Little Ride (Karaoke without Vocal).mp4", + "title": "Take A Little Ride" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Maren Morris", + "playlist_title": "80s Mercedes", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "36c6ad47-709e-8c16-fb6c-ea7f6c6bbbcd", + "path": "z://MP4\\King of Karaoke\\Maren Morris - 80's Mercedes - King of Karaoke.mp4", + "title": "80's Mercedes" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Castaway", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc147dd9-db98-e9d7-ec55-e224b034d4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Castaway.mp4", + "title": "Castaway" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 5, + "missing_count": 3, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2016 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Chainsmokers Featuring Halsey", + "playlist_title": "Closer", + "found_song": { + "artist": "The Chainsmokers Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f356cc1e-7e81-12cc-d369-747aa42b0412", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Halsey - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Chainsmokers Featuring Daya", + "playlist_title": "Don't Let Me Down", + "found_song": { + "artist": "The Chainsmokers Featuring Daya", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36eeb7f0-b717-d583-3b1d-5e62f6b60a9d", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Daya - Dont Let Me Down.mp4", + "title": "Don't Let Me Down" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "DJ Snake Featuring Justin Bieber", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "DJ Snake Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec3c8e50-91f7-7c53-391a-e6a3ba54d085", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake Featuring Justin Bieber - Let Me Love You.mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Calvin Harris Featuring Rihanna", + "playlist_title": "This Is What You Came For", + "found_song": { + "artist": "Calvin Harris Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2f5acf0-bc6e-73f3-0f93-cbc184be0915", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris Featuring Rihanna - This Is What You Came For.mp4", + "title": "This Is What You Came For" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "D.R.A.M. Featuring Lil Yachty", + "playlist_title": "Broccoli", + "found_song": { + "artist": "D.R.A.M. Featuring Lil Yachty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa9e3d9b-ce3c-9529-0250-b8add07f3e29", + "path": "z://MP4\\Sing King Karaoke\\D.R.A.M. Featuring Lil Yachty - Broccoli.mp4", + "title": "Broccoli" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Charlie Puth Featuring Selena Gomez", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Charlie Puth Featuring Selena Gomez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48a2880c-0d7f-13f2-97be-75ca5f35b324", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Selena Gomez - We Dont Talk Anymore.mp4", + "title": "We Don't Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Gaga", + "playlist_title": "Perfect Illusion", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "9a283ade-da99-10cf-4ce6-0ab3d2e741dc", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Perfect Illusion (Karaoke Version).mp4", + "title": "Perfect Illusion" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "gnash Featuring Olivia O'Brien", + "playlist_title": "I Hate U I Love U", + "found_song": { + "artist": "gnash Featuring Olivia O'Brien", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "227b53d5-4176-1d56-ed1c-ebcd0a7ca392", + "path": "z://MP4\\KaraokeOnVEVO\\gnash Featuring Olivia O'Brien - I Hate U I Love U.mp4", + "title": "I Hate U I Love U" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "For Free", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Flume Featuring Kai", + "playlist_title": "Never Be Like You", + "found_song": { + "artist": "Flume Featuring Kai", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7451b951-591e-7c03-ce60-87c8783266d6", + "path": "z://MP4\\Sing King Karaoke\\Flume Featuring Kai - Never Be Like You.mp4", + "title": "Never Be Like You" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "P!nk", + "playlist_title": "Just Like Fire", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5bca412-08d4-c811-1299-6869c11545b2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Just Like Fire.mp4", + "title": "Just Like Fire" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Dierks Bentley Featuring Elle King", + "playlist_title": "Different For Girls", + "found_song": { + "artist": "Dierks Bentley Featuring Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cac1bb8e-54e3-4552-865b-9014ac8559d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Elle King - Different For Girls.mp4", + "title": "Different For Girls" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Mike Posner", + "playlist_title": "I Took A Pill In Ibiza", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "94722783-fde9-b881-ca28-ffaa2e8ace7d", + "path": "z://MP4\\King of Karaoke\\Mike Posner - I Took A Pill In Ibiza - King of Karaoke.mp4", + "title": "I Took A Pill In Ibiza" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Future Featuring The Weeknd", + "playlist_title": "Low Life", + "found_song": { + "artist": "Future Featuring The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9cbd6719-5003-b918-69e5-a712ebf1f55b", + "path": "z://MP4\\Sing King Karaoke\\Future Featuring The Weeknd - Low Life.mp4", + "title": "Low Life" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lukas Graham", + "playlist_title": "7 Years", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "1abdfb9a-3f16-49da-20fa-27c018e7afda", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - 7 Years (Karaoke Version).mp4", + "title": "7 Years" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Me Too", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8ce83ac-a9c0-a16c-d165-eb1f89e1e11d", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Me Too.mp4", + "title": "Me Too" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Alessia Cara", + "playlist_title": "Scars To Your Beautiful", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "e89f04fa-a5fb-a7ce-e044-242f5f102df2", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Scars To Your Beautiful (Karaoke Version).mp4", + "title": "Scars To Your Beautiful" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Katy Perry", + "playlist_title": "Rise", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "2c2eed9b-e4fc-1402-e226-60b0c6abbe5a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Rise (Karaoke Version).mp4", + "title": "Rise" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Florida Georgia Line Featuring Tim McGraw", + "playlist_title": "May We All", + "found_song": { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84803f89-e341-6a16-038b-96d21682c081", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line Featuring Tim McGraw - May We All.mp4", + "title": "May We All" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Beyonce", + "playlist_title": "Hold Up", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "4369e9b3-383d-bedc-000a-cfe851d157cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Beyonce - Hold Up - SF364 - 04.mp3", + "title": "Hold Up" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chris Brown", + "playlist_title": "Grass Ain't Greener", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "d52b28d1-c381-257c-e387-84a9a3ab1466", + "path": "z://MP4\\KtvEntertainment\\Chris Brown - Grass Ain't Greener (Karaoke without Vocal).mp4", + "title": "Grass Ain't Greener" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Major Lazer Featuring Justin Bieber & MO", + "playlist_title": "Cold Water", + "found_song": { + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a37bd99c-9951-b574-ded2-ed26aa48fc72", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo - No Brainer.mp4", + "title": "No Brainer" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Sia Featuring Sean Paul", + "playlist_title": "Cheap Thrills", + "found_song": { + "artist": "Sia ft. Sean Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57877f5e-d1ed-0206-ee0e-f66b0afc679a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sia feat Sean Paul - Cheap Thrills (Remix).mp4", + "title": "Cheap Thrills" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Drake Featuring Rihanna", + "playlist_title": "Too Good", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Kiiara", + "playlist_title": "Gold", + "found_song": { + "artist": "Travie McCoy ft. Sia", + "disabled": false, + "favorite": false, + "guid": "5e3975b6-c253-361e-3837-e99024d77199", + "path": "z://MP4\\Sing King Karaoke\\Travie McCoy ft. Sia - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Sia Featuring Kendrick Lamar", + "playlist_title": "The Greatest", + "found_song": { + "artist": "Sia ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c69f8d8-afff-fe2a-9f8f-a87916a2e1aa", + "path": "z://MP4\\KaraokeOnVEVO\\Sia Featuring Kendrick Lamar - The Greatest.mp4", + "title": "The Greatest" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Daya", + "playlist_title": "Sit Still, Look Pretty", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "6d399a45-e878-99e4-5a0b-79d356d2b4c0", + "path": "z://MP4\\Sing King Karaoke\\Daya - Sit Still, Look Pretty (Karaoke Version).mp4", + "title": "Sit Still, Look Pretty (Karaoke Version)" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Hailee Steinfeld & Grey Featuring Zedd", + "playlist_title": "Starving", + "found_song": { + "artist": "Hailee Steinfeld ft. Grey, Zedd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0c57b0e-cfd0-80e1-1cd8-aafa1a35684b", + "path": "z://MP4\\Sing King Karaoke\\Hailee Steinfeld & Grey Featuring Zedd - Starving.mp4", + "title": "Starving" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Fifth Harmony Featuring Ty Dolla $ign", + "playlist_title": "Work From Home", + "found_song": { + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d57b87ee-796e-89fc-6297-051df54e4c9e", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony Featuring Ty Dolla $ign - Work From Home.mp4", + "title": "Work From Home" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Usher Featuring Young Thug", + "playlist_title": "No Limit", + "found_song": { + "artist": "Usher ft. Young Thug", + "disabled": false, + "favorite": false, + "guid": "688188d9-36e7-ca07-195e-de33f73ccc8c", + "path": "z://MP4\\Karaoke Sing Sing\\Usher feat. Young Thug - No Limit (Karaoke Version).mp4", + "title": "No Limit" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Rihanna Featuring Drake", + "playlist_title": "Work", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Martin Garrix & Bebe Rexha", + "playlist_title": "In The Name Of Love", + "found_song": { + "artist": "Martin Garrix ft. Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "b383f050-81dd-568d-7f3b-fb89fa9f1050", + "path": "z://MP4\\Sing King Karaoke\\Martin Garrix & Bebe Rexha - In The Name Of Love (Karaoke Version).mp4", + "title": "In The Name Of Love" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Fifth Harmony Featuring Fetty Wap", + "playlist_title": "All In My Head (Flex)", + "found_song": { + "artist": "Fifth Harmony Featuring Fetty Wap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69f71ae8-afe2-19d5-ed92-fbd77116be98", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony Featuring Fetty Wap - All In My Head (Flex.mp4", + "title": "All In My Head (Flex)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Vice", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "449edd17-4b49-8032-f4c8-8872a8ba4cdb", + "path": "z://MP4\\Stingray Karaoke\\Vice Miranda Lambert Karaoke with Lyrics.mp4", + "title": "Vice" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Jason Aldean", + "playlist_title": "A Little More Summertime", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "ebbaae7e-00d7-8c27-4d62-6c1f3d9d84ff", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Take A Little Ride (Karaoke without Vocal).mp4", + "title": "Take A Little Ride" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Amin�", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Post Malone Featuring Justin Bieber", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Britney Spears Featuring G-Eazy", + "playlist_title": "Make Me...", + "found_song": { + "artist": "Britney Spears ft. G-Eazy", + "disabled": false, + "favorite": false, + "guid": "0ae2117d-3c53-0990-f8cf-3d92702a111c", + "path": "z://MP4\\Karaoke Sing Sing\\Britney Spears Feat. G-Eazy - Make Me (Karaoke Version).mp4", + "title": "Make Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Skrillex & Rick Ross", + "playlist_title": "Purple Lamborghini", + "found_song": { + "artist": "Skrillex", + "disabled": false, + "favorite": false, + "guid": "f46f53f4-d07d-a817-93ae-ef927448a147", + "path": "z://MP4\\KtvEntertainment\\Skrillex - Purple Lamborghini Karaoke Lyrics.mp4", + "title": "Purple Lamborghini" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Lil Yachty", + "playlist_title": "1 Night", + "found_song": { + "artist": "KYLE ft. Lil Yachty", + "disabled": false, + "favorite": false, + "guid": "fb6d6600-3fc3-9f90-71ed-464f7655ce95", + "path": "z://MP4\\Sing King Karaoke\\KYLE ft. Lil Yachty - iSpy (Karaoke Version).mp4", + "title": "iSpy" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Drake", + "playlist_title": "Childs Play", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "c1c4165b-0d00-67c5-8a91-961110ae468e", + "path": "z://MP4\\Sing King Karaoke\\Drake - God's Plan (Karaoke Version).mp4", + "title": "God's Plan" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Rae Sremmurd Featuring Gucci Mane", + "playlist_title": "Black Beatles", + "found_song": { + "artist": "Rae Sremmurd", + "disabled": false, + "favorite": false, + "guid": "8deb2a82-306b-f402-ee00-d1defe64fd3c", + "path": "z://MP4\\Sing King Karaoke\\Rae Sremmurd - Black Beatles (Karaoke Version).mp4", + "title": "Black Beatles" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "French Montana Featuring Drake", + "playlist_title": "No Shopping", + "found_song": { + "artist": "French Montana Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "604df22c-a3c5-f2fb-d607-c1f99d7a1fd1", + "path": "z://MP4\\Sing King Karaoke\\French Montana Featuring Swae Lee - Unforgettable.mp4", + "title": "Unforgettable" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Lil Uzi Vert", + "playlist_title": "You Was Right", + "found_song": { + "artist": "Juice WRLD ft. Lil Uzi Vert", + "disabled": false, + "favorite": false, + "guid": "4374cdfd-773a-410c-3a7f-0a5dae70954d", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD ft. Lil Uzi Vert - Wasted (Karaoke Version).mp4", + "title": "Wasted" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Grace Featuring G-Eazy", + "playlist_title": "You Don't Own Me", + "found_song": { + "artist": "Grace ft. G-Eazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "511cb111-743d-c732-8c4a-f42acddf7d02", + "path": "z://MP4\\Sing King Karaoke\\Grace Featuring G-Eazy - You Don't Own Me.mp4", + "title": "You Don't Own Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 19, + "artist": "Ariana Grande Featuring Nicki Minaj", + "title": "Side To Side", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Marc E. Bassy Featuring G-Eazy", + "title": "You & Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "YG Featuring Drake & Kamaiyah", + "title": "Why You Always Hatin?", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "title": "Too Much Sauce", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "PARTYNEXTDOOR Featuring Drake", + "title": "Come And See Me", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wale", + "title": "My PYT", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jake Owen", + "title": "American Country Love Song", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Nicky Jam", + "title": "With You Tonight / Hasta El Amanecer", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "title": "Wishing", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "title": "Do You Mind", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "21 Savage & Metro Boomin Featuring Future", + "title": "X", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 48, + "fuzzy_match_count": 27, + "missing_count": 25, + "needs_manual_review": 27 + } + }, + { + "playlist_title": "2015 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Fetty Wap Featuring Remy Boyz", + "playlist_title": "679", + "found_song": { + "artist": "Fetty Wap Featuring Remy Boyz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae00e365-7288-44e4-1275-f6eb4d0a5629", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Remy Boyz - 679.mp4", + "title": "679" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Fetty Wap Featuring Monty", + "playlist_title": "My Way", + "found_song": { + "artist": "Fetty Wap Featuring Monty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6404500f-258a-087b-6e7d-c732c679c5a8", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Monty - My Way.mp4", + "title": "My Way" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Drake & Future", + "playlist_title": "Jumpman", + "found_song": { + "artist": "Drake & Future", + "disabled": false, + "favorite": false, + "guid": "5a190a47-4bd1-a18c-92f0-3d0fd3a0db07", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF357\\Drake & Future - Jumpman - SF357 - 06.mp3", + "title": "Jumpman" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Post Malone", + "playlist_title": "White Iverson", + "found_song": { + "artist": "Justin Bieber ft. Post Malone & Clever", + "disabled": false, + "favorite": false, + "guid": "f908a0cd-2d8c-a2c0-74df-896580bf83a9", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Post Malone & Clever - Forever (Karaoke Version).mp4", + "title": "Forever" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Tory Lanez", + "playlist_title": "Say It", + "found_song": { + "artist": "Cashmere Cat ft. Major Lazer, Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "25fa8224-df72-92b2-c9e2-69c487fe0195", + "path": "z://MP4\\Sing King Karaoke\\Cashmere Cat, Major Lazer & Tory Lanez - Miss You (Karaoke Version).mp4", + "title": "Miss You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Fetty Wap", + "playlist_title": "Again", + "found_song": { + "artist": "Fetty Wap ft. Remy Boyz", + "disabled": false, + "favorite": false, + "guid": "dbf685cd-46c5-8be7-bf17-49bf269da968", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap ft. Remy Boyz - 679 (Karaoke Version).mp4", + "title": "679" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Exchange", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Drake", + "playlist_title": "Back To Back", + "found_song": { + "artist": "Beyoncé ft. Andre 3000", + "disabled": false, + "favorite": false, + "guid": "55eb2f13-e354-4dc1-cee3-29602e5ec53d", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé and Andre 3000 - Back To Black (Karaoke Version).mp4", + "title": "Back To Black" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Young Thug", + "playlist_title": "Best Friend", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "guid": "fca7b979-582b-5c36-a043-fc189e43bc89", + "path": "z://MP4\\KaraokeOnVEVO\\Brandy - Best Friend (Karaoke).mp4", + "title": "Best Friend" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 8, + "missing_count": 8, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2015 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Plush", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Uma Thurman", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "f182f5bf-fdc9-f83b-4fc3-8cc8b8fb7156", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Uma Thurman (Karaoke Version).mp4", + "title": "Uma Thurman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Interstate Love Song", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c310d8b-b8ef-2f7a-c9e9-d92289e70168", + "path": "z://MP4\\VocalStarKaraoke\\Stone Temple Pilots - Interstate Love Song.mp4", + "title": "Interstate Love Song" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "James Bay", + "playlist_title": "Let It Go", + "found_song": { + "artist": "James Bay", + "disabled": false, + "favorite": false, + "guid": "22477687-4e1d-d712-226f-bd4804a20576", + "path": "z://MP4\\Sing King Karaoke\\James Bay - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Coldplay", + "playlist_title": "Everglow", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "c0fd55aa-59f1-ccba-69bc-7a319562be9b", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Everglow SING SING KARAOKE (2).mp4", + "title": "Everglow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Emperor's New Clothes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f26dea3c-f8d7-1d91-43f4-21bc960129a9", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Emperor s New Clothes (Karaoke Version).mp4", + "title": "Emperor s New Clothes" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Coleman Hell", + "playlist_title": "2 Heads", + "found_song": { + "artist": "Coleman Hell", + "disabled": false, + "favorite": false, + "guid": "9282dd1b-e31d-a629-ca08-6e73b5d75e1f", + "path": "z://MP4\\KtvEntertainment\\Coleman Hell - 2 Heads Karaoke Lyrics.mp4", + "title": "2 Heads" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Victorious", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "8f9934c9-345b-f590-6972-08e07ad4172f", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Victorious (Karaoke Version).mp4", + "title": "Victorious" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Vance Joy", + "playlist_title": "Fire And The Flood", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "guid": "bed78baa-c635-684e-8e82-373df3d64cca", + "path": "z://MP4\\KtvEntertainment\\Vance Joy - Fire And The Flood Karaoke Lyrics.mp4", + "title": "Fire And The Flood" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Throne", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef1de65-f7e7-95ed-9b6f-838cd0b0e15e", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Throne.mp4", + "title": "Throne" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Disturbed", + "playlist_title": "The Light", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "95293349-45e4-d019-b487-f2a5c3e76acf", + "path": "z://MP4\\KtvEntertainment\\Disturbed - The Light Karaoke Lyrics.mp4", + "title": "The Light" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Creep", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Mess Around", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Shinedown", + "playlist_title": "Cut The Cord", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2594b2d-2896-5355-5333-f670ad055249", + "path": "z://CDG\\SBI\\SBI-03\\SB20352 - Shinedown - Devour.mp3", + "title": "Devour" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Nathaniel Rateliff & The Night Sweats", + "title": "S.O.B.", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Death Cab For Cutie", + "title": "The Ghosts Of Beverly Drive", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 3, + "missing_count": 2, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2015 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Chainsmokers Featuring ROZES", + "playlist_title": "Roses", + "found_song": { + "artist": "The Chainsmokers Featuring ROZES", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7b168f1-1ab3-d7da-abaf-8d94d7818bc2", + "path": "z://MP4\\KaraokeOnVEVO\\The Chainsmokers Featuring ROZES - Roses.mp4", + "title": "Roses" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Meghan Trainor Featuring John Legend", + "playlist_title": "Like I'm Gonna Lose You", + "found_song": { + "artist": "Meghan Trainor ft. John Legend", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8069b2b-7e5f-759b-55bc-da4d3fd65738", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor Featuring John Legend - Like Im Gonna Lose You.mp4", + "title": "Like I'm Gonna Lose You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "I Know What You Did Last Summer", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "03da8e9b-ed33-5fdb-877f-3563bbb64edc", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version).mp4", + "title": "I Know What You Did Last Summer" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 4, + "missing_count": 0, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2015 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Chris Young", + "playlist_title": "I'm Comin' Over", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "88b4e560-332f-21d8-e422-af643886485c", + "path": "z://MP4\\KtvEntertainment\\Chris Young - I'm Comin' Over Karaoke Lyrics.mp4", + "title": "I'm Comin' Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Tennessee Whiskey", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d709564-c81f-c9d0-98c1-8e840dda4810", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - Tennessee Whiskey (Karaoke Version).mp4", + "title": "Tennessee Whiskey" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eric Church", + "playlist_title": "Mr. Misunderstood", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6299265f-42fd-3d2d-b6d8-8b7db5e32606", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - Mr Misunderstood.mp4", + "title": "Mr. Misunderstood" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Keith Urban", + "playlist_title": "Break On Me.", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1580035c-5e84-7d7c-44c2-92358c41ae49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Break On Me - Keith Urban.mp4", + "title": "Break On Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Blake Shelton", + "playlist_title": "Gonna", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "b4431fb0-ef62-57a0-babb-0fcc6d450c84", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Home.mp3", + "title": "Home" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Jana Kramer", + "playlist_title": "I Got The Boy", + "found_song": { + "artist": "Jana Kramer", + "disabled": false, + "favorite": false, + "guid": "09042bba-cd2e-77e7-3ea9-863addabf334", + "path": "z://MP4\\Karaoke Studio\\I've Done Love (In the Style of Jana Kramer) Karaoke with Lyrics.mp4", + "title": "I've Done Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Tim McGraw", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Brandy & Mase", + "disabled": false, + "favorite": false, + "guid": "b1ef0828-7daf-40aa-c423-bd41a4e8886d", + "path": "z://MP4\\Let's Sing Karaoke\\Brandy & Mase - Top Of The World (Karaoke & Lyrics).mp4", + "title": "Top Of The World" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Brad Paisley", + "playlist_title": "Country Nation", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e42d07-74dc-9d0e-9a92-10287b97963d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - This Is Country Music.mp4", + "title": "This Is Country Music" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Save It For A Rainy Day", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d30f1d2d-a8b3-b21c-7243-480d11c756c7", + "path": "z://CDG\\Various\\Kenny Chesney - Living In Fast Forward.mp3", + "title": "Living In Fast Forward" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Randy Houser", + "title": "We Went", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Emily Ann Roberts", + "title": "9 To 5", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 7, + "missing_count": 5, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2015 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Justin Bieber", + "playlist_title": "Love Yourself", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "7a08a1bc-cd76-6cb3-a6c6-e13e0d06dab7", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Love Yourself (Karaoke Version).mp4", + "title": "Love Yourself" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Fetty Wap Featuring Remy Boyz", + "playlist_title": "679", + "found_song": { + "artist": "Fetty Wap Featuring Remy Boyz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae00e365-7288-44e4-1275-f6eb4d0a5629", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Remy Boyz - 679.mp4", + "title": "679" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fetty Wap", + "playlist_title": "Trap Queen", + "found_song": { + "artist": "Fetty Wap", + "disabled": false, + "favorite": false, + "guid": "5767dfb9-338f-32b2-d567-3904fc950fde", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap - Trap Queen (Karaoke Version).mp4", + "title": "Trap Queen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "The Chainsmokers Featuring ROZES", + "playlist_title": "Roses", + "found_song": { + "artist": "The Chainsmokers Featuring ROZES", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7b168f1-1ab3-d7da-abaf-8d94d7818bc2", + "path": "z://MP4\\KaraokeOnVEVO\\The Chainsmokers Featuring ROZES - Roses.mp4", + "title": "Roses" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "R. City Featuring Adam Levine", + "playlist_title": "Locked Away", + "found_song": { + "artist": "R. City Featuring Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df18f5fe-3a4b-9b71-00bf-23caed979ea3", + "path": "z://MP4\\KaraokeOnVEVO\\R. City Featuring Adam Levine - Locked Away.mp4", + "title": "Locked Away" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "OMI", + "playlist_title": "Cheerleader", + "found_song": { + "artist": "Omi", + "disabled": false, + "favorite": false, + "guid": "c540b934-5f5f-3a71-b7d3-d6e741719be8", + "path": "z://MP4\\King of Karaoke\\Omi - Cheerleader - King of Karaoke.mp4", + "title": "Cheerleader" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Drag Me Down", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "be1e4656-c769-4e82-4855-ce8d4bd255e1", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Drag Me Down (Karaoke Version).mp4", + "title": "Drag Me Down" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Justin Bieber", + "playlist_title": "I'll Show You", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "53f8885e-3935-fceb-f17b-609be590152e", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - I ll Show You (Karaoke Version).mp4", + "title": "I ll Show You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Flo Rida", + "playlist_title": "My House", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "169f563c-d4fc-a25c-ed64-16fb2ca8c960", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - My House (Karaoke Version).mp4", + "title": "My House" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Used To Love You", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "60195f13-45b7-2885-a108-7fd529c1db28", + "path": "z://MP4\\King of Karaoke\\Gwen Stefani - Used To Love You - King of Karaoke.mp4", + "title": "Used To Love You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rachel Platten", + "playlist_title": "Stand By You", + "found_song": { + "artist": "Rachel Platten", + "disabled": false, + "favorite": false, + "guid": "815dbc1d-b6d5-16a9-4869-dd16da4c443c", + "path": "z://MP4\\Sing King Karaoke\\Rachel Platten - Stand By You (Karaoke Version).mp4", + "title": "Stand By You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "DNCE", + "playlist_title": "Cake By The Ocean", + "found_song": { + "artist": "DNCE", + "disabled": false, + "favorite": false, + "guid": "c89e0315-b92a-f48b-71ae-4fbfce369616", + "path": "z://MP4\\Sing King Karaoke\\DNCE - Cake By The Ocean (Karaoke Version).mp4", + "title": "Cake By The Ocean" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Justin Bieber Featuring Halsey", + "playlist_title": "The Feeling", + "found_song": { + "artist": "Justin Bieber Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca00629e-16c4-ec1a-281c-05537a3db246", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Halsey - The Feeling.mp4", + "title": "The Feeling" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Charlie Puth", + "playlist_title": "One Call Away", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "6b486886-19ab-1362-d2f3-a708badcdece", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - One Call Away (Karaoke Version).mp4", + "title": "One Call Away" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Selena Gomez", + "playlist_title": "Hands To Myself", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "efe55fee-38b6-5f30-9f10-771e89ba1963", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Hands To Myself (Karaoke Version).mp4", + "title": "Hands To Myself" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Adele", + "playlist_title": "When We Were Young", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "beef5188-21b8-62c6-1927-ceb10997e319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When We Were Young - Adele.mp4", + "title": "When We Were Young" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Justin Bieber", + "playlist_title": "Purpose", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1cf6aa40-aec6-2ec4-081d-b6ea7371c784", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Purpose (Karaoke Version).mp4", + "title": "Purpose" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Dawin", + "playlist_title": "Dessert", + "found_song": { + "artist": "Dawin", + "disabled": false, + "favorite": false, + "guid": "cbf6cf3b-0bb3-75da-738d-e7e125062236", + "path": "z://MP4\\Sing King Karaoke\\Dawin - Dessert (Karaoke Version).mp4", + "title": "Dessert" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mark My Words", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "f6f92ea6-2e33-f115-fde6-8b7cf08c9f57", + "path": "z://MP4\\Karaoke Sing Sing\\Justin Bieber - Mark My Words (Karaoke Version) (2).mp4", + "title": "Mark My Words" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Justin Bieber", + "playlist_title": "Company", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "93f7481f-6143-ff0c-fdb9-7223e31bf286", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Company (Karaoke Version).mp4", + "title": "Company" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Meghan Trainor Featuring John Legend", + "playlist_title": "Like I'm Gonna Lose You", + "found_song": { + "artist": "Meghan Trainor ft. John Legend", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8069b2b-7e5f-759b-55bc-da4d3fd65738", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor Featuring John Legend - Like Im Gonna Lose You.mp4", + "title": "Like I'm Gonna Lose You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Drake & Future", + "playlist_title": "Jumpman", + "found_song": { + "artist": "Drake & Future", + "disabled": false, + "favorite": false, + "guid": "5a190a47-4bd1-a18c-92f0-3d0fd3a0db07", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF357\\Drake & Future - Jumpman - SF357 - 06.mp3", + "title": "Jumpman" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Jordan Smith", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen ft. George Michael", + "disabled": false, + "favorite": false, + "guid": "e3a4c1ab-3b08-507e-2a2e-68dce24c12cd", + "path": "z://MP4\\Stingray Karaoke\\Somebody To Love Queen & George Michael Karaoke with Lyrics.mp4", + "title": "Somebody To Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Post Malone", + "playlist_title": "White Iverson", + "found_song": { + "artist": "Justin Bieber ft. Post Malone & Clever", + "disabled": false, + "favorite": false, + "guid": "f908a0cd-2d8c-a2c0-74df-896580bf83a9", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Post Malone & Clever - Forever (Karaoke Version).mp4", + "title": "Forever" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Silento", + "playlist_title": "Watch Me", + "found_song": { + "artist": "Silento", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "a53f2732-b795-e1ab-3712-e744569aeeee", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF354\\Silento - Watch Me (Whip - SF354 - 13.mp3", + "title": "Watch Me (Whip" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Tory Lanez", + "playlist_title": "Say It", + "found_song": { + "artist": "Cashmere Cat ft. Major Lazer, Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "25fa8224-df72-92b2-c9e2-69c487fe0195", + "path": "z://MP4\\Sing King Karaoke\\Cashmere Cat, Major Lazer & Tory Lanez - Miss You (Karaoke Version).mp4", + "title": "Miss You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Skrillex & Diplo With Justin Bieber", + "playlist_title": "Where Are U Now", + "found_song": { + "artist": "Skrillex ft. Diplo, Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25feafb7-273f-150b-f00b-bc82820074a0", + "path": "z://MP4\\Sing King Karaoke\\Skrillex & Diplo With Justin Bieber - Where Are U Now.mp4", + "title": "Where Are U Now" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Selena Gomez Featuring A$AP Rocky", + "playlist_title": "Good For You", + "found_song": { + "artist": "Selena Gomez ft. A$AP Rocky", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e8e2c9c-ad40-9631-b2ac-a3139a1b3e49", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez Featuring A$AP Rocky - Good For You.mp4", + "title": "Good For You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Wiz Khalifa Featuring Charlie Puth", + "playlist_title": "See You Again", + "found_song": { + "artist": "Wiz Khalifa ft. Charlie Puth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b7aef99-c6c0-706e-5ff1-01fa46d0a6ce", + "path": "z://MP4\\Sing King Karaoke\\Wiz Khalifa Feat. Charlie Puth - See You Again.mp4", + "title": "See You Again" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Fetty Wap", + "playlist_title": "Again", + "found_song": { + "artist": "Fetty Wap ft. Remy Boyz", + "disabled": false, + "favorite": false, + "guid": "dbf685cd-46c5-8be7-bf17-49bf269da968", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap ft. Remy Boyz - 679 (Karaoke Version).mp4", + "title": "679" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "I Know What You Did Last Summer", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "03da8e9b-ed33-5fdb-877f-3563bbb64edc", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version).mp4", + "title": "I Know What You Did Last Summer" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Exchange", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "Gonna", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "b4431fb0-ef62-57a0-babb-0fcc6d450c84", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Home.mp3", + "title": "Home" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Rudimental Featuring Ed Sheeran", + "playlist_title": "Lay It All On Me", + "found_song": { + "artist": "Rudimental ft. Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fa97270-a07a-4c67-1e69-2f562c2e72ad", + "path": "z://MP4\\sing2karaoke\\Rudimental Feat. Ed Sheeran - Lay It All On Me.mp4", + "title": "Lay It All On Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Drake", + "playlist_title": "Back To Back", + "found_song": { + "artist": "Beyoncé ft. Andre 3000", + "disabled": false, + "favorite": false, + "guid": "55eb2f13-e354-4dc1-cee3-29602e5ec53d", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé and Andre 3000 - Back To Black (Karaoke Version).mp4", + "title": "Back To Black" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Jana Kramer", + "playlist_title": "I Got The Boy", + "found_song": { + "artist": "Jana Kramer", + "disabled": false, + "favorite": false, + "guid": "09042bba-cd2e-77e7-3ea9-863addabf334", + "path": "z://MP4\\Karaoke Studio\\I've Done Love (In the Style of Jana Kramer) Karaoke with Lyrics.mp4", + "title": "I've Done Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Young Thug", + "playlist_title": "Best Friend", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "guid": "fca7b979-582b-5c36-a043-fc189e43bc89", + "path": "z://MP4\\KaraokeOnVEVO\\Brandy - Best Friend (Karaoke).mp4", + "title": "Best Friend" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Tim McGraw", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Brandy & Mase", + "disabled": false, + "favorite": false, + "guid": "b1ef0828-7daf-40aa-c423-bd41a4e8886d", + "path": "z://MP4\\Let's Sing Karaoke\\Brandy & Mase - Top Of The World (Karaoke & Lyrics).mp4", + "title": "Top Of The World" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Rae Sremmurd", + "playlist_title": "Come Get Her", + "found_song": { + "artist": "Rae Sremmurd", + "disabled": false, + "favorite": false, + "guid": "8deb2a82-306b-f402-ee00-d1defe64fd3c", + "path": "z://MP4\\Sing King Karaoke\\Rae Sremmurd - Black Beatles (Karaoke Version).mp4", + "title": "Black Beatles" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Halsey", + "playlist_title": "New Americana", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7dceb98b-93f2-8b87-8801-06b8a0078261", + "path": "z://MP4\\Sing King Karaoke\\Halsey - New Americana (Karaoke Version).mp4", + "title": "New Americana (Karaoke Version)" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Drake", + "playlist_title": "Right Hand", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "1d498863-f846-4763-becb-956fceee73aa", + "path": "z://MP4\\Sing King Karaoke\\Drake - Signs (Karaoke Version).mp4", + "title": "Signs" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "G-Eazy", + "playlist_title": "Random", + "found_song": { + "artist": "Britney Spears ft. G-Eazy", + "disabled": false, + "favorite": false, + "guid": "0ae2117d-3c53-0990-f8cf-3d92702a111c", + "path": "z://MP4\\Karaoke Sing Sing\\Britney Spears Feat. G-Eazy - Make Me (Karaoke Version).mp4", + "title": "Make Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Justin Bieber Featuring Big Sean", + "playlist_title": "No Pressure", + "found_song": { + "artist": "Justin Bieber Featuring Big Sean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac723d37-c1a1-6a17-4b79-4ce6d583f914", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Big Sean - As Long As You Love Me.mp4", + "title": "As Long As You Love Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Chris Brown", + "playlist_title": "Liquor", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "98c94e2e-1ed9-a3de-b013-1a7182986929", + "path": "z://MP4\\KtvEntertainment\\Chris Brown - Yo (Excuse Me Miss) Karaoke Lyrics.mp4", + "title": "Yo" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 17, + "artist": "Major Lazer & DJ Snake Featuring M0", + "title": "Lean On", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "title": "Downtown", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "title": "Blase", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "title": "$ave Dat Money", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "title": "Play No Games", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rick Ross Featuring Chris Brown", + "title": "Sorry", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "title": "Drifting", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 53, + "fuzzy_match_count": 29, + "missing_count": 18, + "needs_manual_review": 29 + } + }, + { + "playlist_title": "2014 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Big Sean Featuring E-40", + "playlist_title": "I Don't F**k With You", + "found_song": { + "artist": "Big Sean Featuring E-40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a00505f-4255-2eb0-f559-882ea2545ab2", + "path": "z://MP4\\Sing King Karaoke\\Big Sean Featuring E-40 - I Dont Fk With You.mp4", + "title": "I Don't F**k With You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Iggy Azalea Featuring Rita Ora", + "playlist_title": "Black Widow", + "found_song": { + "artist": "Iggy Azalea Featuring Rita Ora", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aefb08fb-6f3e-8a70-f7fb-f7a5869905ad", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea Featuring Rita Ora - Black Widow.mp4", + "title": "Black Widow" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Drake", + "playlist_title": "0 To 100 / The Catch Up", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "78a49f5e-07ed-ed85-bc4d-b61af9d3a6f3", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - 0 to 100 The Catch Up (Clean) (Karaoke Version) (2).mp4", + "title": "0 to 100 The Catch Up" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "playlist_title": "Only", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "85593248-4847-629c-a05d-9f8138f38b8e", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Only ft. Drake, Lil Wayne, Chris Brown (Karaoke Version).mp4", + "title": "Only ft. Drake, Lil Wayne, Chris Brown" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Rae Sremmurd", + "playlist_title": "No Type", + "found_song": { + "artist": "Rae Sremmurd", + "disabled": false, + "favorite": false, + "guid": "18724152-25a9-9849-aca1-c441d422ce08", + "path": "z://MP4\\Sing King Karaoke\\Rae Sremmurd - Swang (Karaoke Version).mp4", + "title": "Swang" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Iggy Azalea Featuring M0", + "playlist_title": "Beg For It", + "found_song": { + "artist": "Iggy Azalea ft. MO", + "disabled": false, + "favorite": false, + "guid": "6bb5ebec-b270-8f33-362e-fe69257b863d", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea ft. MO - Beg For It (Karaoke Version).mp4", + "title": "Beg For It" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Usher Featuring Juicy J", + "playlist_title": "I Don't Mind", + "found_song": { + "artist": "Usher ft. Juicy J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6190f6c-fb52-41ee-2e54-d9b07f601666", + "path": "z://MP4\\KaraokeOnVEVO\\Usher Featuring Juicy J - I Don't Mind.mp4", + "title": "I Don't Mind" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "J. Cole", + "playlist_title": "Wet Dreamz", + "found_song": { + "artist": "J. Cole", + "disabled": false, + "favorite": false, + "guid": "827027c3-a85c-9921-1c96-860c1e96f829", + "path": "z://MP4\\Sing King Karaoke\\J. Cole - ATM (Karaoke Version).mp4", + "title": "ATM" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Weeknd", + "playlist_title": "Often", + "found_song": { + "artist": "Future ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ad77975-2a99-992a-e560-d48b95796222", + "path": "z://MP4\\Sing King Karaoke\\Future ft. The Weeknd - Low Life.mp4", + "title": "Low Life" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "August Alsina", + "playlist_title": "No Love", + "found_song": { + "artist": "Yuji, Putri Dahlia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "110d3667-f030-808c-c20c-b3d3a900a47f", + "path": "z://MP4\\Sing King Karaoke\\Yuji, Putri Dahlia - Old Love.mp4", + "title": "Old Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ne-Yo Featuring Juicy J", + "playlist_title": "She Knows", + "found_song": { + "artist": "Ne-Yo ft. Juicy J", + "disabled": false, + "favorite": false, + "guid": "2407f82d-bddd-43f8-2725-8a28a026a25b", + "path": "z://MP4\\singsongsmusic\\She Knows - Karaoke HD (In the style of Ne-Yo & Juicy J).mp4", + "title": "She Knows" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "playlist_title": "G.D.F.R.", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "ca6188e0-3aaa-8867-1349-4412d041e583", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - GDFR ft. Sage The Gemini and Lookas (Karaoke Version).mp4", + "title": "GDFR ft. Sage The Gemini and Lookas" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 10, + "missing_count": 10, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2014 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Coldplay", + "playlist_title": "A Sky Full Of Stars", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "755b2c44-461f-1bb0-ccf1-14aa07f2c86b", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - A Sky Full Of Stars (Karaoke Version).mp4", + "title": "A Sky Full Of Stars" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Foo Fighters", + "playlist_title": "Something From Nothing", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "02b80c6d-ccc3-34ef-5767-d5aa8b5fe258", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF345\\Foo Fighters - Something From Nothing - SF345 - 03.mp3", + "title": "Something From Nothing" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Immortals", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "876e323d-9bae-203c-53ef-3193d9963db9", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Immortals - From Big Hero 6 (Karaoke Version).mp4", + "title": "Immortals" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "alt-J", + "playlist_title": "Left Hand Free", + "found_song": { + "artist": "Alt-J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8143c16-0c64-a8bd-5550-2383e87cfd99", + "path": "z://MP4\\KaraokeOnVEVO\\alt-J - Left Hand Free.mp4", + "title": "Left Hand Free" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Ezra", + "playlist_title": "Budapest", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "2867108f-d519-272f-0dae-c7dd15c06c9e", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Budapest (Karaoke Version).mp4", + "title": "Budapest" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Cigarette Daydreams", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77b2a0e6-b890-12eb-d6df-28b5f10ffeb5", + "path": "z://MP4\\Sing King Karaoke\\Cage The Elephant - Cigarette Daydreams (Karaoke Version).mp4", + "title": "Cigarette Daydreams" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "MisterWives", + "playlist_title": "Reflections", + "found_song": { + "artist": "MisterWives", + "disabled": false, + "favorite": false, + "guid": "f6b651aa-803f-b72c-03a9-6b00b6e94d8c", + "path": "z://MP4\\Sing King Karaoke\\MisterWives - Reflections (Karaoke Version).mp4", + "title": "Reflections" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Royal Blood", + "playlist_title": "Figure It Out", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa4f9c97-9633-6b76-8138-d61b035e75b1", + "path": "z://CDG\\Mr Entertainer\\MRH121\\Royal Blood - Figure It Out.mp3", + "title": "Figure It Out" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Drown", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "guid": "90b613c1-757f-e002-824e-731a0fc8d057", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Drown (Karaoke Version).mp4", + "title": "Drown" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hozier", + "playlist_title": "Work Song", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2547416-7674-f7b1-bd29-9be6b24453f9", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Work Song (Karaoke Version).mp4", + "title": "Work Song" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Wrong Side Of Heaven", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "ad36a006-2fff-91f7-8bdb-720911a78d6d", + "path": "z://MP4\\KtvEntertainment\\Five Finger Death Punch - Wrong Side Of Heaven Karaoke Lyrics.mp4", + "title": "Wrong Side Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Flaws", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "71b6e7e2-3ad5-1b46-b4b5-d33b961451f7", + "path": "z://MP4\\Bastille - Flaws.mp4", + "title": "Flaws" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Matt McAndrew", + "playlist_title": "I Still Haven't Found What I'm Looking For", + "found_song": { + "artist": "Matt McAndrew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd0c6937-2ff2-c0af-fe0a-37d74cf5c52c", + "path": "z://MP4\\VocalStarKaraoke\\Matt McAndrew - I Still Havent Found What Im Looking For.mp4", + "title": "I Still Havent Found What Im Looking For" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Hozier", + "playlist_title": "From Eden", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "guid": "a200f48d-9910-9f8e-adc7-75b965ca5013", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Someone New (Karaoke Version).mp4", + "title": "Someone New" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Matt McAndrew", + "playlist_title": "The Blower's Daughter", + "found_song": { + "artist": "Damien Rice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201bc616-aeb9-99d8-90d4-04f9b2434808", + "path": "z://MP4\\ZoomKaraokeOfficial\\Damien Rice - The Blowers Daughter.mp4", + "title": "The Blower's Daughter" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Matt McAndrew", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Vance Joy", + "playlist_title": "Mess Is Mine", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abecd49e-f5a8-e350-0fe3-29050d9d8cff", + "path": "z://MP4\\VocalStarKaraoke\\Vance Joy - Missing Piece.mp4", + "title": "Missing Piece" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 19, + "fuzzy_match_count": 5, + "missing_count": 1, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2014 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Calvin Harris Featuring John Newman", + "playlist_title": "Blame", + "found_song": { + "artist": "Calvin Harris Featuring John Newman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f393b4c6-003e-a508-6d7d-8f9cdd5c85d2", + "path": "z://MP4\\KaraokeOnVEVO\\Calvin Harris Featuring John Newman - Blame.mp4", + "title": "Blame" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Ariana Grande & The Weeknd", + "playlist_title": "Love Me Harder", + "found_song": { + "artist": "Ariana Grande ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4dcd11fa-3caf-5818-f3de-5b99cf722c80", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande & The Weeknd - Love Me Harder.mp4", + "title": "Love Me Harder" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Iggy Azalea Featuring M0", + "playlist_title": "Beg For It", + "found_song": { + "artist": "Iggy Azalea ft. MO", + "disabled": false, + "favorite": false, + "guid": "6bb5ebec-b270-8f33-362e-fe69257b863d", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea ft. MO - Beg For It (Karaoke Version).mp4", + "title": "Beg For It" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Alesso Featuring Tove Lo", + "playlist_title": "Heroes (We Could Be)", + "found_song": { + "artist": "Alesso ft. Tove Lo", + "disabled": false, + "favorite": false, + "guid": "3a723d91-139f-70c0-f1c9-81c0d278c450", + "path": "z://MP4\\singsongsmusic\\Heroes (We Could Be) - Karaoke HD (In the style of Alesso & Tove Lo).mp4", + "title": "Heroes (We Could Be)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 5, + "missing_count": 2, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2014 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Blake Shelton Featuring Ashley Monroe", + "playlist_title": "Lonely Tonight", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Hunt", + "playlist_title": "Leave The Night On", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "295e7c57-de8b-5b7d-5a04-3102a209f468", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave The Night On - Sam Hunt.mp4", + "title": "Leave The Night On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Aldean", + "playlist_title": "Burnin' It Down", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "d8631246-1e3d-d905-a39f-4bc522ce8b6b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Burnin' It Down (Karaoke without Vocal).mp4", + "title": "Burnin' It Down" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Dirt", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Chase Bryant", + "playlist_title": "Take It On Back", + "found_song": { + "artist": "Chase Bryant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe12b394-7425-6010-b179-791880923457", + "path": "z://MP4\\KaraokeOnVEVO\\Chase Bryant - Take It On Back.mp4", + "title": "Take It On Back" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Tim McGraw", + "playlist_title": "Shotgun Rider", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3195824-889c-f526-d404-1de6ef07685d", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Girl.mp4", + "title": "Southern Girl" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Something In The Water", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "7f30046b-bc75-1f21-70f0-bc5bb1ee9af0", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Some Hearts (Karaoke).mp4", + "title": "Some Hearts" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "RaeLynn", + "playlist_title": "God Made Girls", + "found_song": { + "artist": "Racey", + "disabled": false, + "favorite": false, + "guid": "b97f5b0e-aae5-222f-9d48-3cc5f872a99b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Some Girls - Racey.mp4", + "title": "Some Girls" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Lee Brice", + "playlist_title": "Drinking Class", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "669389dc-5656-5982-38a9-b39d7e06bd14", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Brice - Parkling Lot Party.mp4", + "title": "Parkling Lot Party" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Mean To Me", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "2692b3e8-3f0f-1382-cae5-ac3443b7d220", + "path": "z://MP4\\Karaoke Studio\\Brett Eldredge - The Long Way (Karaoke Version).mp4", + "title": "The Long Way" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Jason Aldean", + "playlist_title": "Just Gettin' Started", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "ccb701b7-066e-b0e1-a4b4-8ecae3018901", + "path": "z://MP4\\Karaoke Studio\\Jason Aldean - Gettin' Warmed Up (Karaoke with Lyrics).mp4", + "title": "Gettin' Warmed Up" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Randy Houser", + "playlist_title": "Like A Cowboy", + "found_song": { + "artist": "Mad House", + "disabled": false, + "favorite": false, + "guid": "4471ba12-395d-10e1-8149-e361a551291c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF195\\Mad House - Like A Prayer - SF195 - 02.mp3", + "title": "Like A Prayer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Darius Rucker", + "playlist_title": "Homegrown Honey", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd089a-c6db-a4f9-7cc2-807b2991ace9", + "path": "z://MP4\\Sing King Karaoke\\Darius Rucker - Wagon Wheel (Karaoke Version).mp4", + "title": "Wagon Wheel" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton ft. Ashley Monroe", + "disabled": false, + "favorite": false, + "guid": "5d84566a-bb14-046a-6736-bfb1cfc8a99b", + "path": "z://MP4\\singsongsmusic\\Lonely Tonight - Karaoke HD (In the style of Blake Shelton & Ashley Monroe).mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Chris Young", + "playlist_title": "Lonely Eyes", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 11, + "missing_count": 1, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2014 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Thinking Out Loud", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "f8a54394-79e6-ddc0-5002-27016e44d273", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Thinking Out Loud (Karaoke Version).mp4", + "title": "Thinking Out Loud" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Meghan Trainor", + "playlist_title": "All About That Bass", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "8f68942b-7cae-84f6-4869-7d21f1f35bce", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - All About That Bass (Karaoke Version).mp4", + "title": "All About That Bass" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Big Sean Featuring E-40", + "playlist_title": "I Don't F**k With You", + "found_song": { + "artist": "Big Sean Featuring E-40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a00505f-4255-2eb0-f559-882ea2545ab2", + "path": "z://MP4\\Sing King Karaoke\\Big Sean Featuring E-40 - I Dont Fk With You.mp4", + "title": "I Don't F**k With You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Calvin Harris Featuring John Newman", + "playlist_title": "Blame", + "found_song": { + "artist": "Calvin Harris Featuring John Newman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f393b4c6-003e-a508-6d7d-8f9cdd5c85d2", + "path": "z://MP4\\KaraokeOnVEVO\\Calvin Harris Featuring John Newman - Blame.mp4", + "title": "Blame" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "James Newton Howard Featuring Jennifer Lawrence", + "playlist_title": "The Hanging Tree", + "found_song": { + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40293876-aad3-92b1-57d8-71509c5bde6d", + "path": "z://MP4\\Sing King Karaoke\\James Newton Howard Featuring Jennifer Lawrence - The Hanging Tree.mp4", + "title": "The Hanging Tree" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sam Smith", + "playlist_title": "Stay With Me", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "b11eb09e-0437-5d09-6e4a-1d9929bab6c5", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Stay With Me (Karaoke Version).mp4", + "title": "Stay With Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Iggy Azalea Featuring Rita Ora", + "playlist_title": "Black Widow", + "found_song": { + "artist": "Iggy Azalea Featuring Rita Ora", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aefb08fb-6f3e-8a70-f7fb-f7a5869905ad", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea Featuring Rita Ora - Black Widow.mp4", + "title": "Black Widow" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sia", + "playlist_title": "Chandelier", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "a42f7801-81f3-7f66-da39-26fd858014d5", + "path": "z://MP4\\Sing King Karaoke\\Sia - Chandelier.mp4", + "title": "Chandelier" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Fergie", + "playlist_title": "L.A.LOVE (la la)", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "22eb71fb-8304-0c17-77a8-5e598ad246fd", + "path": "z://MP4\\Sing King Karaoke\\Fergie - L.A. LOVE (la la) (Karaoke Version).mp4", + "title": "L.A. LOVE (la la)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "MAGIC!", + "playlist_title": "Rude", + "found_song": { + "artist": "MAGIC!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "684cc978-b89f-a373-ec6c-7e3b5661539d", + "path": "z://MP4\\Sing King Karaoke\\MAGIC! - Rude.mp4", + "title": "Rude" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Echosmith", + "playlist_title": "Cool Kids", + "found_song": { + "artist": "Echosmith", + "disabled": false, + "favorite": false, + "guid": "1acb8ac0-3c5b-ce75-faf8-d0119a4f4a84", + "path": "z://MP4\\Sing King Karaoke\\Echosmith - Cool Kids.mp4", + "title": "Cool Kids" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Pentatonix", + "playlist_title": "Mary, Did You Know?", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82cb1af2-b3fc-5ec4-f487-7f70764e4175", + "path": "z://MP4\\Sing King Karaoke\\Pentatonix - Mary Did You Know.mp4", + "title": "Mary Did You Know?" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "One Direction", + "playlist_title": "Night Changes", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "99c87e5e-60f4-6083-e4af-5e33c635fed8", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Night Changes (Karaoke Version).mp4", + "title": "Night Changes" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton Featuring Ashley Monroe", + "playlist_title": "Lonely Tonight", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Make It Rain", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "09894667-d370-a18f-8e78-16da9900ae22", + "path": "z://MP4\\Karaoke Sing Sing\\Ed Sheeran - Make It Rain SING SING KARAOKE.mp4", + "title": "Make It Rain" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Ella Henderson", + "playlist_title": "Ghost", + "found_song": { + "artist": "Ella Henderson", + "disabled": false, + "favorite": false, + "guid": "e3eb72ca-acaa-4f52-194c-d99235fdae43", + "path": "z://MP4\\Sing King Karaoke\\Ella Henderson - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "OneRepublic", + "playlist_title": "I Lived", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": true, + "guid": "68397f59-8665-0b1f-4b26-4aa8848e94dc", + "path": "z://MP4\\Karaoke Sing Sing\\One Republic - I Lived (Karaoke Version).mp4", + "title": "I Lived" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "One Direction", + "playlist_title": "Steal My Girl", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "ac1d17ca-1ae1-2a57-5efa-50b8512f80f5", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Steal My Girl (Karaoke Version).mp4", + "title": "Steal My Girl" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Try", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "b627772e-af4b-6f45-edc6-eb5db660bd93", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Try (Karaoke Version).mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sam Smith", + "playlist_title": "Have Yourself A Merry Little Christmas", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "076f16c4-dd02-801d-32c7-f3722cb44972", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have Yourself a Merry Little Christmas - Sam Smith.mp4", + "title": "Have Yourself a Merry Little Christmas" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Jessie J Featuring 2 Chainz", + "playlist_title": "Burnin' Up", + "found_song": { + "artist": "Jessie J Featuring 2 Chainz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e9a218f-9091-d76c-8e03-39a99fac8136", + "path": "z://MP4\\Sing King Karaoke\\Jessie J Featuring 2 Chainz - Burnin' Up.mp4", + "title": "Burnin' Up" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Charli XCX", + "playlist_title": "Break The Rules", + "found_song": { + "artist": "Charli XCX", + "disabled": false, + "favorite": false, + "guid": "5a4dc2d0-1090-8489-9ce3-cebc7f6e963e", + "path": "z://MP4\\Sing King Karaoke\\Charli XCX - Break The Rules.mp4", + "title": "Break The Rules" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Ariana Grande & The Weeknd", + "playlist_title": "Love Me Harder", + "found_song": { + "artist": "Ariana Grande ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4dcd11fa-3caf-5818-f3de-5b99cf722c80", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande & The Weeknd - Love Me Harder.mp4", + "title": "Love Me Harder" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "playlist_title": "Only", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "85593248-4847-629c-a05d-9f8138f38b8e", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Only ft. Drake, Lil Wayne, Chris Brown (Karaoke Version).mp4", + "title": "Only ft. Drake, Lil Wayne, Chris Brown" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Rae Sremmurd", + "playlist_title": "No Type", + "found_song": { + "artist": "Rae Sremmurd", + "disabled": false, + "favorite": false, + "guid": "18724152-25a9-9849-aca1-c441d422ce08", + "path": "z://MP4\\Sing King Karaoke\\Rae Sremmurd - Swang (Karaoke Version).mp4", + "title": "Swang" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Iggy Azalea Featuring M0", + "playlist_title": "Beg For It", + "found_song": { + "artist": "Iggy Azalea ft. MO", + "disabled": false, + "favorite": false, + "guid": "6bb5ebec-b270-8f33-362e-fe69257b863d", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea ft. MO - Beg For It (Karaoke Version).mp4", + "title": "Beg For It" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Alesso Featuring Tove Lo", + "playlist_title": "Heroes (We Could Be)", + "found_song": { + "artist": "Alesso ft. Tove Lo", + "disabled": false, + "favorite": false, + "guid": "3a723d91-139f-70c0-f1c9-81c0d278c450", + "path": "z://MP4\\singsongsmusic\\Heroes (We Could Be) - Karaoke HD (In the style of Alesso & Tove Lo).mp4", + "title": "Heroes (We Could Be)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Clean Bandit Featuring Jess Glynne", + "playlist_title": "Rather Be", + "found_song": { + "artist": "Clean Bandit Featuring Jess Glynne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a7b9c18-11c6-40fb-761c-086d7ccecfd8", + "path": "z://MP4\\Sing King Karaoke\\Clean Bandit Featuring Jess Glynne - Rather Be.mp4", + "title": "Rather Be" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Usher Featuring Juicy J", + "playlist_title": "I Don't Mind", + "found_song": { + "artist": "Usher ft. Juicy J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6190f6c-fb52-41ee-2e54-d9b07f601666", + "path": "z://MP4\\KaraokeOnVEVO\\Usher Featuring Juicy J - I Don't Mind.mp4", + "title": "I Don't Mind" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Something In The Water", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "7f30046b-bc75-1f21-70f0-bc5bb1ee9af0", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Some Hearts (Karaoke).mp4", + "title": "Some Hearts" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Tim McGraw", + "playlist_title": "Shotgun Rider", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3195824-889c-f526-d404-1de6ef07685d", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Girl.mp4", + "title": "Southern Girl" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "David Guetta Featuring Sam Martin", + "playlist_title": "Dangerous", + "found_song": { + "artist": "David Guetta Feat. Sam Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d75e18cb-0f9b-7e36-f4b3-12845048eb6d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF343\\David Guetta Feat. Sam Martin - Lovers On The Sun - SF343 - 07.mp3", + "title": "Lovers On The Sun" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Ariana Grande", + "playlist_title": "Santa Tell Me", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "13d3b934-253a-71d0-f70d-cf517134e12b", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Santa Tell Me (Karaoke Version).mp4", + "title": "Santa Tell Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "RaeLynn", + "playlist_title": "God Made Girls", + "found_song": { + "artist": "Racey", + "disabled": false, + "favorite": false, + "guid": "b97f5b0e-aae5-222f-9d48-3cc5f872a99b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Some Girls - Racey.mp4", + "title": "Some Girls" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Lee Brice", + "playlist_title": "Drinking Class", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "669389dc-5656-5982-38a9-b39d7e06bd14", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Brice - Parkling Lot Party.mp4", + "title": "Parkling Lot Party" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "J. Cole", + "playlist_title": "Wet Dreamz", + "found_song": { + "artist": "J. Cole", + "disabled": false, + "favorite": false, + "guid": "827027c3-a85c-9921-1c96-860c1e96f829", + "path": "z://MP4\\Sing King Karaoke\\J. Cole - ATM (Karaoke Version).mp4", + "title": "ATM" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "The Weeknd", + "playlist_title": "Often", + "found_song": { + "artist": "Future ft. The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ad77975-2a99-992a-e560-d48b95796222", + "path": "z://MP4\\Sing King Karaoke\\Future ft. The Weeknd - Low Life.mp4", + "title": "Low Life" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Taylor Swift", + "playlist_title": "Style", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b218a76-caab-8f88-1c59-92ea2c35d271", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Style (Karaoke Version).mp4", + "title": "Style" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "August Alsina", + "playlist_title": "No Love", + "found_song": { + "artist": "Yuji, Putri Dahlia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "110d3667-f030-808c-c20c-b3d3a900a47f", + "path": "z://MP4\\Sing King Karaoke\\Yuji, Putri Dahlia - Old Love.mp4", + "title": "Old Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Lillywood & Robin Schulz", + "playlist_title": "Prayer In C", + "found_song": { + "artist": "Lilly Wood and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "c5fd9cc6-44fa-16c5-7bdb-405d1aa0eb69", + "path": "z://MP4\\Sing King Karaoke\\Lilly Wood and Robin Schulz - Prayer In C (Karaoke Version).mp4", + "title": "Prayer In C" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Matt McAndrew", + "playlist_title": "Make It Rain", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "ea44a1ba-2b7f-769b-8915-385032d58285", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make It Happen - Mariah Carey.mp4", + "title": "Make It Happen" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Mean To Me", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "2692b3e8-3f0f-1382-cae5-ac3443b7d220", + "path": "z://MP4\\Karaoke Studio\\Brett Eldredge - The Long Way (Karaoke Version).mp4", + "title": "The Long Way" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Jason Aldean", + "playlist_title": "Just Gettin' Started", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "ccb701b7-066e-b0e1-a4b4-8ecae3018901", + "path": "z://MP4\\Karaoke Studio\\Jason Aldean - Gettin' Warmed Up (Karaoke with Lyrics).mp4", + "title": "Gettin' Warmed Up" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Ne-Yo Featuring Juicy J", + "playlist_title": "She Knows", + "found_song": { + "artist": "Ne-Yo ft. Juicy J", + "disabled": false, + "favorite": false, + "guid": "2407f82d-bddd-43f8-2725-8a28a026a25b", + "path": "z://MP4\\singsongsmusic\\She Knows - Karaoke HD (In the style of Ne-Yo & Juicy J).mp4", + "title": "She Knows" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "playlist_title": "G.D.F.R.", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "ca6188e0-3aaa-8867-1349-4412d041e583", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - GDFR ft. Sage The Gemini and Lookas (Karaoke Version).mp4", + "title": "GDFR ft. Sage The Gemini and Lookas" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Nico & Vinz", + "playlist_title": "In Your Arms", + "found_song": { + "artist": "Nico And Vinz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e52879fa-4003-e67d-b723-ffbd1d1ef7f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nico And Vinz - In Your Arms.mp4", + "title": "In Your Arms" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Randy Houser", + "playlist_title": "Like A Cowboy", + "found_song": { + "artist": "Mad House", + "disabled": false, + "favorite": false, + "guid": "4471ba12-395d-10e1-8149-e361a551291c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF195\\Mad House - Like A Prayer - SF195 - 02.mp3", + "title": "Like A Prayer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Fifth Harmony", + "playlist_title": "Sledgehammer", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "9c040174-7887-8e52-ddbd-829fbbcdd54c", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - Sledgehammer (Karaoke Version).mp4", + "title": "Sledgehammer" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Darius Rucker", + "playlist_title": "Homegrown Honey", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd089a-c6db-a4f9-7cc2-807b2991ace9", + "path": "z://MP4\\Sing King Karaoke\\Darius Rucker - Wagon Wheel (Karaoke Version).mp4", + "title": "Wagon Wheel" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Chris Jamison", + "playlist_title": "When I Was Your Man", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35c8e9ac-2ba1-a7ca-0751-55c91c499f58", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sam Smith - When I Was Your Man.mp4", + "title": "When I Was Your Man" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton ft. Ashley Monroe", + "disabled": false, + "favorite": false, + "guid": "5d84566a-bb14-046a-6736-bfb1cfc8a99b", + "path": "z://MP4\\singsongsmusic\\Lonely Tonight - Karaoke HD (In the style of Blake Shelton & Ashley Monroe).mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "T.I. Featuring Young Thug", + "title": "About The Money", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Pitbull Featuring John Ryan", + "title": "Fireball", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kid Ink Featuring Usher & Tinashe", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 50, + "fuzzy_match_count": 33, + "missing_count": 17, + "needs_manual_review": 33 + } + }, + { + "playlist_title": "2013 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jay Z", + "playlist_title": "Tom Ford", + "found_song": { + "artist": "Jay-Z", + "disabled": false, + "favorite": false, + "guid": "0cabe71d-3fd3-5e55-f7c7-4641d1cb32ac", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-16 - Jay-Z - Tom Ford.mp3", + "title": "Tom Ford" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sage The Gemini", + "playlist_title": "Red Nose", + "found_song": { + "artist": "Sage The Gemini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcf67008-1ab8-3cb8-b030-ec8ea361224e", + "path": "z://MP4\\KaraokeOnVEVO\\Sage The Gemini - Red Nose.mp4", + "title": "Red Nose" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Eminem Featuring Rihanna", + "playlist_title": "The Monster", + "found_song": { + "artist": "Eminem Ft Rihanna", + "disabled": false, + "favorite": false, + "guid": "d0e57196-1ec7-9acc-c21c-b9b93610c839", + "path": "z://CDG\\Big Hits Karaoke\\BHK047\\BHK047-12 - Eminem Ft Rihanna - Monster.mp3", + "title": "Monster" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "playlist_title": "White Walls", + "found_song": { + "artist": "Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis", + "disabled": false, + "favorite": false, + "guid": "d0be4de8-29f5-fc96-a307-37ecf1d7abc3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF337\\Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis - White Walls - SF337 - 17.mp3", + "title": "White Walls" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Robin Thicke Featuring T.I. + Pharrell", + "playlist_title": "Blurred Lines", + "found_song": { + "artist": "Pharrell Robin Thicke Ft T.I.", + "disabled": false, + "favorite": false, + "guid": "3240dfd9-5137-3ecf-0483-6c78ceb6de05", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF328\\Pharrell Robin Thicke Ft T.I. - Blurred Lines - SF328 - 08.mp3", + "title": "Blurred Lines" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Jay Z Featuring Justin Timberlake", + "playlist_title": "Holy Grail", + "found_song": { + "artist": "Jay Z Ft. Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "c9445519-aa53-a527-b8e9-aa079ed21115", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF330\\Jay Z Ft. Justin Timberlake - Holy Grail - SF330 - 06.mp3", + "title": "Holy Grail" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Chris Brown Featuring Nicki Minaj", + "playlist_title": "Love More", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Confident", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "B.o.B Featuring 2 Chainz", + "playlist_title": "HeadBand", + "found_song": { + "artist": "B.O.B. & 2 Chainz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "972eaf37-004f-9fe0-0254-3307bab86874", + "path": "z://CDG\\SBI\\SBI-02\\SB27791 - B.O.B. & 2 Chainz - Headband.mp3", + "title": "Headband" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Drake", + "playlist_title": "The Language", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "790b06ed-9c72-a841-dc0b-fb9e04dcbef8", + "path": "z://MP4\\King of Karaoke\\Drake - One Dance - King of Karaoke.mp4", + "title": "One Dance" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kanye West", + "playlist_title": "Bound 2", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "97cc5773-3d66-b8ff-3b7a-1403a7d8691d", + "path": "z://MP4\\Sing King Karaoke\\Kanye West - Only One (Karaoke Version).mp4", + "title": "Only One" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Future", + "playlist_title": "Honest", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "guid": "78a51e52-202c-707f-508f-e7bdb4ce3c4b", + "path": "z://MP4\\KaraokeOnVEVO\\Future - Freak Hoe (Karaoke).mp4", + "title": "Freak Hoe" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "title": "Beware", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 10, + "missing_count": 8, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2013 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Fray", + "playlist_title": "Love Don't Die", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "37811064-765b-76a8-8b4e-4b0652b0d6dd", + "path": "z://CDG\\Various\\The Fray - Love Don't Die.mp3", + "title": "Love Don't Die" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lorde", + "playlist_title": "Tennis Court", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7465e20b-513e-5079-3152-e7f8be05a3e0", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Tennis Court.mp4", + "title": "Tennis Court" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "dc91acac-7fc3-8c74-edc5-3d1b13901558", + "path": "z://MP4\\singsongsmusic\\Come a Little Closer - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Come a Little Closer" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ed Sheeran", + "playlist_title": "I See Fire", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f00d40a1-dea9-1742-4463-5329315afe1e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - I See Fire.mp4", + "title": "I See Fire" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 14, + "playlist_artist": "Fitz And The Tantrums", + "playlist_title": "Out Of My League", + "found_song": { + "artist": "Fitz And The Tantrums", + "disabled": false, + "favorite": false, + "guid": "352d05f7-d8c0-034f-f76a-dbeb0c36fde6", + "path": "z://MP4\\King of Karaoke\\Fitz And The Tantrums - HandClap - King of Karaoke.mp4", + "title": "HandClap" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Come To Me", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "e4399c34-5886-ff70-df90-bb28ed0299ff", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Fiction (Before It's Too Late) (Karaoke).mp4", + "title": "Fiction" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Pearl Jam", + "playlist_title": "Sirens", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "guid": "7dab4e7f-f8f0-2adb-1a50-b21c384b382e", + "path": "z://MP4\\KaraFun Karaoke\\Pearl Jam - Alive.mp4", + "title": "Alive" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "James Wolpert", + "playlist_title": "With Or Without You", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c019320a-0797-189f-1be1-05e66fb979dd", + "path": "z://MP4\\VocalStarKaraoke\\U2 - With Or Without You.mp4", + "title": "With Or Without You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Afraid", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78568769-9350-4321-372b-09a79b3015a8", + "path": "z://MP4\\sing2karaoke\\The Neighbourhood - Stargazing.mp4", + "title": "Stargazing" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 17, + "artist": "Will Champlin", + "title": "Carry On", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Zach Sobiech", + "title": "Clouds", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "John Mayer Featuring Katy Perry", + "title": "Who You Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Panic! At The Disco Featuring Lolo", + "title": "Miss Jackson", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 5, + "missing_count": 4, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2013 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Eminem Featuring Rihanna", + "playlist_title": "The Monster", + "found_song": { + "artist": "Eminem Ft Rihanna", + "disabled": false, + "favorite": false, + "guid": "d0e57196-1ec7-9acc-c21c-b9b93610c839", + "path": "z://CDG\\Big Hits Karaoke\\BHK047\\BHK047-12 - Eminem Ft Rihanna - Monster.mp3", + "title": "Monster" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Pitbull Featuring Ke$ha", + "playlist_title": "Timber", + "found_song": { + "artist": "Pitbull Ft Ke$ha", + "disabled": false, + "favorite": false, + "guid": "1b86988a-1c95-fa3f-a173-4ca2f8c7509d", + "path": "z://CDG\\Mr Entertainer\\MRH112\\Pitbull Ft Ke$ha - Timber.mp3", + "title": "Timber" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Zedd Featuring Hayley Williams", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Zedd ft. Hayley Williams", + "disabled": false, + "favorite": false, + "guid": "3646a600-bce7-30a3-7321-27656006dad4", + "path": "z://MP4\\Sing King Karaoke\\Zedd and Hayley Williams - Stay the Night (Karaoke Version).mp4", + "title": "Stay the Night" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Lady Gaga Featuring R. Kelly", + "playlist_title": "Do What U Want", + "found_song": { + "artist": "Lady Gaga Ft R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6ac0e1c7-2351-4550-66dd-d454940144c8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF334\\Lady Gaga Ft R. Kelly - Do What U Want - SF334 - 04.mp3", + "title": "Do What U Want" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "playlist_title": "White Walls", + "found_song": { + "artist": "Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis", + "disabled": false, + "favorite": false, + "guid": "d0be4de8-29f5-fc96-a307-37ecf1d7abc3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF337\\Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis - White Walls - SF337 - 17.mp3", + "title": "White Walls" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 5, + "missing_count": 0, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2013 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Hunter Hayes Featuring Jason Mraz", + "playlist_title": "Everybody's Got Somebody But Me", + "found_song": { + "artist": "Hunter Hayes Featuring Jason Mraz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef0729f-9fab-7c90-3cf3-b791ca64e96b", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes Featuring Jason Mraz - Everybodys Got Somebody But Me.mp4", + "title": "Everybody's Got Somebody But Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3195824-889c-f526-d404-1de6ef07685d", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Girl.mp4", + "title": "Southern Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eric Church", + "playlist_title": "The Outsiders", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c0b6326-f05e-88d1-3c0d-bc5dee871bf6", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - The Outsiders.mp4", + "title": "The Outsiders" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Keith Urban And Miranda Lambert", + "playlist_title": "We Were Us", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "b5a8b22b-a979-210f-4616-266125dc62a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Were Us - Keith Urban.mp4", + "title": "We Were Us" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "The Band Perry", + "playlist_title": "Don't Let Me Be Lonely", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "236ebc06-c159-8a72-ba2f-593fa614f639", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Lonely - The Band Perry.mp4", + "title": "Don t Let Me Be Lonely" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Jason Aldean", + "playlist_title": "When She Says Baby", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "5cf8f3bd-f988-7783-7a3f-fbc33505f874", + "path": "z://MP4\\King of Karaoke\\Jason Aldean - Whiskey'd Up - King of Karaoke.mp4", + "title": "Whiskey'd Up" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Eric Paslay", + "playlist_title": "Friday Night", + "found_song": { + "artist": "The Darkness", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dfb2e6bf-f611-73e6-0dd0-2a863fb9a6e3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Darkness - Friday Night.mp4", + "title": "Friday Night" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Darius Rucker", + "playlist_title": "Radio", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd089a-c6db-a4f9-7cc2-807b2991ace9", + "path": "z://MP4\\Sing King Karaoke\\Darius Rucker - Wagon Wheel (Karaoke Version).mp4", + "title": "Wagon Wheel" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Jon Pardi", + "playlist_title": "Up All Night", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "678dd03d-6c17-c407-4735-5d036f4604b0", + "path": "z://MP4\\KtvEntertainment\\One Direction - Up All Night (Karaoke without Vocal).mp4", + "title": "Up All Night" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Compass", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "a81c933d-a6cf-6ed1-5df2-da0f4e8f831c", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Just A Kiss (Karaoke Version).mp4", + "title": "Just A Kiss" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Scotty McCreery", + "playlist_title": "See You Tonight", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Danielle Bradbery", + "playlist_title": "The Heart Of Dixie", + "found_song": { + "artist": "Danielle Bradbery", + "disabled": false, + "favorite": false, + "guid": "7e837f5e-fac5-67a7-df58-753cfba81eb9", + "path": "z://MP4\\Karaoke Studio\\Danielle Bradbery - Worth It (Karaoke Version).mp4", + "title": "Worth It" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Hold On", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Dan + Shay", + "playlist_title": "19 You + Me", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 12, + "missing_count": 2, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "2013 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Katy Perry Featuring Juicy J", + "playlist_title": "Dark Horse", + "found_song": { + "artist": "Katy Perry Featuring Juicy J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dea16f6-7665-615c-9d14-b9329abaa470", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry Featuring Juicy J - Dark Horse.mp4", + "title": "Dark Horse" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Brave", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "caa0c3a8-b02d-9c1d-2304-32142a03284c", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Brave (Karaoke Version).mp4", + "title": "Brave" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Pentatonix", + "playlist_title": "Little Drummer Boy", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "guid": "4938c900-9ef0-3af2-a628-8fe23397b25d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Drummer Boy - Pentatonix.mp4", + "title": "Little Drummer Boy" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Idina Menzel", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Idina Menzel", + "disabled": false, + "favorite": false, + "guid": "56334839-05ed-7454-0b90-c53a93a24c12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Go - Idina Menzel.mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Demi Lovato", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "7b157570-ca27-c77e-5ad3-807e270c40fa", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Avicii", + "playlist_title": "Hey Brother", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "38af0fa3-dc87-49dd-9932-d3162451a8c6", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Hey Brother (Karaoke Version).mp4", + "title": "Hey Brother" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Zendaya", + "playlist_title": "Replay", + "found_song": { + "artist": "Zendaya", + "disabled": false, + "favorite": false, + "guid": "f6f3f2e7-3e70-4b94-35c5-7e4c21a29e08", + "path": "z://MP4\\Sing King Karaoke\\Zendaya - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "John Newman", + "playlist_title": "Love Me Again", + "found_song": { + "artist": "John Newman", + "disabled": false, + "favorite": false, + "guid": "eb3bfb04-cf4a-8c1c-fabe-401813d0a6ed", + "path": "z://MP4\\Sing King Karaoke\\John Newman - Love Me Again (Karaoke Version).mp4", + "title": "Love Me Again" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lea Michele", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Lea Michele", + "disabled": false, + "favorite": false, + "guid": "b4f39356-c89a-127e-3dc4-e986b4966f10", + "path": "z://MP4\\Sing King Karaoke\\Lea Michele - Cannonball (Karaoke Version).mp4", + "title": "Cannonball" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Britney Spears", + "playlist_title": "Perfume", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "a157836c-15f8-b100-11a4-1c1ec599cb3d", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Perfume (Karaoke Version).mp4", + "title": "Perfume" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Hunter Hayes Featuring Jason Mraz", + "playlist_title": "Everybody's Got Somebody But Me", + "found_song": { + "artist": "Hunter Hayes Featuring Jason Mraz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef0729f-9fab-7c90-3cf3-b791ca64e96b", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes Featuring Jason Mraz - Everybodys Got Somebody But Me.mp4", + "title": "Everybody's Got Somebody But Me" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Justin Bieber", + "playlist_title": "All That Matters", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "fb4e9b2f-3940-a799-b134-4ecbfcdc68a4", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - All That Matters (Karaoke Version).mp4", + "title": "All That Matters" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Aloe Blacc", + "playlist_title": "The Man", + "found_song": { + "artist": "Aloe Blacc", + "disabled": false, + "favorite": false, + "guid": "b57f2ee6-ff91-84dc-66b2-a8ee607c49cf", + "path": "z://MP4\\Sing King Karaoke\\Aloe Blacc - The Man (Karaoke Version).mp4", + "title": "The Man" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ylvis", + "playlist_title": "The Fox", + "found_song": { + "artist": "Ylvis", + "disabled": false, + "favorite": false, + "guid": "1adc96dd-f351-3632-3d76-191986cf9ac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Fox - Ylvis.mp4", + "title": "The Fox" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rihanna", + "playlist_title": "What Now", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "bcb54a88-9046-2923-e3c8-a9c45ebfe3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Now - Rihanna.mp4", + "title": "What Now" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "One Direction", + "playlist_title": "Best Song Ever", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "94fc2667-cc35-d3da-6be9-0538dfeb2c79", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Best Song Ever (Karaoke Version).mp4", + "title": "Best Song Ever" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Eminem", + "playlist_title": "Survival", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "86dfcb4f-eb1b-694d-35a1-0a9215f0f9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Survival (Karaoke).mp4", + "title": "Survival" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Eminem Featuring Rihanna", + "playlist_title": "The Monster", + "found_song": { + "artist": "Eminem Ft Rihanna", + "disabled": false, + "favorite": false, + "guid": "d0e57196-1ec7-9acc-c21c-b9b93610c839", + "path": "z://CDG\\Big Hits Karaoke\\BHK047\\BHK047-12 - Eminem Ft Rihanna - Monster.mp3", + "title": "Monster" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Pitbull Featuring Ke$ha", + "playlist_title": "Timber", + "found_song": { + "artist": "Pitbull Ft Ke$ha", + "disabled": false, + "favorite": false, + "guid": "1b86988a-1c95-fa3f-a173-4ca2f8c7509d", + "path": "z://CDG\\Mr Entertainer\\MRH112\\Pitbull Ft Ke$ha - Timber.mp3", + "title": "Timber" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "A Great Big World & Christina Aguilera", + "playlist_title": "Say Something", + "found_song": { + "artist": "A Great Big World ft. Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "cabc9b97-fc54-266a-43ae-940b875cf536", + "path": "z://MP4\\Sing King Karaoke\\A Great Big World and Christina Aguilera - Say Something (Karaoke Version).mp4", + "title": "Say Something" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "playlist_title": "White Walls", + "found_song": { + "artist": "Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis", + "disabled": false, + "favorite": false, + "guid": "d0be4de8-29f5-fc96-a307-37ecf1d7abc3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF337\\Macklemore & Ryan Lewis Ft Schoolboy Q & Hollis - White Walls - SF337 - 17.mp3", + "title": "White Walls" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lady Gaga Featuring R. Kelly", + "playlist_title": "Do What U Want", + "found_song": { + "artist": "Lady Gaga Ft R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6ac0e1c7-2351-4550-66dd-d454940144c8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF334\\Lady Gaga Ft R. Kelly - Do What U Want - SF334 - 04.mp3", + "title": "Do What U Want" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Zedd Featuring Hayley Williams", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Zedd ft. Hayley Williams", + "disabled": false, + "favorite": false, + "guid": "3646a600-bce7-30a3-7321-27656006dad4", + "path": "z://MP4\\Sing King Karaoke\\Zedd and Hayley Williams - Stay the Night (Karaoke Version).mp4", + "title": "Stay the Night" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Robin Thicke Featuring T.I. + Pharrell", + "playlist_title": "Blurred Lines", + "found_song": { + "artist": "Pharrell Robin Thicke Ft T.I.", + "disabled": false, + "favorite": false, + "guid": "3240dfd9-5137-3ecf-0483-6c78ceb6de05", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF328\\Pharrell Robin Thicke Ft T.I. - Blurred Lines - SF328 - 08.mp3", + "title": "Blurred Lines" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Jay Z Featuring Justin Timberlake", + "playlist_title": "Holy Grail", + "found_song": { + "artist": "Jay Z Ft. Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "c9445519-aa53-a527-b8e9-aa079ed21115", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF330\\Jay Z Ft. Justin Timberlake - Holy Grail - SF330 - 06.mp3", + "title": "Holy Grail" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Chris Brown Featuring Nicki Minaj", + "playlist_title": "Love More", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Confident", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Lana Del Rey & Cedric Gervais", + "playlist_title": "Summertime Sadness", + "found_song": { + "artist": "Lana Del Rey vs Cedric Gervais", + "disabled": false, + "favorite": false, + "guid": "4582e68f-8326-86aa-ffb8-b5ba9e987e94", + "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey vs Cedric Gervais - Summertime Sadness (Karaoke Version).mp4", + "title": "Summertime Sadness" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Martin Garrix", + "playlist_title": "Animals", + "found_song": { + "artist": "Martin Garrix ft. Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "447d4e6c-a82e-b3cc-e100-9c317d54cc48", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-16 - Martin Garrix & Khalid - Ocean.mp3", + "title": "Ocean" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Keith Urban And Miranda Lambert", + "playlist_title": "We Were Us", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "b5a8b22b-a979-210f-4616-266125dc62a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Were Us - Keith Urban.mp4", + "title": "We Were Us" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "The Band Perry", + "playlist_title": "Don't Let Me Be Lonely", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "236ebc06-c159-8a72-ba2f-593fa614f639", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Lonely - The Band Perry.mp4", + "title": "Don t Let Me Be Lonely" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Jason Aldean", + "playlist_title": "When She Says Baby", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "5cf8f3bd-f988-7783-7a3f-fbc33505f874", + "path": "z://MP4\\King of Karaoke\\Jason Aldean - Whiskey'd Up - King of Karaoke.mp4", + "title": "Whiskey'd Up" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Eric Paslay", + "playlist_title": "Friday Night", + "found_song": { + "artist": "The Darkness", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dfb2e6bf-f611-73e6-0dd0-2a863fb9a6e3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Darkness - Friday Night.mp4", + "title": "Friday Night" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Tessanne Chin", + "playlist_title": "Bridge Over Troubled Water", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c122529b-40cf-ff82-cf9b-5b0b9b45200d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Simon And Garfunkel - Bridge Over Troubled Water.mp4", + "title": "Bridge Over Troubled Water" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Darius Rucker", + "playlist_title": "Radio", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd089a-c6db-a4f9-7cc2-807b2991ace9", + "path": "z://MP4\\Sing King Karaoke\\Darius Rucker - Wagon Wheel (Karaoke Version).mp4", + "title": "Wagon Wheel" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "B.o.B Featuring 2 Chainz", + "playlist_title": "HeadBand", + "found_song": { + "artist": "B.O.B. & 2 Chainz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "972eaf37-004f-9fe0-0254-3307bab86874", + "path": "z://CDG\\SBI\\SBI-02\\SB27791 - B.O.B. & 2 Chainz - Headband.mp3", + "title": "Headband" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Drake", + "playlist_title": "The Language", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "790b06ed-9c72-a841-dc0b-fb9e04dcbef8", + "path": "z://MP4\\King of Karaoke\\Drake - One Dance - King of Karaoke.mp4", + "title": "One Dance" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Jon Pardi", + "playlist_title": "Up All Night", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "678dd03d-6c17-c407-4735-5d036f4604b0", + "path": "z://MP4\\KtvEntertainment\\One Direction - Up All Night (Karaoke without Vocal).mp4", + "title": "Up All Night" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Compass", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "a81c933d-a6cf-6ed1-5df2-da0f4e8f831c", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Just A Kiss (Karaoke Version).mp4", + "title": "Just A Kiss" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Kanye West", + "playlist_title": "Bound 2", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "97cc5773-3d66-b8ff-3b7a-1403a7d8691d", + "path": "z://MP4\\Sing King Karaoke\\Kanye West - Only One (Karaoke Version).mp4", + "title": "Only One" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Future", + "playlist_title": "Honest", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "guid": "78a51e52-202c-707f-508f-e7bdb4ce3c4b", + "path": "z://MP4\\KaraokeOnVEVO\\Future - Freak Hoe (Karaoke).mp4", + "title": "Freak Hoe" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Scotty McCreery", + "playlist_title": "See You Tonight", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Danielle Bradbery", + "playlist_title": "The Heart Of Dixie", + "found_song": { + "artist": "Danielle Bradbery", + "disabled": false, + "favorite": false, + "guid": "7e837f5e-fac5-67a7-df58-753cfba81eb9", + "path": "z://MP4\\Karaoke Studio\\Danielle Bradbery - Worth It (Karaoke Version).mp4", + "title": "Worth It" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Childish Gambino", + "playlist_title": "V. 3005", + "found_song": { + "artist": "Childish Gambino", + "disabled": false, + "favorite": false, + "guid": "71dbca8a-2d8d-1bc3-e214-b1c926111f68", + "path": "z://MP4\\KtvEntertainment\\Childish Gambino - 3005 Karaoke Lyrics.mp4", + "title": "3005" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 18, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Rebecca Black & Dave Days", + "title": "Saturday", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Joe Nichols", + "title": "Sunny And 75", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "T-Pain Featuring B.o.B", + "title": "Up Down (Do This All Day)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jacquie Lee", + "title": "Angel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "R. Kelly Featuring 2 Chainz", + "title": "My Story", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Juicy J Featuring Wale & Trey Songz", + "title": "Bounce It", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "title": "Old School Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Drake Featuring Jay Z", + "title": "Pound Cake / Paris Morton Music 2", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ariana Grande Featuring Big Sean", + "title": "Right There", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 28, + "missing_count": 18, + "needs_manual_review": 28 + } + }, + { + "playlist_title": "2012 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Macklemore & Ryan Lewis Featuring Wanz", + "playlist_title": "Thrift Shop", + "found_song": { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f8c3823-5d64-7b9f-987f-e87e4b1b142f", + "path": "z://MP4\\Sing King Karaoke\\Macklemore & Ryan Lewis Featuring Wanz - Thrift Shop.mp4", + "title": "Thrift Shop" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Alicia Keys Featuring Nicki Minaj", + "playlist_title": "Girl On Fire", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "2bc32c80-9dc6-eb7d-60ac-c3418006bed3", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Girl On Fire (Karaoke Version).mp4", + "title": "Girl On Fire" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "2 Chainz Featuring Kanye West", + "playlist_title": "Birthday Song", + "found_song": { + "artist": "2 Chainz Feat. Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd6fe4d0-f594-d53a-8d0c-7e87c0309c35", + "path": "z://CDG\\SBI\\SBI-02\\SBI25842 - 2 Chainz Feat. Kanye West - Birthday Song (Explicit).mp3", + "title": "Birthday Song (Explicit)" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "2 Chainz Featuring Drake", + "playlist_title": "No Lie", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kendrick Lamar Featuring Drake", + "playlist_title": "Poetic Justice", + "found_song": { + "artist": "Kendrick Lamar & Drake", + "disabled": false, + "favorite": false, + "guid": "a6ff745e-6a9d-9c45-90eb-0d3e5396bb05", + "path": "z://MP4\\singsongsmusic\\Poetic Justice- Karaoke HD (In the style of Kendrick Lamar & Drake).mp4", + "title": "Poetic Justice" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "title": "Pop That", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "title": "Mercy", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 6, + "missing_count": 11, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2012 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "fun.", + "playlist_title": "Carry On", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "82fe920e-86df-5765-9667-681ccca2efcd", + "path": "z://MP4\\KtvEntertainment\\Fun - Carry On (Karaoke without Vocal).mp4", + "title": "Carry On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Mountain Sound", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "5d25f1d3-9d70-84c1-0ca5-047b69d30b30", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Mountain Sound (Karaoke Version).mp4", + "title": "Mountain Sound" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Lumineers", + "playlist_title": "Flowers In Your Hair", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13e77c93-a65f-401c-1d01-255a56fc7a3b", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Flowers In Your Hair.mp4", + "title": "Flowers In Your Hair" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Imagine Dragons", + "playlist_title": "On Top Of The World", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "5c49e1f8-a89a-dee4-88f4-e0a7cb3bb1a5", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - On Top Of The World (Karaoke Version).mp4", + "title": "On Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Gone, Gone, Gone", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "30682282-2d72-cc83-fc80-16caf97be392", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Gone Gone Gone Karaoke Lyrics.mp4", + "title": "Gone Gone Gone" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Lumineers", + "playlist_title": "Slow It Down", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "5aeb2093-8a76-6e29-495e-3cbca514cf7e", + "path": "z://MP4\\singsongsmusic\\Slow it Down - Karaoke HD (In the style of The Lumineers).mp4", + "title": "Slow it Down" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Give Me Love", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "eca5239c-2e07-ae99-2f14-d6a93a3d056d", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Give Me Love (Karaoke Version).mp4", + "title": "Give Me Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "The Black Keys", + "playlist_title": "Little Black Submarines", + "found_song": { + "artist": "Black Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ba586-f058-c250-ab83-5e504592148f", + "path": "z://CDG\\SBI\\SBI-02\\SBI25976 - Black Keys - Little Black Submarines.mp3", + "title": "Little Black Submarines" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Babel", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "02de67e5-3c18-f4e4-5361-301f83ef5ef5", + "path": "z://CDG\\Mr Entertainer\\MRH106\\MRH106-17 - Mumford And Sons - Babel.mp3", + "title": "Babel" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Three Days Grace", + "playlist_title": "Chalk Outline", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "6d87f041-28e9-2504-516e-a7a28f8f6ae1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF293\\Three Days Grace - The Good Life - SF293 - 02.mp3", + "title": "The Good Life" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Atlas Genius", + "title": "Trojans", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 4, + "missing_count": 3, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2012 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Justin Bieber Featuring Nicki Minaj", + "playlist_title": "Beauty And A Beat", + "found_song": { + "artist": "Justin Bieber Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc092784-bead-c9c9-fb59-3abc4bd16106", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Nicki Minaj - Beauty And A Beat.mp4", + "title": "Beauty And A Beat" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Script Featuring will.i.am", + "playlist_title": "Hall Of Fame", + "found_song": { + "artist": "The Script Featuring will.i.am", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "185d71e8-aabd-ad8b-eb93-4bcc47e5f164", + "path": "z://MP4\\Sing King Karaoke\\The Script Featuring will.i.am - Hall Of Fame.mp4", + "title": "Hall Of Fame" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 13, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Swedish House Mafia Featuring John Martin", + "playlist_title": "Don't You Worry Child", + "found_song": { + "artist": "Swedish House Mafia", + "disabled": false, + "favorite": false, + "guid": "bb1cc7d6-2a4b-dbab-62c6-fbf8f3ffdd60", + "path": "z://CDG\\Big Hits Karaoke\\BHK037\\BHK037-10 - Swedish House Mafia - Don't You Worry Child.mp3", + "title": "Don't You Worry Child" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Pitbull Featuring TJR", + "playlist_title": "Don't Stop The Party", + "found_song": { + "artist": "Pitbull ft Tjr", + "disabled": false, + "favorite": false, + "guid": "7eec3c40-b5db-8884-b4fa-f516ce2b5582", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF323\\Pitbull ft Tjr - Don't Stop The Party - SF323 - 09.mp3", + "title": "Don't Stop The Party" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 4, + "missing_count": 0, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2012 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Blown Away", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "e26d8f42-acc8-c8e9-9985-ca1569bdaa63", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Blown Away (Karaoke).mp4", + "title": "Blown Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "The Band Perry", + "playlist_title": "Better Dig Two", + "found_song": { + "artist": "Band Perry, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d38a6447-b616-cb7e-de92-594c0d5333db", + "path": "z://CDG\\SBI\\SBI-03\\SB27208 - The Band Perry - Better Dig Two.mp3", + "title": "Better Dig Two" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Gary Allan", + "playlist_title": "Every Storm (Runs Out Of Rain)", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "guid": "9c7956eb-d480-f28c-2aee-a78c7190cd97", + "path": "z://CDG\\Various\\Gary Allan - Songs About Rain.mp3", + "title": "Songs About Rain" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Eric Church", + "playlist_title": "Creepin'", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "901d5b3f-755c-c4bf-ec70-26b3e1cf7e94", + "path": "z://MP4\\KtvEntertainment\\Eric Church - Springsteen Karaoke Lyrics.mp4", + "title": "Springsteen" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Lee Brice", + "playlist_title": "Hard To Love", + "found_song": { + "artist": "Brice, Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "111218e0-f57b-585e-7899-94124086260c", + "path": "z://CDG\\SBI\\SBI-03\\SB25837 - Lee Brice - Hard To Love.mp3", + "title": "Hard To Love" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Tip It On Back", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 8, + "missing_count": 6, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2012 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Justin Bieber Featuring Nicki Minaj", + "playlist_title": "Beauty And A Beat", + "found_song": { + "artist": "Justin Bieber Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc092784-bead-c9c9-fb59-3abc4bd16106", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Nicki Minaj - Beauty And A Beat.mp4", + "title": "Beauty And A Beat" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "PSY", + "playlist_title": "Gangnam Style", + "found_song": { + "artist": "PSY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2a8ca1-50f5-17eb-8a9d-a752d85e186a", + "path": "z://MP4\\KaraokeOnVEVO\\PSY - Gangnam Style.mp4", + "title": "Gangnam Style" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Justin Bieber Featuring Big Sean", + "playlist_title": "As Long As You Love Me", + "found_song": { + "artist": "Justin Bieber Featuring Big Sean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac723d37-c1a1-6a17-4b79-4ce6d583f914", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Big Sean - As Long As You Love Me.mp4", + "title": "As Long As You Love Me" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Wake Me Up", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "705fa6d8-1880-71e3-6875-b69b4e0c87e3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Don t Wake Me Up (Karaoke Version).mp4", + "title": "Don t Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Script Featuring will.i.am", + "playlist_title": "Hall Of Fame", + "found_song": { + "artist": "The Script Featuring will.i.am", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "185d71e8-aabd-ad8b-eb93-4bcc47e5f164", + "path": "z://MP4\\Sing King Karaoke\\The Script Featuring will.i.am - Hall Of Fame.mp4", + "title": "Hall Of Fame" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Lights", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "b02900ba-259f-2b46-4b8b-b3e18c0bea92", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Lights (Karaoke Version).mp4", + "title": "Lights" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "P!nk", + "playlist_title": "Blow Me (One Last Kiss)", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01062027-80b0-9e8e-3b4d-8ae931557032", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Blow Me (One Last Kiss.mp4", + "title": "Blow Me (One Last Kiss)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Carly Rae Jepsen", + "playlist_title": "Call Me Maybe", + "found_song": { + "artist": "Carly Rae Jepsen", + "disabled": false, + "favorite": false, + "guid": "5822149a-b88d-3786-04c8-fb1f9ba39e08", + "path": "z://MP4\\Sing King Karaoke\\Carly Rae Jepsen - Call Me Maybe (Karaoke Version).mp4", + "title": "Call Me Maybe" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Anything Could Happen", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f5d14a1-48ee-f66b-b98a-0a023f02e340", + "path": "z://MP4\\KaraokeOnVEVO\\Ellie Goulding - Anything Could Happen.mp4", + "title": "Anything Could Happen" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Maroon 5", + "playlist_title": "Daylight", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "12d6183b-ae99-e725-9b80-81743f4da88f", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Daylight (Karaoke Version).mp4", + "title": "Daylight" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Adele", + "playlist_title": "Skyfall", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a43094f9-69b0-d016-8c33-06679647fa10", + "path": "z://MP4\\Sing King Karaoke\\Adele - Skyfall.mp4", + "title": "Skyfall" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "One Direction", + "playlist_title": "Live While We're Young", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "4dc95ef7-f7c0-a9f9-6692-b8e76a1b3767", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Live While We re Young (Karaoke Version).mp4", + "title": "Live While We re Young" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Bridgit Mendler", + "playlist_title": "Ready Or Not", + "found_song": { + "artist": "Bridgit Mendler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c9d31d8-a873-2675-fbaf-22b105dfd970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bridgit Mendler - Ready Or Not.mp4", + "title": "Ready Or Not" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Two Black Cadillacs", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "f6e06bc3-c52b-f77b-8318-11090cdd0236", + "path": "z://MP4\\TheKARAOKEChannel\\Two Black Cadillacs in the style of Carrie Underwood Karaoke with Lyrics.mp4", + "title": "Two Black Cadillacs" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Beyonce", + "playlist_title": "Dance For You", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9989e791-e729-5fb9-7d4c-1547637cf548", + "path": "z://CDG\\SBI\\SBI-03\\SB27080 - Beyonce - Dance For You.mp3", + "title": "Dance For You" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Tamar Braxton", + "playlist_title": "Love And War", + "found_song": { + "artist": "Tamar Braxton", + "disabled": false, + "favorite": false, + "guid": "a0168353-c8de-aadc-a96a-85334c45ca74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love And War - Tamar Braxton.mp4", + "title": "Love And War" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Swedish House Mafia Featuring John Martin", + "playlist_title": "Don't You Worry Child", + "found_song": { + "artist": "Swedish House Mafia", + "disabled": false, + "favorite": false, + "guid": "bb1cc7d6-2a4b-dbab-62c6-fbf8f3ffdd60", + "path": "z://CDG\\Big Hits Karaoke\\BHK037\\BHK037-10 - Swedish House Mafia - Don't You Worry Child.mp3", + "title": "Don't You Worry Child" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Macklemore & Ryan Lewis Featuring Wanz", + "playlist_title": "Thrift Shop", + "found_song": { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f8c3823-5d64-7b9f-987f-e87e4b1b142f", + "path": "z://MP4\\Sing King Karaoke\\Macklemore & Ryan Lewis Featuring Wanz - Thrift Shop.mp4", + "title": "Thrift Shop" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "will.i.am Featuring Britney Spears", + "playlist_title": "Scream & Shout", + "found_song": { + "artist": "Will.I.Am ft. Britney Spears", + "disabled": false, + "favorite": false, + "guid": "84667ef3-56f7-cf2f-73f2-172629fe67c9", + "path": "z://CDG\\Big Hits Karaoke\\BHK038\\BHK038-10 - Will.I.Am Feat. Britney Spears - Scream & Shout.mp3", + "title": "Scream & Shout" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Alicia Keys Featuring Nicki Minaj", + "playlist_title": "Girl On Fire", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "2bc32c80-9dc6-eb7d-60ac-c3418006bed3", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Girl On Fire (Karaoke Version).mp4", + "title": "Girl On Fire" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Pitbull Featuring TJR", + "playlist_title": "Don't Stop The Party", + "found_song": { + "artist": "Pitbull ft Tjr", + "disabled": false, + "favorite": false, + "guid": "7eec3c40-b5db-8884-b4fa-f516ce2b5582", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF323\\Pitbull ft Tjr - Don't Stop The Party - SF323 - 09.mp3", + "title": "Don't Stop The Party" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Calvin Harris Featuring Florence Welch", + "playlist_title": "Sweet Nothing", + "found_song": { + "artist": "Calvin Harris ft. Florence Welch", + "disabled": false, + "favorite": false, + "guid": "60957274-2435-4594-7ef4-3d9f4f4b1bca", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris ft. Florence Welch - Sweet Nothing (Karaoke Version).mp4", + "title": "Sweet Nothing" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "The Band Perry", + "playlist_title": "Better Dig Two", + "found_song": { + "artist": "Band Perry, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d38a6447-b616-cb7e-de92-594c0d5333db", + "path": "z://CDG\\SBI\\SBI-03\\SB27208 - The Band Perry - Better Dig Two.mp3", + "title": "Better Dig Two" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Gotye Featuring Kimbra", + "playlist_title": "Somebody That I Used To Know", + "found_song": { + "artist": "Gotye ft. Kimbra", + "disabled": false, + "favorite": false, + "guid": "8f041d6a-9930-98b6-d304-b4847c1d8e0a", + "path": "z://MP4\\Sing King Karaoke\\Gotye and Kimbra - Somebody That I Used To Know (Karaoke Version).mp4", + "title": "Somebody That I Used To Know" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "OneRepublic", + "playlist_title": "Feel Again", + "found_song": { + "artist": "Timbaland ft. OneRepublic", + "disabled": false, + "favorite": false, + "guid": "754131ac-66c6-c4c0-06c7-cd4c9c7e8135", + "path": "z://MP4\\Sing King Karaoke\\Timbaland, OneRepublic - Apologize (Karaoke Version).mp4", + "title": "Apologize" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Gary Allan", + "playlist_title": "Every Storm (Runs Out Of Rain)", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "guid": "9c7956eb-d480-f28c-2aee-a78c7190cd97", + "path": "z://CDG\\Various\\Gary Allan - Songs About Rain.mp3", + "title": "Songs About Rain" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Eric Church", + "playlist_title": "Creepin'", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "901d5b3f-755c-c4bf-ec70-26b3e1cf7e94", + "path": "z://MP4\\KtvEntertainment\\Eric Church - Springsteen Karaoke Lyrics.mp4", + "title": "Springsteen" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "2 Chainz Featuring Kanye West", + "playlist_title": "Birthday Song", + "found_song": { + "artist": "2 Chainz Feat. Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd6fe4d0-f594-d53a-8d0c-7e87c0309c35", + "path": "z://CDG\\SBI\\SBI-02\\SBI25842 - 2 Chainz Feat. Kanye West - Birthday Song (Explicit).mp3", + "title": "Birthday Song (Explicit)" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Kendrick Lamar Featuring Drake", + "playlist_title": "Poetic Justice", + "found_song": { + "artist": "Kendrick Lamar & Drake", + "disabled": false, + "favorite": false, + "guid": "a6ff745e-6a9d-9c45-90eb-0d3e5396bb05", + "path": "z://MP4\\singsongsmusic\\Poetic Justice- Karaoke HD (In the style of Kendrick Lamar & Drake).mp4", + "title": "Poetic Justice" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Tip It On Back", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Future", + "playlist_title": "Neva End", + "found_song": { + "artist": "Ariana Grande ft. Future", + "disabled": false, + "favorite": false, + "guid": "5098194c-f1bc-f6e8-90e4-1828bb9b60c7", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande ft. Future - Everyday (Karaoke Version).mp4", + "title": "Everyday" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "50 Cent Featuring Eminem & Adam Levine", + "playlist_title": "My Life", + "found_song": { + "artist": "50 Cent Feat. Eminem And Adam Levine", + "disabled": false, + "favorite": false, + "guid": "f2c62b22-2174-e5ad-c06e-067231a4f325", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF324\\50 Cent Feat. Eminem And Adam Levine - My Life - SF324 - 06.mp3", + "title": "My Life" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 22, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ludacris Featuring Usher & David Guetta", + "title": "Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Meek Mill Featuring Kirko Bangz", + "title": "Young & Gettin' It", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jonn Hart Featuring iamSU", + "title": "Who Booty", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Kelly Rowland Featuring Lil Wayne", + "title": "Ice", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trinidad James", + "title": "All Gold Everything", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ludacris Featuring Kelly Rowland", + "title": "Representin'", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Enrique Iglesias Featuring Sammy Adams", + "title": "Finally Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 22, + "missing_count": 24, + "needs_manual_review": 22 + } + }, + { + "playlist_title": "2011 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Foo Fighters", + "playlist_title": "Walk", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4dce7d7e-8e47-35db-78fd-ff93e2d366a2", + "path": "z://CDG\\Big Hits Karaoke\\BHK019\\BHK019-07 - Foo Fighters - Walk.mp3", + "title": "Walk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Monarchy Of Roses", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "253830f4-2393-35be-2ddc-067ed16012db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Monarchy Of Roses - Red Hot Chili Peppers.mp4", + "title": "Monarchy Of Roses" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Evanescence", + "playlist_title": "What You Want", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "guid": "e064a100-c44a-b603-2d13-76431126c6d6", + "path": "z://CDG\\Big Hits Karaoke\\BHK023\\BHK023-05 - Evanescence - What You Want.mp3", + "title": "What You Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Foo Fighters", + "playlist_title": "Rope", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4be85a29-144c-b6b7-f8cc-6b428b3562fb", + "path": "z://MP4\\Sing King Karaoke\\Foo Fighters - Rope (Karaoke Version).mp4", + "title": "Rope" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Bush", + "playlist_title": "The Sound Of Winter", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5eb0c353-d0c2-a098-2622-7fbbbbf01b92", + "path": "z://MP4\\KaraokeOnVEVO\\Simon & Garfunkel - The Sound Of Silence.mp4", + "title": "The Sound Of Silence" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Chevelle", + "playlist_title": "Face To The Floor", + "found_song": { + "artist": "Chevelle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23ced4fe-25a0-e2f3-1891-6fd6122ec818", + "path": "z://CDG\\SBI\\SBI-03\\SB25997 - Chevelle - Hats Off To The Bull.mp3", + "title": "Hats Off To The Bull" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Foo Fighters", + "playlist_title": "These Days", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "1067951e-0a89-9a85-95bd-c7899b18d818", + "path": "z://CDG\\Big Hits Karaoke\\BHK002\\BHK002-04 - Foo Fighters - Wheels.mp3", + "title": "Wheels" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Seether", + "playlist_title": "Tonight", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "a362accd-2680-adc8-5db4-e2a2803e69a5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight - Kool And The Gang.mp4", + "title": "Tonight" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Adventures Of Rain Dance Maggie", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "f293144c-b9b5-b5a0-10bb-f0005a7f9480", + "path": "z://CDG\\Big Hits Karaoke\\BHK021\\BHK021-06 - Red Hot Chili Peppers - Adventures Of Rain Dance Maggie, The.mp3", + "title": "Adventures Of Rain Dance Maggie, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Avenged Sevenfold", + "playlist_title": "Buried Alive", + "found_song": { + "artist": "Aveenged Sevenfold", + "disabled": false, + "favorite": false, + "guid": "b1f94e3a-390e-e13a-5207-4fed5b134f65", + "path": "z://MP4\\KtvEntertainment\\Aveenged Sevenfold - Afterlife Karaoke Lyrics.mp4", + "title": "Afterlife" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Nickelback", + "playlist_title": "Bottoms Up", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Staind", + "playlist_title": "Not Again", + "found_song": { + "artist": "Pia Mia ft. Chris Brown & Tyga", + "disabled": false, + "favorite": false, + "guid": "c6730a4f-f734-042a-2f1f-78f8cbc40e8a", + "path": "z://MP4\\Sing King Karaoke\\Pia Mia ft. Chris Brown & Tyga - Do It Again (Karaoke Version).mp4", + "title": "Do It Again" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Young The Giant", + "playlist_title": "Cough Syrup", + "found_song": { + "artist": "Young The Giant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c64a5119-9a0d-98c0-62af-fc817f2e4156", + "path": "z://MP4\\ZoomKaraokeOfficial\\Young The Giant - My Body.mp4", + "title": "My Body" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Foster The People", + "playlist_title": "Helena Beat", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "e91c8241-86d8-bd8c-844c-d9418af1dfb6", + "path": "z://MP4\\Karaoke Studio\\Foster The People - Sit Next To Me (Karaoke Version) - YouTube.mp4", + "title": "Sit Next To Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Blink-182", + "playlist_title": "After Midnight", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "guid": "c8834cf0-1b8d-ee95-ed44-e7dcffead456", + "path": "z://CDG\\Big Hits Karaoke\\BHK022\\BHK022-07 - Blink 182 - Up All Night.mp3", + "title": "Up All Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Aberdeen", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 17, + "artist": "Switchfoot", + "title": "Dark Horses", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Korn Featuring Skrillex & Kill The Noise", + "title": "Narcissistic Cannibal", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Adelitas Way", + "title": "The Collapse", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Volbeat", + "title": "A Warrior's Call", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster The People", + "title": "Don't Stop (Color On The Walls)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 12, + "missing_count": 5, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "2011 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "David Guetta Featuring Usher", + "playlist_title": "Without You", + "found_song": { + "artist": "David Guetta Featuring Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f57b769-dfac-bd71-c6bf-48b29e79a770", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Usher - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna Featuring Calvin Harris", + "playlist_title": "We Found Love", + "found_song": { + "artist": "Rihanna ft. Calvin Harris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d07b7b1-175e-23b7-3ee3-56636973e72c", + "path": "z://MP4\\Sing King Karaoke\\Rihanna Featuring Calvin Harris - We Found Love.mp4", + "title": "We Found Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Gym Class Heroes Featuring Adam Levine", + "playlist_title": "Stereo Hearts", + "found_song": { + "artist": "Gym Class Heroes ft. Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40fc8f9c-9b1c-c9ec-2e12-8c8177bd7dbd", + "path": "z://MP4\\Sing King Karaoke\\Gym Class Heroes Featuring Adam Levine - Stereo Hearts.mp4", + "title": "Stereo Hearts" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Maroon 5 Featuring Christina Aguilera", + "playlist_title": "Moves Like Jagger", + "found_song": { + "artist": "Maroon 5 ft. Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c20db65c-dd60-0b09-9705-a51f8f29ef6c", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Christina Aguilera - Moves Like Jagger.mp4", + "title": "Moves Like Jagger" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Cobra Starship Featuring Sabi", + "playlist_title": "You Make Me Feel...", + "found_song": { + "artist": "Cobra Starship & Sabi", + "disabled": false, + "favorite": false, + "guid": "dfabe87d-b423-b860-645b-095e682cc26e", + "path": "z://CDG\\Big Hits Karaoke\\BHK023\\BHK023-02 - Cobra Starship & Sabi - You Make Me Feel.mp3", + "title": "You Make Me Feel" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Drake", + "playlist_title": "Headlines", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e93147-afbb-f269-5553-693d3b54fbc5", + "path": "z://CDG\\SBI\\SBI-03\\SB24922 - Drake - Headlines (Clean).mp3", + "title": "Headlines (Clean)" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 6, + "missing_count": 1, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2011 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "641fd516-918a-d489-27ac-5dfc5cec1d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Where I Come From.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Jason Aldean", + "playlist_title": "Tattoos On This Town", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a5a18e66-9f87-bef1-58ee-1de2431cddfc", + "path": "z://MP4\\Karaoke Studio\\They Don't Know (In the Style of Jason Aldean) Karaoke with Lyrics.mp4", + "title": "They Don't Know" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "David Nail", + "playlist_title": "Let It Rain", + "found_song": { + "artist": "Amanda Marshall", + "disabled": false, + "favorite": false, + "guid": "c1b16d5c-cc1e-b982-688e-adfebae462b6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Rain - Amanda Marshall.mp4", + "title": "Let It Rain" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Chris Young", + "playlist_title": "You", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Band Perry", + "playlist_title": "All Your Life", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "06bbc7e0-cf9a-0b00-3b6d-51da6706eaee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Your Life - The Band Perry.mp4", + "title": "All Your Life" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Reality", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "09cfb568-1ed1-6ab1-e69b-182dbdb192a7", + "path": "z://MP4\\Karaoke Studio\\Kenny Chesney - Get Along (Karaoke with Lyrics).mp4", + "title": "Get Along" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Brad Paisley", + "playlist_title": "Camouflage", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "c7bb01b2-a88a-14b1-58be-8947f3215e82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Alcohol - Brad Paisley.mp4", + "title": "Alcohol" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Storm Warning", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Jake Owen", + "playlist_title": "Alone With You", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f17965fd-5f06-c423-de2b-2653feab1266", + "path": "z://MP4\\Sing King Karaoke\\Akon - Be With You.mp4", + "title": "Be With You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Sara Evans", + "playlist_title": "My Heart Can't Tell You No", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5a0ddb9-f89e-0d5d-4e80-a40aae620105", + "path": "z://MP4\\KaraokeOnVEVO\\Rod Stewart - My Heart Can t Tell You No.mp4", + "title": "My Heart Can t Tell You No" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "George Strait", + "title": "Love's Gonna Make It Alright", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "James Wesley", + "title": "Didn't I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 11, + "missing_count": 5, + "needs_manual_review": 11 + } + }, + { + "playlist_title": "2011 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "David Guetta Featuring Usher", + "playlist_title": "Without You", + "found_song": { + "artist": "David Guetta Featuring Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f57b769-dfac-bd71-c6bf-48b29e79a770", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Usher - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Just A Kiss", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "a81c933d-a6cf-6ed1-5df2-da0f4e8f831c", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Just A Kiss (Karaoke Version).mp4", + "title": "Just A Kiss" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mistletoe", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "14f98985-95a4-5b33-156a-61c2d2ae1fca", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Mistletoe (Karaoke Version).mp4", + "title": "Mistletoe" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Bass", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "2f417a85-4982-f23b-1694-1d983e5b3795", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Bass (Karaoke Version).mp4", + "title": "Super Bass" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Blake Shelton", + "playlist_title": "God Gave Me You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "5e6c1262-d330-6e28-d8b2-7563f3f4439c", + "path": "z://MP4\\KtvEntertainment\\Blake Shelton - God Gave Me You (Karaoke without Vocal).mp4", + "title": "God Gave Me You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Breathe Carolina", + "playlist_title": "Blackout", + "found_song": { + "artist": "Breathe Carolina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a76b4f39-46ad-6a1e-68a0-71598605d86b", + "path": "z://CDG\\SBI\\SBI-03\\SB25502 - Breathe Carolina - Blackout.mp3", + "title": "Blackout" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Jason Derulo", + "playlist_title": "It Girl", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "9305880d-ee07-8743-8bc0-1c03303ce8df", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - It Girl (Karaoke Version).mp4", + "title": "It Girl" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Tyga", + "playlist_title": "Rack City", + "found_song": { + "artist": "Tyga", + "disabled": false, + "favorite": false, + "guid": "7c7c8fe1-8f6d-95b6-8554-9b18d2721c55", + "path": "z://MP4\\singsongsmusic\\Rack City - Karaoke HD (In the style of Tyga).mp4", + "title": "Rack City" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Drake Featuring Rihanna", + "playlist_title": "Take Care", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Christina Perri", + "playlist_title": "A Thousand Years", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": true, + "guid": "f8282f88-3279-79ed-1350-5067b9c60067", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - A Thousand Years (Karaoke Version).mp4", + "title": "A Thousand Years" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Outasight", + "playlist_title": "Tonight Is The Night", + "found_song": { + "artist": "Outasight", + "disabled": false, + "favorite": false, + "guid": "52edc9ce-31cb-afba-0100-27d7b1c0b541", + "path": "z://CDG\\Big Hits Karaoke\\BHK031\\BHK031-03 - Outasight - Tonight Is The Night.mp3", + "title": "Tonight Is The Night" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Lady Gaga", + "playlist_title": "You And I", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "17481e56-95ec-7442-5a61-ab87dbb0aa20", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - You And I (Karaoke Version).mp4", + "title": "You And I" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Fray", + "playlist_title": "Heartbeat", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "fe155f91-fd8a-64fa-d152-ff237a71eb26", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbeat - The Fray.mp4", + "title": "Heartbeat" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Nickelback", + "playlist_title": "When We Stand Together", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "64215bb4-4f50-91eb-9a1c-4d34f1038070", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-08 - Nickelback - When We Stand Together.mp3", + "title": "When We Stand Together" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "David Guetta Featuring Nicki Minaj", + "playlist_title": "Turn Me On", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Avicii", + "playlist_title": "Levels", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "c4048f7e-f544-e6f6-9b4c-fd338a8fa798", + "path": "z://MP4\\singsongsmusic\\Levels - Karaoke HD (In the style of Avicii).mp4", + "title": "Levels" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Fun. Featuring Janelle Monae", + "playlist_title": "We Are Young", + "found_song": { + "artist": "Fun. Featuring Janelle Monae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f84dd295-803a-b811-4f43-985cf59419b1", + "path": "z://MP4\\Sing King Karaoke\\Fun. Featuring Janelle Monae - We Are Young.mp4", + "title": "We Are Young" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Beyonce", + "playlist_title": "Countdown", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7438575d-1f0d-a020-c832-1f04331e37fb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Countdown.mp4", + "title": "Countdown" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Grouplove", + "playlist_title": "Tongue Tied", + "found_song": { + "artist": "Grouplove", + "disabled": false, + "favorite": false, + "guid": "7c507d6f-1aad-9a95-a34e-a82c04af7924", + "path": "z://MP4\\Sing King Karaoke\\Grouplove - Tongue Tied (Karaoke Version).mp4", + "title": "Tongue Tied" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Beyonce", + "playlist_title": "Love On Top", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "bf0a1046-a83e-bba1-1679-b311d4cab5b6", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Love On Top (Karaoke Version).mp4", + "title": "Love On Top" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Thompson Square", + "playlist_title": "I Got You", + "found_song": { + "artist": "Thompson Square", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1e5d09-7a9b-517b-5a5f-da7aca77708e", + "path": "z://MP4\\KaraokeOnVEVO\\Thompson Square - I Got You.mp4", + "title": "I Got You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna Featuring Calvin Harris", + "playlist_title": "We Found Love", + "found_song": { + "artist": "Rihanna ft. Calvin Harris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d07b7b1-175e-23b7-3ee3-56636973e72c", + "path": "z://MP4\\Sing King Karaoke\\Rihanna Featuring Calvin Harris - We Found Love.mp4", + "title": "We Found Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Maroon 5 Featuring Christina Aguilera", + "playlist_title": "Moves Like Jagger", + "found_song": { + "artist": "Maroon 5 ft. Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c20db65c-dd60-0b09-9705-a51f8f29ef6c", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 Featuring Christina Aguilera - Moves Like Jagger.mp4", + "title": "Moves Like Jagger" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Gym Class Heroes Featuring Adam Levine", + "playlist_title": "Stereo Hearts", + "found_song": { + "artist": "Gym Class Heroes ft. Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40fc8f9c-9b1c-c9ec-2e12-8c8177bd7dbd", + "path": "z://MP4\\Sing King Karaoke\\Gym Class Heroes Featuring Adam Levine - Stereo Hearts.mp4", + "title": "Stereo Hearts" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Big Sean Featuring Nicki Minaj", + "playlist_title": "Dance (A$$)", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "J. Cole", + "playlist_title": "Work Out", + "found_song": { + "artist": "J. Cole", + "disabled": false, + "favorite": false, + "guid": "6d1849a1-8749-f5e5-ee32-8e5c5fb58b50", + "path": "z://MP4\\KaraokeOnVEVO\\J. Cole - KOD (Karaoke).mp4", + "title": "KOD" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "playlist_title": "Party Rock Anthem", + "found_song": { + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb478ed8-17ee-5e13-6450-936df77a13b1", + "path": "z://MP4\\Sing King Karaoke\\LMFAO Featuring Lauren Bennett & GoonRock - Party Rock Anthem.mp4", + "title": "Party Rock Anthem" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Drake", + "playlist_title": "Headlines", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e93147-afbb-f269-5553-693d3b54fbc5", + "path": "z://CDG\\SBI\\SBI-03\\SB24922 - Drake - Headlines (Clean).mp3", + "title": "Headlines (Clean)" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Cobra Starship Featuring Sabi", + "playlist_title": "You Make Me Feel...", + "found_song": { + "artist": "Cobra Starship & Sabi", + "disabled": false, + "favorite": false, + "guid": "dfabe87d-b423-b860-645b-095e682cc26e", + "path": "z://CDG\\Big Hits Karaoke\\BHK023\\BHK023-02 - Cobra Starship & Sabi - You Make Me Feel.mp3", + "title": "You Make Me Feel" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Drake Featuring Nicki Minaj", + "playlist_title": "Make Me Proud", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Pitbull Featuring Chris Brown", + "playlist_title": "International Love", + "found_song": { + "artist": "Pitbull ft. Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ffb0eb7-6253-c3a9-08f4-4659cfe299b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pitbull feat Chris Brown - International Love.mp4", + "title": "International Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Lil Wayne Featuring Drake", + "playlist_title": "She Will", + "found_song": { + "artist": "Lil Wayne, Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34b1d05d-096b-daa8-aa0d-0d5114bdd939", + "path": "z://MP4\\Sing King Karaoke\\Lil Wayne, Drake - She Will (Karaoke Version).mp4", + "title": "She Will" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Jason Aldean", + "playlist_title": "Tattoos On This Town", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a5a18e66-9f87-bef1-58ee-1de2431cddfc", + "path": "z://MP4\\Karaoke Studio\\They Don't Know (In the Style of Jason Aldean) Karaoke with Lyrics.mp4", + "title": "They Don't Know" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Hot Chelle Rae Featuring New Boyz", + "playlist_title": "I Like It Like That", + "found_song": { + "artist": "Hot Chelle Rae", + "disabled": false, + "favorite": false, + "guid": "726e9fb5-1755-05e4-520f-c2cad3742d25", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-08 - Hot Chelle Rae - I Like It Like That.mp3", + "title": "I Like It Like That" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "David Nail", + "playlist_title": "Let It Rain", + "found_song": { + "artist": "Amanda Marshall", + "disabled": false, + "favorite": false, + "guid": "c1b16d5c-cc1e-b982-688e-adfebae462b6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Rain - Amanda Marshall.mp4", + "title": "Let It Rain" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Chris Young", + "playlist_title": "You", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Band Perry", + "playlist_title": "All Your Life", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "06bbc7e0-cf9a-0b00-3b6d-51da6706eaee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Your Life - The Band Perry.mp4", + "title": "All Your Life" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Glee Cast", + "playlist_title": "We Are Young", + "found_song": { + "artist": "Fun ft. Janelle Monae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ca7b9b3-2810-25ef-d8bb-4f423175385e", + "path": "z://MP4\\Sing King Karaoke\\Fun Feat. Janelle Monae - We Are Young.mp4", + "title": "We Are Young" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Brighter Than The Sun", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "75c235fa-d870-f337-b61c-63b0e93d6e22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Bottle - Colbie Caillat.mp4", + "title": "Midnight Bottle" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Baggage Claim", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ae06a979-9a9d-3fcf-53d5-4dd71f35eb2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baggage Claim - Miranda Lambert.mp4", + "title": "Baggage Claim" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Jake Owen", + "playlist_title": "Alone With You", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f17965fd-5f06-c423-de2b-2653feab1266", + "path": "z://MP4\\Sing King Karaoke\\Akon - Be With You.mp4", + "title": "Be With You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Reality", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "09cfb568-1ed1-6ab1-e69b-182dbdb192a7", + "path": "z://MP4\\Karaoke Studio\\Kenny Chesney - Get Along (Karaoke with Lyrics).mp4", + "title": "Get Along" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Lavigne, Avril", + "disabled": false, + "favorite": false, + "guid": "a1f90a2c-477d-435e-a5ce-0ae5cfb4149b", + "path": "z://CDG\\Big Hits Karaoke\\BHK024\\BHK024-04 - Lavigne, Avril - Wish You Were Here.mp3", + "title": "Wish You Were Here" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Tim McGraw", + "playlist_title": "Better Than I Used To Be", + "found_song": { + "artist": "Nelly ft. Tim Mcgraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6138285f-b04b-db54-6852-4d87116add35", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly & Tim Mcgraw - Over And Over.mp4", + "title": "Over And Over" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Storm Warning", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Script", + "playlist_title": "Nothing", + "found_song": { + "artist": "Script", + "disabled": false, + "favorite": false, + "guid": "1cf5a6ef-3117-3984-a7b8-2a2ba8cc6162", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF298\\Script - Nothing - SF298 - 07.mp3", + "title": "Nothing" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Brad Paisley", + "playlist_title": "Camouflage", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "c7bb01b2-a88a-14b1-58be-8947f3215e82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Alcohol - Brad Paisley.mp4", + "title": "Alcohol" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Glee Cast", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78e4e993-272c-c615-986a-e472fd11a995", + "path": "z://MP4\\Sing King Karaoke\\Band Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Romeo Santos Featuring Usher", + "playlist_title": "Promise", + "found_song": { + "artist": "Romeo Santos", + "disabled": false, + "favorite": false, + "guid": "4f06636b-0185-e546-35c0-a9325ee8cc54", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Promise - Romeo Santos.mp4", + "title": "Promise" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Roscoe Dash", + "playlist_title": "Good Good Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "5cd66507-9970-89c0-c4d4-c8452c61df32", + "path": "z://MP4\\TheKARAOKEChannel\\Goodnight Goodnight in the Style of Maroon 5 with lyrics (no lead vocal).mp4", + "title": "Goodnight Goodnight" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Michael Buble", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "2a03aa86-69b8-2125-b363-88b9e88ead0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All I Want For Christmas Is You - Michael Bublé.mp4", + "title": "All I Want For Christmas Is You" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Jay Z Kanye West", + "title": "Ni**as in Paris", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "title": "Young, Wild & Free", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "title": "Give Me Everything", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Drake Featuring Lil Wayne", + "title": "The Motto", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "title": "Sleazy Remix 2.0 Get Sleazier", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Wale Featuring Miguel", + "title": "Lotus Flower Bomb", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Nicki Minaj Featuring Rihanna", + "title": "Fly", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.o.B Featuring Lil Wayne", + "title": "Strange Clouds", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Beyonce Featuring Andre 3000", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "J. Cole Featuring Trey Songz", + "title": "Can't Get Enough", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rick Ross Featuring Nicki Minaj", + "title": "You The Boss", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Wale Featuring Jeremih & Rick Ross", + "title": "That Way", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Bang Bang Pow Pow", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Waka Flocka Flame Featuring Drake", + "title": "Round Of Applause", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lee Brice", + "title": "A Woman Like You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Gym Class Heroes Featuring Neon Hitch", + "title": "Ass Back Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 33, + "missing_count": 20, + "needs_manual_review": 33 + } + }, + { + "playlist_title": "2010 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 9, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "R. Kelly", + "playlist_title": "When A Woman Loves", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "090ea035-9580-039d-0b17-295f18e82874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Woman Loves - R. Kelly.mp4", + "title": "When A Woman Loves" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Usher", + "playlist_title": "There Goes My Baby", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "5af23df0-2293-5d64-4ab9-372b1461f50d", + "path": "z://MP4\\KtvEntertainment\\Usher - There Goes My Baby (Karaoke without Vocal).mp4", + "title": "There Goes My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Trey Songz", + "playlist_title": "Can't Be Friends", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "b4689213-69f2-e643-0071-704788ad6bec", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - we can't be friends (wait for your love) (Karaoke Version).mp4", + "title": "we can't be friends" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Right Thru Me", + "found_song": { + "artist": "Nicki Minaj ft. Chris Brown", + "disabled": false, + "favorite": false, + "guid": "2fc57c99-e5c3-a5dc-f714-f5ec993ed7a2", + "path": "z://MP4\\Karaoke Sing Sing\\Nicki Minaj & Chris Brown - Right By My Side (Karaoke Version) (2).mp4", + "title": "Right By My Side" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Rihanna Featuring Drake", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Rihanna ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "577e640d-2ee9-be1e-e749-6eab00105cce", + "path": "z://MP4\\Sing King Karaoke\\Rihanna, Drake - Whats My Name.mp4", + "title": "What's My Name?" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Fantasia", + "playlist_title": "I'm Doing Me", + "found_song": { + "artist": "Fantasia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46f0d70f-c4e3-27c8-64f3-070429e70282", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 856\\Fantasia - I Believe - SFMW 856 -11.mp3", + "title": "I Believe" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Charlie Wilson", + "playlist_title": "You Are", + "found_song": { + "artist": "Charlie Winston", + "disabled": false, + "favorite": false, + "guid": "b585e959-65c6-3119-87fc-e4ed9f0f6fca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In Your Hands - Charlie Winston.mp4", + "title": "In Your Hands" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Eric Benet", + "playlist_title": "Sometimes I Cry", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "7099c496-ff1b-fa0c-eafc-8d623d621aa4", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Sometimes I Cry Karaoke.mp4", + "title": "Sometimes I Cry" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Diddy - Dirty Money Featuring Drake", + "playlist_title": "Loving You No More", + "found_song": { + "artist": "Diddy", + "disabled": false, + "favorite": false, + "guid": "729536e9-1527-ca18-bbd6-2eed4c560612", + "path": "z://MP4\\TheKARAOKEChannel\\Diddy - Dirty Money feat. Skylar Grey - Coming Home.mp4", + "title": "Dirty Money feat. Skylar Grey - Coming Home" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "10 Seconds", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jazmine Sullivan", + "title": "Holding You Down (Goin In Circles)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 8, + "missing_count": 10, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2010 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "e84999e7-a485-8964-f2c4-36a95a2640a0", + "path": "z://CDG\\Big Hits Karaoke\\BHK013\\BHK013-08 - Kings Of Leon - Radioactive.mp3", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Undisclosed Desires", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "15b73041-f109-ac0e-80da-084107c98e3a", + "path": "z://CDG\\Big Hits Karaoke\\BHK004\\BHK004-07 - Muse - Undisclosed Desires.mp3", + "title": "Undisclosed Desires" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Shake Me Down", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "98ce324e-07f5-e067-7250-fe27c3f1ead2", + "path": "z://MP4\\singsongsmusic\\Shake me Down - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Shake me Down" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Sing", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "530d4d52-cc02-fb34-da25-cba1201b9e8d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sing - My Chemical Romance.mp4", + "title": "Sing" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hinder", + "playlist_title": "All American Nightmare", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "guid": "1052f65c-6251-025e-4f12-d00f1f74f882", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-033 - Hinder - All American Nightmare (Karaoke).mp4", + "title": "All American Nightmare" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Far From Home", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "402467c9-830a-24e3-94e5-a2521e4b1cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Far From Home - Five Finger Death Punch.mp4", + "title": "Far From Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "The Black Keys", + "playlist_title": "Tighten Up", + "found_song": { + "artist": "Archie Bell ft. The Drells", + "disabled": false, + "favorite": false, + "guid": "a013a669-64c6-1ed3-e68b-7bfb6269513d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF073\\Archie Bell & The Drells - Tighten Up - SF073 - 07.mp3", + "title": "Tighten Up" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Linkin Park", + "playlist_title": "Waiting For The End", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "51afd01e-6d42-4ef2-a317-f31964de6046", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - In The End (Karaoke Version) (2).mp4", + "title": "In The End" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Stone Sour", + "playlist_title": "Say You'll Haunt Me", + "found_song": { + "artist": "Steps", + "disabled": false, + "favorite": false, + "guid": "a47563ea-d5cd-1b56-eb1d-5d3e1046d62c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF154\\Steps - Say You'll Be Mine - SF154 - 04.mp3", + "title": "Say You'll Be Mine" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Three Days Grace", + "playlist_title": "World So Cold", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "93f41381-7a43-06c0-b3b6-297a57cd6d84", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Late - Three Days Grace.mp4", + "title": "Never Too Late" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "My Darkest Days Featuring Zakk Wylde", + "playlist_title": "Porn Star Dancing", + "found_song": { + "artist": "My Darkest Days", + "disabled": false, + "favorite": false, + "guid": "a4d0687c-4ea4-93ef-b944-0d5a43ebbd63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Porn Star Dancing - My Darkest Days.mp4", + "title": "Porn Star Dancing" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Cake", + "playlist_title": "Sick Of You", + "found_song": { + "artist": "GWAR", + "disabled": false, + "favorite": false, + "guid": "6b2de195-22d8-7788-245f-f0da09e12dc5", + "path": "z://MP4\\KaraokeOnVEVO\\GWAR - Sick Of You (Karaoke).mp4", + "title": "Sick Of You" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Disturbed", + "playlist_title": "The Animal", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "95293349-45e4-d019-b487-f2a5c3e76acf", + "path": "z://MP4\\KtvEntertainment\\Disturbed - The Light Karaoke Lyrics.mp4", + "title": "The Light" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Closer To The Edge", + "found_song": { + "artist": "30 Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "cbeecb81-944f-558e-cd04-8303a882ff54", + "path": "z://CDG\\Big Hits Karaoke\\BHK012\\BHK012-02 - 30 Seconds To Mars - Closer To The Edge.mp3", + "title": "Closer To The Edge" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "Godsmack", + "title": "Love-Hate-Sex-Pain", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Saving Abel", + "title": "The Sex Is Good", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Dirty Heads Featuring Rome", + "title": "Lay Me Down", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Phoenix", + "title": "Lisztomania", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Alter Bridge", + "title": "Isolation", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Avenged Sevenfold", + "title": "Welcome To The Family", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "10 Years", + "title": "Shoot It Out", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 9, + "missing_count": 8, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2010 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Far*East Movement Featuring Cataracs & Dev", + "playlist_title": "Like A G6", + "found_song": { + "artist": "Far East Movement Feat Cataracs & Dev", + "disabled": false, + "favorite": false, + "guid": "4edf8265-2411-dec4-a625-e478b32cd162", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF298\\Far East Movement Feat Cataracs & Dev - Like A G Six - SF298 - 05.mp3", + "title": "Like A G Six" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Rihanna Featuring Drake", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Rihanna ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "577e640d-2ee9-be1e-e749-6eab00105cce", + "path": "z://MP4\\Sing King Karaoke\\Rihanna, Drake - Whats My Name.mp4", + "title": "What's My Name?" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Usher Featuring Pitbull", + "playlist_title": "DJ Got Us Fallin' In Love", + "found_song": { + "artist": "Usher ft. Pitbull", + "disabled": false, + "favorite": false, + "guid": "bf3b8bea-b49c-5f29-8d5c-4c97f0bf4bf2", + "path": "z://MP4\\TheKARAOKEChannel\\Usher feat. Pitbull - DJ Got Us Fallin' In Love.mp4", + "title": "DJ Got Us Fallin' In Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Edward Maya & Vika Jigulina", + "playlist_title": "Stereo Love", + "found_song": { + "artist": "Edward Maya & Vika Jigulina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "899e08a1-008b-2c5b-3b8e-985313551650", + "path": "z://MP4\\Sing King Karaoke\\Edward Maya & Vika Jigulina - Stereo Love.mp4", + "title": "Stereo Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "playlist_title": "Tonight (I'm Lovin' You)", + "found_song": { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c36aca96-aba5-fac4-5017-ba27e2f6b4f8", + "path": "z://MP4\\sing2karaoke\\Enrique Iglesias Featuring Ludacris & DJ Frank E - Tonight (I'm Lovin' You).mp4", + "title": "Tonight (I'm Lovin' You)" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 5, + "missing_count": 2, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2010 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Brad Paisley", + "playlist_title": "This Is Country Music", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e42d07-74dc-9d0e-9a92-10287b97963d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - This Is Country Music.mp4", + "title": "This Is Country Music" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jason Aldean With Kelly Clarkson", + "playlist_title": "Don't You Wanna Stay", + "found_song": { + "artist": "Jason Aldean With Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d4fe00-d9e8-2c6b-1673-0c068d9ea361", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Aldean With Kelly Clarkson - Dont You Wanna Stay.mp4", + "title": "Don't You Wanna Stay" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Reba", + "playlist_title": "Turn On The Radio", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fcf4de57-b0c3-8c65-d89e-9c3885600855", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF318\\Madonna - Turn Up The Radio - SF318 - 06.mp3", + "title": "Turn Up The Radio" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Mama's Song", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "b89dffe7-a89f-8a8d-31ed-72afc954765d", + "path": "z://MP4\\TheKARAOKEChannel\\Carrie Underwood - Last Name.mp4", + "title": "Last Name" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Tim McGraw", + "playlist_title": "Felt Good On My Lips", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6576795f-1fdc-cb0c-c434-47749434d55d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Real Good Man.mp4", + "title": "Real Good Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Zac Brown Band Featuring Alan Jackson", + "playlist_title": "As She's Walking Away", + "found_song": { + "artist": "Zac Brown Band ft. Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eca1bee8-62ed-8dff-0e8f-33df6c67b477", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band Featuring Alan Jackson - As Shes Walking Away.mp4", + "title": "As She's Walking Away" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Somewhere With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "George Strait", + "playlist_title": "The Breath You Take", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "2e7194c0-15e2-aa1d-a44a-517885a4fbe8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Fireman - George Strait.mp4", + "title": "The Fireman" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Band Perry", + "playlist_title": "If I Die Young", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "4c81a573-b5e5-8cc3-5403-203b149ece84", + "path": "z://MP4\\Sing King Karaoke\\The Band Perry - If I Die Young (Karaoke Version).mp4", + "title": "If I Die Young" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "Put You In A Song", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "Bullets In The Gun", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7c97487-a72a-e2a8-d631-403ff2f5ad18", + "path": "z://MP4\\ZoomKaraokeOfficial\\Take That - Let In The Sun.mp4", + "title": "Let In The Sun" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Billy Currington", + "playlist_title": "Let Me Down Easy", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "386dc078-1a6b-ba93-aabe-481077a89324", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke People Are Crazy - Billy Currington.mp4", + "title": "People Are Crazy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "The JaneDear Girls", + "playlist_title": "Wildflower", + "found_song": { + "artist": "the JaneDear girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92ce709d-0ab9-35dc-c500-1f367b3cd464", + "path": "z://MP4\\Sing King Karaoke\\SingKingKaraoke - the JaneDear girls - Good Girls Gone Bad (Karaoke Version).mp4", + "title": "Good Girls Gone Bad" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Jerrod Niemann", + "playlist_title": "What Do You Want", + "found_song": { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fe1f5f9-b1f5-aa87-4224-077a95dc9ac4", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - What Do You Want.mp4", + "title": "What Do You Want" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 21, + "artist": "Sunny Sweeney", + "title": "From A Table Away", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Joe Nichols", + "title": "The Shape I'm In", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 14, + "missing_count": 2, + "needs_manual_review": 14 + } + }, + { + "playlist_title": "2010 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "OneRepublic", + "playlist_title": "Secrets", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "0659bf0a-7b36-981e-a88c-0f2f83583d80", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Secrets (Karaoke Version).mp4", + "title": "Secrets" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eminem Featuring Rihanna", + "playlist_title": "Love The Way You Lie", + "found_song": { + "artist": "Eminem Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1346e2a7-efdf-18cd-07fb-915f1a68c16d", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem Featuring Rihanna - Love The Way You Lie.mp4", + "title": "Love The Way You Lie" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Christina Perri", + "playlist_title": "Jar Of Hearts", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": false, + "guid": "819790b5-eac8-1127-8078-d8703ca887a6", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - Jar Of Hearts (Karaoke Version).mp4", + "title": "Jar Of Hearts" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Plain White T's", + "playlist_title": "Rhythm of Love", + "found_song": { + "artist": "Plain White T's", + "disabled": false, + "favorite": false, + "guid": "74cf8c8e-86ef-569e-d337-e78bd78edcfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rhythm Of Love - Plain White T s.mp4", + "title": "Rhythm Of Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Jason Aldean With Kelly Clarkson", + "playlist_title": "Don't You Wanna Stay", + "found_song": { + "artist": "Jason Aldean With Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d4fe00-d9e8-2c6b-1673-0c068d9ea361", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Aldean With Kelly Clarkson - Dont You Wanna Stay.mp4", + "title": "Don't You Wanna Stay" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Akon", + "playlist_title": "Angel", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "guid": "c0ee5fff-3632-1ef8-e5f4-2487efafd14b", + "path": "z://MP4\\KtvEntertainment\\Akon - Angel (Karaoke without Vocal).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Train", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68cf19d8-3308-9a5c-9e8b-e813216a7e0c", + "path": "z://MP4\\Sing King Karaoke\\Train - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Strip Me", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "385488b2-1161-d46a-0dc3-a977df0e1a46", + "path": "z://MP4\\KaraokeOnVEVO\\Natasha Bedingfield - Strip Me.mp4", + "title": "Strip Me" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Daughtry", + "playlist_title": "September", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb9a51ee-833a-7f98-9a6e-a4be6e365b50", + "path": "z://MP4\\KaraokeOnVEVO\\Daughtry - September.mp4", + "title": "September" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Rihanna Featuring Drake", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Rihanna ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "577e640d-2ee9-be1e-e749-6eab00105cce", + "path": "z://MP4\\Sing King Karaoke\\Rihanna, Drake - Whats My Name.mp4", + "title": "What's My Name?" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Far*East Movement Featuring Cataracs & Dev", + "playlist_title": "Like A G6", + "found_song": { + "artist": "Far East Movement Feat Cataracs & Dev", + "disabled": false, + "favorite": false, + "guid": "4edf8265-2411-dec4-a625-e478b32cd162", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF298\\Far East Movement Feat Cataracs & Dev - Like A G Six - SF298 - 05.mp3", + "title": "Like A G Six" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Usher Featuring Pitbull", + "playlist_title": "DJ Got Us Fallin' In Love", + "found_song": { + "artist": "Usher ft. Pitbull", + "disabled": false, + "favorite": false, + "guid": "bf3b8bea-b49c-5f29-8d5c-4c97f0bf4bf2", + "path": "z://MP4\\TheKARAOKEChannel\\Usher feat. Pitbull - DJ Got Us Fallin' In Love.mp4", + "title": "DJ Got Us Fallin' In Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "playlist_title": "Tonight (I'm Lovin' You)", + "found_song": { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c36aca96-aba5-fac4-5017-ba27e2f6b4f8", + "path": "z://MP4\\sing2karaoke\\Enrique Iglesias Featuring Ludacris & DJ Frank E - Tonight (I'm Lovin' You).mp4", + "title": "Tonight (I'm Lovin' You)" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Edward Maya & Vika Jigulina", + "playlist_title": "Stereo Love", + "found_song": { + "artist": "Edward Maya & Vika Jigulina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "899e08a1-008b-2c5b-3b8e-985313551650", + "path": "z://MP4\\Sing King Karaoke\\Edward Maya & Vika Jigulina - Stereo Love.mp4", + "title": "Stereo Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Cee Lo Green", + "playlist_title": "F**k You (Forget You)", + "found_song": { + "artist": "Cee Lo Green", + "disabled": false, + "favorite": false, + "guid": "6fd0d9e1-ad99-0f4e-0fac-54957f3f8874", + "path": "z://MP4\\Sing King Karaoke\\Cee Lo Green - Forget You (Karaoke Version).mp4", + "title": "Forget You" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Diddy - Dirty Money Featuring Skylar Grey", + "playlist_title": "Coming Home", + "found_song": { + "artist": "Diddy", + "disabled": false, + "favorite": false, + "guid": "729536e9-1527-ca18-bbd6-2eed4c560612", + "path": "z://MP4\\TheKARAOKEChannel\\Diddy - Dirty Money feat. Skylar Grey - Coming Home.mp4", + "title": "Dirty Money feat. Skylar Grey - Coming Home" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Right Thru Me", + "found_song": { + "artist": "Nicki Minaj ft. Chris Brown", + "disabled": false, + "favorite": false, + "guid": "2fc57c99-e5c3-a5dc-f714-f5ec993ed7a2", + "path": "z://MP4\\Karaoke Sing Sing\\Nicki Minaj & Chris Brown - Right By My Side (Karaoke Version) (2).mp4", + "title": "Right By My Side" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "The Band Perry", + "playlist_title": "If I Die Young", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "4c81a573-b5e5-8cc3-5403-203b149ece84", + "path": "z://MP4\\Sing King Karaoke\\The Band Perry - If I Die Young (Karaoke Version).mp4", + "title": "If I Die Young" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Flo Rida Featuring David Guetta", + "playlist_title": "Club Can't Handle Me", + "found_song": { + "artist": "Flo Rida & David Guetta", + "disabled": false, + "favorite": false, + "guid": "7f5578e3-59fb-a96f-8d04-4d748597cdd8", + "path": "z://CDG\\Big Hits Karaoke\\BHK011\\BHK011-02 - Flo Rida & David Guetta - Club Can't Handle Me.mp3", + "title": "Club Can't Handle Me" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Enrique Iglesias Featuring Pitbull", + "playlist_title": "I Like It", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "3c7a12d1-8f85-ccdc-a9a4-644b3d072cd3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF294\\Enrique Iglesias - I Like It - SF294 - 01.mp3", + "title": "I Like It" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Pitbull Featuring T-Pain", + "playlist_title": "Hey Baby (Drop It To The Floor)", + "found_song": { + "artist": "Pitbull ft. T Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b95425c-78f2-4bfd-2cfd-eafbf1175628", + "path": "z://MP4\\Sing King Karaoke\\Pitbull & T Pain - Hey Baby (Drop It To The Floor).mp4", + "title": "Hey Baby (Drop It To The Floor)" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Somewhere With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Tim McGraw", + "playlist_title": "Felt Good On My Lips", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6576795f-1fdc-cb0c-c434-47749434d55d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Real Good Man.mp4", + "title": "Real Good Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Sugarland", + "playlist_title": "Stuck Like Glue", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "2d6eb405-f7d9-2468-9756-a52d43119497", + "path": "z://MP4\\singsongsmusic\\Stuck Like Glue - Karaoke HD (In the style of Sugarland).mp4", + "title": "Stuck Like Glue" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Trey Songz", + "playlist_title": "Can't Be Friends", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "b4689213-69f2-e643-0071-704788ad6bec", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - we can't be friends (wait for your love) (Karaoke Version).mp4", + "title": "we can't be friends" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "David Guetta Featuring Kid Cudi", + "playlist_title": "Memories", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Zac Brown Band Featuring Alan Jackson", + "playlist_title": "As She's Walking Away", + "found_song": { + "artist": "Zac Brown Band ft. Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eca1bee8-62ed-8dff-0e8f-33df6c67b477", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band Featuring Alan Jackson - As Shes Walking Away.mp4", + "title": "As She's Walking Away" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Mine", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb273be-068e-64d2-bb99-37700be02b36", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Mine.mp4", + "title": "Mine" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Yolanda Be Cool & Dcup", + "playlist_title": "We No Speak Americano", + "found_song": { + "artist": "Yolanda Be Cool ft D Cup", + "disabled": false, + "favorite": false, + "guid": "e5fdf6aa-985e-4963-ca32-9717918517cf", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF294\\Yolanda Be Cool ft D Cup - We No Speak Americano - SF294 - 07.mp3", + "title": "We No Speak Americano" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Reba", + "playlist_title": "Turn On The Radio", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fcf4de57-b0c3-8c65-d89e-9c3885600855", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF318\\Madonna - Turn Up The Radio - SF318 - 06.mp3", + "title": "Turn Up The Radio" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Mama's Song", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "b89dffe7-a89f-8a8d-31ed-72afc954765d", + "path": "z://MP4\\TheKARAOKEChannel\\Carrie Underwood - Last Name.mp4", + "title": "Last Name" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Glee Cast", + "playlist_title": "Baby, It's Cold Outside", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "d846ccbb-5dbb-4803-37ec-22ba726b146a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s Cold Outside - Glee.mp4", + "title": "Baby It s Cold Outside" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Glee Cast", + "playlist_title": "Welcome Christmas", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "2a10be40-8ef9-2dce-9350-3a525fe84a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Christmas - Glee.mp4", + "title": "Last Christmas" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Far*East Movement Featuring Ryan Tedder", + "playlist_title": "Rocketeer", + "found_song": { + "artist": "Far East Movement Feat.ryan Tedder", + "disabled": false, + "favorite": false, + "guid": "e5cf7498-cabe-eb0a-efb0-562de4391e64", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF301\\Far East Movement Feat.ryan Tedder - Rocketeer - SF301 - 08.mp3", + "title": "Rocketeer" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Keith Urban", + "playlist_title": "Put You In A Song", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Jeremih Featuring 50 Cent", + "playlist_title": "Down On Me", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Michael Jackson Duet With Akon", + "playlist_title": "Hold My Hand", + "found_song": { + "artist": "Michael Jackson ft. Akon", + "disabled": false, + "favorite": false, + "guid": "224abe20-5cd5-546c-aaee-f1e3583dec79", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF299\\Michael Jackson & Akon - Hold My Hand - SF299 - 10.mp3", + "title": "Hold My Hand" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "George Strait", + "playlist_title": "The Breath You Take", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "2e7194c0-15e2-aa1d-a44a-517885a4fbe8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Fireman - George Strait.mp4", + "title": "The Fireman" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Billy Currington", + "playlist_title": "Let Me Down Easy", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "386dc078-1a6b-ba93-aabe-481077a89324", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke People Are Crazy - Billy Currington.mp4", + "title": "People Are Crazy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Brad Paisley", + "playlist_title": "Anything Like Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "397906e3-263d-0420-f146-c06842e2f745", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Ticks.mp4", + "title": "Ticks" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Linkin Park", + "playlist_title": "Waiting For The End", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "51afd01e-6d42-4ef2-a317-f31964de6046", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - In The End (Karaoke Version) (2).mp4", + "title": "In The End" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Toby Keith", + "playlist_title": "Bullets In The Gun", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7c97487-a72a-e2a8-d631-403ff2f5ad18", + "path": "z://MP4\\ZoomKaraokeOfficial\\Take That - Let In The Sun.mp4", + "title": "Let In The Sun" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Shake", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ce0a6ca-223e-03a7-1e2f-badd0a7bbdef", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jesse McCartney - Just So You Know.mp4", + "title": "Just So You Know" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Dev Featuring The Cataracs", + "playlist_title": "Bass Down Low", + "found_song": { + "artist": "Dev ft The Cataracs", + "disabled": false, + "favorite": false, + "guid": "fddc8f74-fc2c-8b35-675e-7458296d7e5f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF304\\Dev ft The Cataracs - Bass Down Low (clean) - SF304 - 15.mp3", + "title": "Bass Down Low (clean)" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "My Darkest Days Featuring Zakk Wylde", + "playlist_title": "Porn Star Dancing", + "found_song": { + "artist": "My Darkest Days", + "disabled": false, + "favorite": false, + "guid": "a4d0687c-4ea4-93ef-b944-0d5a43ebbd63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Porn Star Dancing - My Darkest Days.mp4", + "title": "Porn Star Dancing" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Pitbull", + "playlist_title": "Bon, Bon", + "found_song": { + "artist": "Pitbull & Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "b8f3ffbe-2ea6-cede-a3d2-7a7c24bf0e6b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF350\\Pitbull & Ne - Yo - SF350 - 14.mp3", + "title": "Yo" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T.I. Featuring Eminem", + "title": "That's All She Wrote", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Eminem Featuring Lil Wayne", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "title": "Kush", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Flo Rida Featuring Akon", + "title": "Who Dat Girl", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Kanye West Featuring Pusha T", + "title": "Runaway", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Drake Featuring T.I. & Swizz Beatz", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Birdman Featuring Lil Wayne", + "title": "Fire Flame", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Sean Kingston Featuring Nicki Minaj", + "title": "Letting Go (Dutty Love)", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "title": "Loca", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "title": "Forget You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 40, + "missing_count": 22, + "needs_manual_review": 40 + } + }, + { + "playlist_title": "2009 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 10, + "playlist_artist": "Maxwell", + "playlist_title": "Pretty Wings", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "918e2644-6132-b1ba-27db-880ecc759c39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Wings - Maxwell.mp4", + "title": "Pretty Wings" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Whitney Houston", + "playlist_title": "Million Dollar Bill", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "04c9217f-b7ae-043f-9d46-a6f7736665aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Million Dollar Bill - Whitney Houston.mp4", + "title": "Million Dollar Bill" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sade", + "playlist_title": "Soldier Of Love", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "guid": "4307d99f-cfee-ccfe-5501-f4529a9ec036", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Sade - Soldier Of Love - SF290 - 15.mp3", + "title": "Soldier Of Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Usher", + "playlist_title": "Papers", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "87f3897f-3c3d-2308-e904-7e6c0eb0fbb9", + "path": "z://MP4\\Karaoke Sing Sing\\Usher - Crash (Karaoke Version).mp4", + "title": "Crash" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "50 Cent Featuring Ne-Yo", + "playlist_title": "Baby By Me", + "found_song": { + "artist": "50 Cent, Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b936bf1c-060e-e31a-e0da-03246529d176", + "path": "z://MP4\\Sing King Karaoke\\50 Cent, Ne-Yo - Baby By Me.mp4", + "title": "Baby By Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Young Money Featuring Lloyd", + "playlist_title": "Bedrock", + "found_song": { + "artist": "Young Money & Lloyd", + "disabled": false, + "favorite": false, + "guid": "2ecb5f45-7207-5d02-9d0b-f957ad6dc514", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Young Money & Lloyd - Bedrock - SF290 - 05.mp3", + "title": "Bedrock" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Jaheim", + "playlist_title": "Ain't Leavin Without You", + "found_song": { + "artist": "Dale & Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbea1ee0-0192-179c-7b56-7a083ca3fe2f", + "path": "z://MP4\\KaraokeOnVEVO\\Dale & Grace - Im Leaving It Up To You.mp4", + "title": "I'm Leaving It Up To You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Mary J. Blige", + "playlist_title": "I Am", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6eee067-6036-5fe4-9287-1eb8d4c9dbf8", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Give Me You.mp4", + "title": "Give Me You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "title": "God In Me", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LeToya Featuring Ludacris", + "title": "Regret", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 6, + "missing_count": 14, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2009 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Foo Fighters", + "playlist_title": "Wheels", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "1067951e-0a89-9a85-95bd-c7899b18d818", + "path": "z://CDG\\Big Hits Karaoke\\BHK002\\BHK002-04 - Foo Fighters - Wheels.mp3", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alice In Chains", + "playlist_title": "Check My Brain", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d20b1c2b-9936-05e6-f7d4-c0ca2c4edff4", + "path": "z://CDG\\SBI\\SBI-03\\SB23034 - Alice In Chains - Check My Brain.mp3", + "title": "Check My Brain" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rise Against", + "playlist_title": "Savior", + "found_song": { + "artist": "Rise Against", + "disabled": false, + "favorite": false, + "guid": "ea6b7194-6ccd-6de8-428e-4b625eff7582", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Rise Against - Savior - SF290 - 06.mp3", + "title": "Savior" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Pearl Jam", + "playlist_title": "The Fixer", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25418865-e16d-9fd4-ba8e-90f1482df698", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - The Fixer.mp4", + "title": "The Fixer" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Linkin Park", + "playlist_title": "New Divide", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "e5801f1a-7a1a-fd9e-2e5e-8cf570df270a", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - New Divide (Karaoke Version).mp4", + "title": "New Divide" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Slipknot", + "playlist_title": "Snuff", + "found_song": { + "artist": "Slipknot", + "disabled": false, + "favorite": false, + "guid": "34337aeb-b14a-dfda-0942-ed0093d566ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Snuff - Slipknot.mp4", + "title": "Snuff" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alice In Chains", + "playlist_title": "Your Decision", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef239797-06bf-37ed-5ade-63e6e3923341", + "path": "z://MP4\\KaraokeOnVEVO\\Alice In Chains - Your Decision.mp4", + "title": "Your Decision" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Weezer", + "playlist_title": "(If You're Wondering If I Want You To) I Want You To", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "020eea99-d4b9-63b6-e508-c4ad72b32785", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 921\\Weezer - If You're Wondering If You Want To - SFMW921 - 03.mp3", + "title": "If You're Wondering If You Want To" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Kings And Queens", + "found_song": { + "artist": "Thirty Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "ce4e1a4a-7b14-bc98-fafd-e896c0dc1e44", + "path": "z://MP4\\Karaoke Sing Sing\\Thirty Seconds To Mars - Rescue Me (Karaoke Version).mp4", + "title": "Rescue Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Back Against The Wall", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "dc91acac-7fc3-8c74-edc5-3d1b13901558", + "path": "z://MP4\\singsongsmusic\\Come a Little Closer - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Come a Little Closer" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Death Cab For Cutie", + "playlist_title": "Meet Me On The Equinox", + "found_song": { + "artist": "Death Cab for Cutie", + "disabled": false, + "favorite": false, + "guid": "7ff31e95-479a-b922-884c-d2bb9fe70056", + "path": "z://MP4\\KaraokeOnVEVO\\Death Cab for Cutie - You Are A Tourist (Karaoke).mp4", + "title": "You Are A Tourist" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Creed", + "playlist_title": "Overcome", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ce4a831-7002-8728-da39-05257e1fd6a7", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - One.mp4", + "title": "One" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Spaceship", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Adelitas Way", + "playlist_title": "Invincible", + "found_song": { + "artist": "Machine Gun Kelly ft. Ester Dean", + "disabled": false, + "favorite": false, + "guid": "8033d14a-b767-dbc7-69d0-e867898a0766", + "path": "z://MP4\\KaraokeOnVEVO\\Machine Gun Kelly ft. Ester Dean - Invincible (Clean) (Karaoke).mp4", + "title": "Invincible" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Sick Puppies", + "title": "You're Going Down", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Chevelle", + "title": "Jars", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Them Crooked Vultures", + "title": "New Fang", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Flyleaf", + "title": "Again", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 7, + "missing_count": 5, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2009 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "playlist_title": "Do You Remember", + "found_song": { + "artist": "Jay Sean Ft. Sean Paul & Lil Jon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd7cbfc8-393f-2973-2952-2ab2bf7cda21", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF289\\Jay Sean Ft. Sean Paul & Lil Jon - Do You Remember - SF289 - 09.mp3", + "title": "Do You Remember" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Boys Like Girls Featuring Taylor Swift", + "playlist_title": "Two Is Better Than One", + "found_song": { + "artist": "Boys Like Girls Featuring Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3542648-2001-42fc-900f-3255f35cc75a", + "path": "z://MP4\\Sing King Karaoke\\Boys Like Girls Featuring Taylor Swift - Two Is Better Than One.mp4", + "title": "Two Is Better Than One" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 5, + "missing_count": 2, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2009 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Hurry Home", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "guid": "02576a56-714c-b2bc-bc23-a37642231a3f", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Hurry Home (Karaoke).mp4", + "title": "Hurry Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "'Til Summer Comes Around", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e97e0a87-9d43-d452-a51a-c58a320d672a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til Summer Comes Around - Keith Urban.mp4", + "title": "Til Summer Comes Around" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Easton Corbin", + "playlist_title": "A Little More Country Than That", + "found_song": { + "artist": "Easton Corbin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15aade79-f2fd-0832-72f7-0739b73f9fee", + "path": "z://MP4\\KaraokeOnVEVO\\Easton Corbin - A Little More Country Than That.mp4", + "title": "A Little More Country Than That" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Blake Shelton Featuring Trace Adkins", + "playlist_title": "Hillbilly Bone", + "found_song": { + "artist": "Blake Shelton Featuring Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5215450-6791-f138-5a51-89122806acaa", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Trace Adkins - Hillbilly Bone.mp4", + "title": "Hillbilly Bone" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Didn't You Know How Much I Loved You", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "317d47c6-ec7b-b8c4-cf87-4036803ead56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Didn t You Know How Much I Loved You - Kellie Pickler.mp4", + "title": "Didn t You Know How Much I Loved You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Reba", + "playlist_title": "Consider Me Gone", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f200ee05-5f2c-86c8-0464-87682e4e7046", + "path": "z://MP4\\ZoomKaraokeOfficial\\Reba McEntire - Consider Me Gone.mp4", + "title": "Consider Me Gone" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Craig Morgan", + "playlist_title": "Bonfire", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Jason Aldean", + "playlist_title": "The Truth", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a19284df-59b4-b92a-88c8-81e9fba4d815", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Night Train Karaoke Lyrics.mp4", + "title": "Night Train" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Gary Allan", + "playlist_title": "Today", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d0246ed-5147-0201-aa8c-f0c1082db295", + "path": "z://CDG\\Various\\Gary Allan - One.mp3", + "title": "One" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Steel Magnolia", + "playlist_title": "Keep On Lovin' You", + "found_song": { + "artist": "REO Speedwagon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bf7ae8d-b9ec-23f3-3e9c-626c46f08c56", + "path": "z://MP4\\KaraokeOnVEVO\\Reo Speedwagon - Keep On Loving You (2.mp4", + "title": "Keep On Loving You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Josh Thompson", + "title": "Beer On The Table", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Sarah Buxton", + "title": "Outside My Window", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 6, + "missing_count": 3, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2009 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Cowboy Casanova", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "7bdc0c1f-ba57-bf4e-f8fe-7f6ccb248ca8", + "path": "z://MP4\\Let's Sing Karaoke\\Carrie Underwood - Cowboy Casanova (Karaoke & Lyrics).mp4", + "title": "Cowboy Casanova" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Kris Allen", + "playlist_title": "Live Like We're Dying", + "found_song": { + "artist": "Kris Allen", + "disabled": false, + "favorite": false, + "guid": "393e6eef-77fe-3c5a-41bf-28da670c0cea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Live Like We re Dying - Kris Allen.mp4", + "title": "Live Like We re Dying" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Fallin' For You", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "92120dbe-1482-c05b-3387-23d199071e50", + "path": "z://MP4\\KaraFun Karaoke\\Fallin' For You - Colbie Caillat Karaoke Version KaraFun.mp4", + "title": "Fallin' For You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Time", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72e7ea74-55d2-4e8b-8c3d-56214835bcbf", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - One Time.mp4", + "title": "One Time" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rihanna", + "playlist_title": "Russian Roulette", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "e2d82a36-0231-e12d-eac2-d80778e1e85e", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Russian Roulette (Karaoke Version).mp4", + "title": "Russian Roulette" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Train", + "playlist_title": "Hey, Soul Sister", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "85bb5db2-e340-c77a-5f3c-5f7cdf1df3eb", + "path": "z://MP4\\Sing King Karaoke\\Train - Hey, Soul Sister (Karaoke Version).mp4", + "title": "Hey, Soul Sister" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Lady Gaga Featuring Beyonce", + "playlist_title": "Telephone", + "found_song": { + "artist": "Lady Gaga Featuring Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b462d92b-1ac3-9090-3bba-f7f3d5b25b7f", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga Featuring Beyonce - Telephone.mp4", + "title": "Telephone" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Uncle Kracker", + "playlist_title": "Smile", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "671bb63a-db8d-3e83-15c4-91637841df52", + "path": "z://CDG\\Big Hits Karaoke\\BHK010\\BHK010-03 - Uncle Kracker - Smile.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Chris Brown", + "playlist_title": "Crawl", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7caf5622-e447-206e-01dc-98d00135c590", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Crawl.mp4", + "title": "Crawl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jason Derulo", + "playlist_title": "In My Head", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "60d9ae9a-034e-59ed-1a6c-ada712075acd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Head - Jason Derulo.mp4", + "title": "In My Head" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Less Lonely Girl", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8a4960a9-bf2e-3316-46da-c39364fc7ae9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Less Lonely Girl - Justin Bieber.mp4", + "title": "One Less Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "OneRepublic", + "playlist_title": "All The Right Moves", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "4d2d9dae-4974-73d6-f6ee-2a9751ddbae3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Right Moves - OneRepublic.mp4", + "title": "All The Right Moves" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Chris Young", + "playlist_title": "Gettin' You Home (The Black Dress Song)", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "3ba0dc43-3604-e250-ed2f-9890042f7a48", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gettin You Home (The Black Dress Song) - Chris Young.mp4", + "title": "Gettin You Home (The Black Dress Song)" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Script", + "playlist_title": "Breakeven", + "found_song": { + "artist": "The Script", + "disabled": false, + "favorite": false, + "guid": "980c95dd-c486-ac6e-e63a-91e5d1485b40", + "path": "z://MP4\\KtvEntertainment\\The Script - Breakeven (Karaoke without Vocal).mp4", + "title": "Breakeven" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Beyonce", + "playlist_title": "Video Phone", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "29e10df2-f2f1-4246-0f59-9f2876b0f0b5", + "path": "z://MP4\\KtvEntertainment\\Beyonce - Video Phone Karaoke Lyrics.mp4", + "title": "Video Phone" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Lifehouse", + "playlist_title": "Halfway Gone", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "fb57a1c0-3d32-57c5-bb78-5bfbefad639f", + "path": "z://CDG\\Big Hits Karaoke\\BHK007\\BHK007-08 - Lifehouse - Halfway Gone.mp3", + "title": "Halfway Gone" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "playlist_title": "Do You Remember", + "found_song": { + "artist": "Jay Sean Ft. Sean Paul & Lil Jon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd7cbfc8-393f-2973-2952-2ab2bf7cda21", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF289\\Jay Sean Ft. Sean Paul & Lil Jon - Do You Remember - SF289 - 09.mp3", + "title": "Do You Remember" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "I Gotta Feeling", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "45dba26f-312e-273f-21ff-01d2730f5c19", + "path": "z://MP4\\Sing King Karaoke\\Black Eyed Peas - I Gotta Feeling (Karaoke Version).mp4", + "title": "I Gotta Feeling" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Young Money Featuring Lloyd", + "playlist_title": "Bedrock", + "found_song": { + "artist": "Young Money & Lloyd", + "disabled": false, + "favorite": false, + "guid": "2ecb5f45-7207-5d02-9d0b-f957ad6dc514", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Young Money & Lloyd - Bedrock - SF290 - 05.mp3", + "title": "Bedrock" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Boys Like Girls Featuring Taylor Swift", + "playlist_title": "Two Is Better Than One", + "found_song": { + "artist": "Boys Like Girls Featuring Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3542648-2001-42fc-900f-3255f35cc75a", + "path": "z://MP4\\Sing King Karaoke\\Boys Like Girls Featuring Taylor Swift - Two Is Better Than One.mp4", + "title": "Two Is Better Than One" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "50 Cent Featuring Ne-Yo", + "playlist_title": "Baby By Me", + "found_song": { + "artist": "50 Cent, Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b936bf1c-060e-e31a-e0da-03246529d176", + "path": "z://MP4\\Sing King Karaoke\\50 Cent, Ne-Yo - Baby By Me.mp4", + "title": "Baby By Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Timbaland Featuring Justin Timberlake", + "playlist_title": "Carry Out", + "found_song": { + "artist": "Timbaland Feat Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "c473c262-dd55-e451-c1ed-1374eb0db38a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF291\\Timbaland Feat Justin Timberlake - Carry Out - SF291 - 13.mp3", + "title": "Carry Out" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Jay-Z, Rihanna & Kanye West", + "playlist_title": "Run This Town", + "found_song": { + "artist": "Jay Z ft Rihanna & Kanye West", + "disabled": false, + "favorite": false, + "guid": "580a024c-e35a-b600-bc98-47a146edba80", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF284\\Jay Z ft Rihanna & Kanye West - Run This Town - SF284 - 03.mp3", + "title": "Run This Town" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Reba", + "playlist_title": "Consider Me Gone", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f200ee05-5f2c-86c8-0464-87682e4e7046", + "path": "z://MP4\\ZoomKaraokeOfficial\\Reba McEntire - Consider Me Gone.mp4", + "title": "Consider Me Gone" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Jason Aldean", + "playlist_title": "The Truth", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a19284df-59b4-b92a-88c8-81e9fba4d815", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Night Train Karaoke Lyrics.mp4", + "title": "Night Train" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Glee Cast Featuring Lea Michele", + "playlist_title": "Don't Rain On My Parade", + "found_song": { + "artist": "Streisand, Barbra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c25ef89-ec8c-b3cd-fb9e-074d541cd547", + "path": "z://CDG\\SBI\\SBI-01\\SB00360 - Barbra Streisand - Don't Rain On My Parade.mp3", + "title": "Don't Rain On My Parade" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Orianthi", + "playlist_title": "According To You", + "found_song": { + "artist": "Orianthi", + "disabled": false, + "favorite": false, + "guid": "cc1f3c5d-cebd-ef23-e07d-2de8d56f9eba", + "path": "z://CDG\\Big Hits Karaoke\\BHK003\\BHK003-02 - Orianthi - According To U.mp3", + "title": "According To U" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Usher", + "playlist_title": "Papers", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "87f3897f-3c3d-2308-e904-7e6c0eb0fbb9", + "path": "z://MP4\\Karaoke Sing Sing\\Usher - Crash (Karaoke Version).mp4", + "title": "Crash" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Lil Wayne", + "playlist_title": "On Fire", + "found_song": { + "artist": "Jay Sean, Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "180946b8-3619-b2cd-0ef4-1999eb316eca", + "path": "z://MP4\\Sing King Karaoke\\Jay Sean, Lil Wayne - Down.mp4", + "title": "Down" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Daughtry", + "playlist_title": "Life After You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Craig Morgan", + "playlist_title": "Bonfire", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Mary J. Blige", + "playlist_title": "I Am", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6eee067-6036-5fe4-9287-1eb8d4c9dbf8", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Give Me You.mp4", + "title": "Give Me You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "This Is War", + "found_song": { + "artist": "Thirty Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "ce4e1a4a-7b14-bc98-fafd-e896c0dc1e44", + "path": "z://MP4\\Karaoke Sing Sing\\Thirty Seconds To Mars - Rescue Me (Karaoke Version).mp4", + "title": "Rescue Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Michael Buble", + "playlist_title": "Haven't Met You Yet", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "a8029f1d-6e17-2260-d0ec-3e57ad0cf21f", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - Haven't Met You Yet.mp4", + "title": "Haven't Met You Yet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Rob Thomas", + "playlist_title": "Someday", + "found_song": { + "artist": "Santana ft. Rob Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a0be740-c36e-4ec5-5129-378168bd4a9b", + "path": "z://MP4\\KaraokeOnVEVO\\Santana Featuring Rob Thomas - Smooth.mp4", + "title": "Smooth" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Snoop Dogg", + "playlist_title": "I Wanna Rock", + "found_song": { + "artist": "Akon ft. Snoop Dogg", + "disabled": false, + "favorite": false, + "guid": "2976d779-c6bf-24b8-53f1-d6245e20fda1", + "path": "z://MP4\\TheKARAOKEChannel\\Akon feat. Snoop Dogg - I Wanna Love You.mp4", + "title": "I Wanna Love You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Kings And Queens", + "found_song": { + "artist": "Thirty Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "ce4e1a4a-7b14-bc98-fafd-e896c0dc1e44", + "path": "z://MP4\\Karaoke Sing Sing\\Thirty Seconds To Mars - Rescue Me (Karaoke Version).mp4", + "title": "Rescue Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Chris Brown Featuring Plies", + "playlist_title": "What I Do", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Glee Cast", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "2a10be40-8ef9-2dce-9350-3a525fe84a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Christmas - Glee.mp4", + "title": "Last Christmas" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Glee Cast Featuring Amber Riley", + "playlist_title": "And I Am Telling You I'm Not Going", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "8db038af-2250-fe40-d5df-1fe72348392a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke And I Am Telling You I m Not Going - Glee.mp4", + "title": "And I Am Telling You I m Not Going" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Weezer", + "playlist_title": "(If You're Wondering If I Want You To) I Want You To", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "020eea99-d4b9-63b6-e508-c4ad72b32785", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 921\\Weezer - If You're Wondering If You Want To - SFMW921 - 03.mp3", + "title": "If You're Wondering If You Want To" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "New Boyz Feat. Ray J", + "title": "Tie Me Down", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Shakira Featuring Lil Wayne", + "title": "Give It Up To Me", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "title": "My Life Would Suck Without You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Nickelback", + "title": "Never Gonna Be Alone", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jesse McCartney Featuring T-Pain", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "title": "You Can't Always Get What You Want", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Akon", + "title": "Shut It Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "title": "I'm Going In", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ester Dean Featuring Chris Brown", + "title": "Drop It Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 29, + "missing_count": 25, + "needs_manual_review": 29 + } + }, + { + "playlist_title": "2008 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Keyshia Cole", + "playlist_title": "Heaven Sent", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "guid": "fc6015e5-9b3b-682c-3935-9c014e74104c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Sent - Keyshia Cole.mp4", + "title": "Heaven Sent" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "T.I.", + "playlist_title": "Whatever You Like", + "found_song": { + "artist": "Iggy Azalea and T.I.", + "disabled": false, + "favorite": false, + "guid": "a450802b-6087-bd5e-1d9e-74bd6ea51ee2", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea and T.I. - Change Your Life (Karaoke Version).mp4", + "title": "Change Your Life" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Need U Bad", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Usher", + "playlist_title": "Here I Stand", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "56e48185-07a1-b089-19b3-0ccfafde3224", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here and Now - Luther Vandross.mp4", + "title": "Here and Now" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 3, + "missing_count": 13, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2008 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lady GaGa Featuring Colby O'Donis", + "playlist_title": "Just Dance", + "found_song": { + "artist": "Lady GaGa Featuring Colby O'Donis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5843103f-93a8-72ad-db44-7f1ffbb17170", + "path": "z://MP4\\Sing King Karaoke\\Lady GaGa Featuring Colby ODonis - Just Dance.mp4", + "title": "Just Dance" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "T.I.", + "playlist_title": "Whatever You Like", + "found_song": { + "artist": "Iggy Azalea and T.I.", + "disabled": false, + "favorite": false, + "guid": "a450802b-6087-bd5e-1d9e-74bd6ea51ee2", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea and T.I. - Change Your Life (Karaoke Version).mp4", + "title": "Change Your Life" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Saving Abel", + "playlist_title": "Addicted", + "found_song": { + "artist": "Saving Abel", + "disabled": false, + "favorite": false, + "guid": "5933b4c8-c627-612c-8e57-2606c8609746", + "path": "z://MP4\\Let's Sing Karaoke\\Saving Abel - 18 Days (Karaoke & Lyrics).mp4", + "title": "18 Days" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Nickelback", + "playlist_title": "Gotta Be Somebody", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 5, + "missing_count": 1, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2008 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jake Owen", + "playlist_title": "Don't Think I Can't Love You", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1ccc605-62ba-23d3-e57f-afb1528816e9", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - Dont Think I Cant Love You.mp4", + "title": "Don't Think I Can't Love You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Last Call", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "1b35cc99-ce09-c30a-71ec-190d1f8ee709", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Last Call (Karaoke).mp4", + "title": "Last Call" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "Ride", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0954a8d-3021-6534-3efc-ae8c4312a92a", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Sugarland", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "8a1338a8-2812-65f9-f248-e3d01a773349", + "path": "z://CDG\\Various\\Eagles - Already Gone.mp3", + "title": "Already Gone" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Tim McGraw ft. Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bc2f15e-1019-c649-6b24-a05d7b98adee", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw & Faith Hill - Let's Make Love.mp4", + "title": "Let's Make Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Billy Currington", + "playlist_title": "Don't", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "ea590392-0723-2ddc-dbe0-75cef55b0864", + "path": "z://CDG\\Various\\Billy Currington - Good Directions.mp3", + "title": "Good Directions" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Lookin' For A Good Time", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "e1ce9121-e3d4-f904-3664-5e07a44de4b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Look Good - Lady Antebellum.mp4", + "title": "You Look Good" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Toby Keith", + "playlist_title": "God Love Her", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Pat Green", + "playlist_title": "Let Me", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "47a66eed-449a-6908-3190-b13ab1b8b527", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - Call Me (Come Back Home) (Karaoke & Lyrics).mp4", + "title": "Call Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Darius Rucker", + "title": "It Won't Be Like This For Long", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jack Ingram", + "title": "That's A Man", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 9, + "missing_count": 5, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2008 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lady GaGa Featuring Colby O'Donis", + "playlist_title": "Just Dance", + "found_song": { + "artist": "Lady GaGa Featuring Colby O'Donis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5843103f-93a8-72ad-db44-7f1ffbb17170", + "path": "z://MP4\\Sing King Karaoke\\Lady GaGa Featuring Colby ODonis - Just Dance.mp4", + "title": "Just Dance" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Britney Spears", + "playlist_title": "Circus", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "390e5a9a-751b-0c64-6288-10790f9ced70", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Circus.mp4", + "title": "Circus" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Fray", + "playlist_title": "You Found Me", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "f388ba54-073b-360e-f9d0-1cad21f9f7dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Found Me - The Fray.mp4", + "title": "You Found Me" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Coldplay", + "playlist_title": "Viva La Vida", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8931e443-78aa-fbf3-6319-397dd7c15674", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Viva La Vida (Karaoke Version).mp4", + "title": "Viva La Vida" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Gives You Hell", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "7dad4fb1-61a6-823b-1256-ee11db25784b", + "path": "z://MP4\\KaraFun Karaoke\\Gives You Hell - The All-American Rejects Karaoke Version KaraFun.mp4", + "title": "Gives You Hell" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Ne-Yo", + "playlist_title": "Closer", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47c15e29-f081-0b01-0dab-c81cc43909a4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Killers", + "playlist_title": "Human", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4bad50ad-2e02-e1f5-5c4d-4e20e68542f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Human.mp4", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Archuleta", + "playlist_title": "Crush", + "found_song": { + "artist": "David Archuleta", + "disabled": false, + "favorite": false, + "guid": "cc8a9d3e-6dff-62bc-4b89-d899016f4c75", + "path": "z://MP4\\Sing King Karaoke\\David Archuleta - Crush (Karaoke Version).mp4", + "title": "Crush" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Paramore", + "playlist_title": "Decode", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da54df3f-9093-5bea-ceac-0af75c8f0e31", + "path": "z://CDG\\SBI\\SBI-03\\SB21499 - Paramore - Decode.mp3", + "title": "Decode" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Fall Out Boy", + "playlist_title": "I Don't Care", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7af6b14-97ab-8dc1-3e65-816c87a47d4d", + "path": "z://MP4\\KaraokeOnVEVO\\Fall Out Boy - I Dont Care.mp4", + "title": "I Don't Care" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Sex On Fire", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "9ba89680-0a2a-647f-c52f-9992542724ca", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Sex On Fire (Karaoke Version).mp4", + "title": "Sex On Fire" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shinedown", + "playlist_title": "Second Chance", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "guid": "6e146379-b762-bd04-8c9e-3af5e0690ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Second Chance - Shinedown.mp4", + "title": "Second Chance" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Ne-Yo", + "playlist_title": "Mad", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b8aa97b-6416-a0d0-8cf9-6c8ad98d46ec", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Mad.mp4", + "title": "Mad" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shontelle", + "playlist_title": "T-Shirt", + "found_song": { + "artist": "Shontelle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8fcc5c9-71e5-6cff-53da-45ac9381e738", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF277\\Shontelle - T-shirt - SF277 - 08.mp3", + "title": "T-shirt" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Matt Nathanson", + "playlist_title": "Come On Get Higher", + "found_song": { + "artist": "Matt Nathanson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "365329e3-cd5c-c2c0-23f7-6b28a86d7fb9", + "path": "z://MP4\\KaraokeOnVEVO\\Matt Nathanson - Come On Get Higher.mp4", + "title": "Come On Get Higher" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Daughtry", + "playlist_title": "What About Now", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "ecb3db8c-6add-3ac2-e663-930389ce59c0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF285\\Daughtry - What About Now - SF285 - 08.mp3", + "title": "What About Now" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Lifehouse", + "playlist_title": "Broken", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f8369fb1-eaa2-55d7-7a30-9692ac3dfcc5", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Broken.mp4", + "title": "Broken" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Hinder", + "playlist_title": "Without You", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46c2eef0-5023-eb68-2fab-eff9ec13fd7d", + "path": "z://MP4\\KaraokeOnVEVO\\Hinder - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Bad Girlfriend", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "15ab937f-8dd7-7ac3-93a1-454308296744", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bad Girlfriend - Theory Of A Deadman.mp4", + "title": "Bad Girlfriend" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Adele", + "playlist_title": "Chasing Pavements", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9f0273d-5e88-7c75-0dbb-71ebff558acb", + "path": "z://MP4\\Sing King Karaoke\\Adele - Chasing Pavements.mp4", + "title": "Chasing Pavements" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "T.I.", + "playlist_title": "Whatever You Like", + "found_song": { + "artist": "Iggy Azalea and T.I.", + "disabled": false, + "favorite": false, + "guid": "a450802b-6087-bd5e-1d9e-74bd6ea51ee2", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea and T.I. - Change Your Life (Karaoke Version).mp4", + "title": "Change Your Life" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Nickelback", + "playlist_title": "Gotta Be Somebody", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Saving Abel", + "playlist_title": "Addicted", + "found_song": { + "artist": "Saving Abel", + "disabled": false, + "favorite": false, + "guid": "5933b4c8-c627-612c-8e57-2606c8609746", + "path": "z://MP4\\Let's Sing Karaoke\\Saving Abel - 18 Days (Karaoke & Lyrics).mp4", + "title": "18 Days" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Veronicas", + "playlist_title": "Untouched", + "found_song": { + "artist": "Veronicas", + "disabled": false, + "favorite": false, + "guid": "8bba1b5f-d320-d76b-f650-be614707844d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF280\\Veronicas - Untouched - SF280 - 10.mp3", + "title": "Untouched" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Sugarland", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "8a1338a8-2812-65f9-f248-e3d01a773349", + "path": "z://CDG\\Various\\Eagles - Already Gone.mp3", + "title": "Already Gone" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Secondhand Serenade", + "playlist_title": "Fall For You", + "found_song": { + "artist": "Secondhand Serenade", + "disabled": false, + "favorite": false, + "guid": "a42f00cf-4fc5-4a2b-4267-260e3b20b269", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fall For You - Secondhand Serenade.mp4", + "title": "Fall For You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "David Cook", + "playlist_title": "Light On", + "found_song": { + "artist": "David Cook", + "disabled": false, + "favorite": false, + "guid": "509eb60e-6f1c-ba0a-db28-321023cba9f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Billie Jean - David Cook.mp4", + "title": "Billie Jean" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Pink", + "playlist_title": "Sober", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "8deeec0f-944f-356a-23f7-079c9db1503e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pink - Sober - SF275 - 16.mp3", + "title": "Sober" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "I Hate This Part", + "found_song": { + "artist": "Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "aeda22a1-ef5c-57df-0366-231aa42ab5f8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pussycat Dolls - I Hate This Part - SF275 - 08.mp3", + "title": "I Hate This Part" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Keeps Gettin' Better", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "b63ab5f1-a7a2-6e35-8549-a00ac0de61b6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF274\\Christina Aguilera - Keeps Getting Better - SF274 - 13.mp3", + "title": "Keeps Getting Better" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "8b5e6120-b30f-b4cc-bbbc-fcac096649ac", + "path": "z://MP4\\Let's Sing Karaoke\\Carrie Underwood - Crazy Dreams.mp4", + "title": "Crazy Dreams" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Billy Currington", + "playlist_title": "Don't", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "ea590392-0723-2ddc-dbe0-75cef55b0864", + "path": "z://CDG\\Various\\Billy Currington - Good Directions.mp3", + "title": "Good Directions" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Toby Keith", + "playlist_title": "God Love Her", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Tim McGraw", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Tim McGraw ft. Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bc2f15e-1019-c649-6b24-a05d7b98adee", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw & Faith Hill - Let's Make Love.mp4", + "title": "Let's Make Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Lookin' For A Good Time", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "e1ce9121-e3d4-f904-3664-5e07a44de4b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Look Good - Lady Antebellum.mp4", + "title": "You Look Good" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Metro Station", + "playlist_title": "Seventeen Forever", + "found_song": { + "artist": "Metro Station", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dbf6a258-58f3-ce97-2ca9-60e7c8911401", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF282\\Metro Station - 17 Forever - SF282 - 09.mp3", + "title": "17 Forever" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Busta Rhymes", + "playlist_title": "Arab Money", + "found_song": { + "artist": "Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip", + "disabled": false, + "favorite": false, + "guid": "440a7b00-70f0-ce2b-6f05-17b45c84f9bc", + "path": "z://CDG\\Mr Entertainer\\MRH114\\Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip - Thank You.mp3", + "title": "Thank You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "50 Cent", + "playlist_title": "Get Up", + "found_song": { + "artist": "Nicole Scherzinger ft. 50 Cent", + "disabled": false, + "favorite": false, + "guid": "710c1a3a-10cc-9297-9c58-784068c8f70d", + "path": "z://CDG\\Big Hits Karaoke\\BHK022\\BHK022-10 - Scherzinger, Nicole & 50 Cent - Right There.mp3", + "title": "Right There" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "T.I. Featuring Justin Timberlake", + "playlist_title": "Dead And Gone", + "found_song": { + "artist": "T.i. ft. Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e8a0d0a-3e58-f74e-6ed5-2311254341e3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF277\\T.i. & Justin Timberlake - Dead & Gone - SF277 - 06.mp3", + "title": "Dead & Gone" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "title": "I'm So Paid", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brandy", + "title": "Right Here (Departed)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "O.A.R.", + "title": "Shattered (Turn The Car Around)", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Game Featuring Lil Wayne", + "title": "My Life", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Savage Featuring Soulja Boy Tell'em", + "title": "Swing", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Common Featuring Pharrell", + "title": "Universal Mind Control", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Offspring", + "title": "You're Gonna Go Far, Kid", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Lil Jon", + "title": "Krazy", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Apocalyptica Featuring Adam Gontier", + "title": "I Don't Care", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Chesney With The Wailers", + "title": "Everybody Wants To Go To Heaven", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Craig Morgan", + "title": "Love Remembers", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kanye West Featuring Lil Wayne", + "title": "See You In My Nightmares", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Luis Fonsi", + "title": "No Me Doy Por Vencido", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 24, + "missing_count": 31, + "needs_manual_review": 24 + } + }, + { + "playlist_title": "2007 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Chris Brown Featuring T-Pain", + "playlist_title": "Kiss Kiss", + "found_song": { + "artist": "Chris Brown Featuring T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0329fd3-dadd-bee1-8807-ae090b3a1b64", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown Featuring T-Pain - Kiss Kiss.mp4", + "title": "Kiss Kiss" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Timbaland Featuring OneRepublic", + "playlist_title": "Apologize", + "found_song": { + "artist": "Timbaland ft. OneRepublic", + "disabled": false, + "favorite": false, + "guid": "754131ac-66c6-c4c0-06c7-cd4c9c7e8135", + "path": "z://MP4\\Sing King Karaoke\\Timbaland, OneRepublic - Apologize (Karaoke Version).mp4", + "title": "Apologize" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Fergie", + "playlist_title": "Clumsy", + "found_song": { + "artist": "Fergie ft. Ludacris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e710a538-783c-281e-c012-2d47e3c01236", + "path": "z://MP4\\ZoomKaraokeOfficial\\Fergie feat Ludacris - Glamorous (Without Backing Vocals).mp4", + "title": "Glamorous" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Rihanna Featuring Ne-Yo", + "playlist_title": "Hate That I Love You", + "found_song": { + "artist": "Rihanna ft. Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2396f25a-8792-4f96-8008-c0e79c3cb38d", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna Featuring Ne-Yo - Hate That I Love You.mp4", + "title": "Hate That I Love You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Flo Rida Featuring T-Pain", + "playlist_title": "Low", + "found_song": { + "artist": "Flo Rida featuring T-Pain", + "disabled": false, + "favorite": false, + "guid": "3dbd985d-fd92-d32c-5c7c-317fe51232d9", + "path": "z://MP4\\TheKARAOKEChannel\\Low in the style of Flo Rida featuring T-Pain karaoke video with lyrics.mp4", + "title": "Low" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Timbaland Featuring Keri Hilson", + "playlist_title": "The Way I Are", + "found_song": { + "artist": "Timbaland ft. Keri Hilson, D.O.E, Sebastian", + "disabled": false, + "favorite": false, + "guid": "c91a6088-f859-c331-ee2f-97ef991dcf46", + "path": "z://MP4\\Sing King Karaoke\\Timbaland, Keri Hilson, D.O.E, Sebastian - The Way I Are (Karaoke Version).mp4", + "title": "The Way I Are" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Paramore", + "playlist_title": "Misery Business", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "guid": "04515379-3ac3-bbc4-3c24-a226275ce5c6", + "path": "z://MP4\\Sing King Karaoke\\Paramore - Misery Business (Karaoke Version).mp4", + "title": "Misery Business (Karaoke Version)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Sean Kingston", + "playlist_title": "Take You There", + "found_song": { + "artist": "Sean Kingston", + "disabled": false, + "favorite": false, + "guid": "e2978f4e-94c3-7c43-c7a0-a5029f6e4153", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF262\\Sean Kingston - Me Love - SF262 - 05.mp3", + "title": "Me Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 9, + "missing_count": 5, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2007 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Alan Jackson", + "playlist_title": "Small Town Southern Man", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ce7b0be-b9ba-a551-4ccd-2120473ea9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Small Town Southern Man.mp4", + "title": "Small Town Southern Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Blake Shelton", + "playlist_title": "The More I Drink", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "20d51adc-8017-3854-44fd-b62770c8aece", + "path": "z://MP4\\TheKARAOKEChannel\\The More I Drink in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "The More I Drink" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Cagle", + "playlist_title": "What Kinda Gone", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6474876-0f49-bd73-25e6-7900c3a41139", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - What Kinda Gone.mp4", + "title": "What Kinda Gone" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Suspicions", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67eb60a7-2bad-5621-18a8-784e1fd3204f", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Suspicions.mp4", + "title": "Suspicions" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eagles", + "playlist_title": "How Long", + "found_song": { + "artist": "Eagles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d577c63c-d280-cfa8-3bc3-1bb5e91d8677", + "path": "z://CDG\\SBI\\SBI-01\\SB02414 - The Eagles - How Long.mp3", + "title": "How Long" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Toby Keith", + "playlist_title": "Get My Drink On", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "aa1467b5-7063-7464-d869-382dc66e1bad", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Toby Keith - Get Drunk And Be Someone.mp3", + "title": "Get Drunk And Be Someone" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "God Must Be Busy", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "96e031db-78d6-f97f-4554-c571ed8f56e9", + "path": "z://MP4\\KaraFun Karaoke\\God Must Be Busy - Brooks & Dunn Karaoke Version KaraFun.mp4", + "title": "God Must Be Busy" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Jason Aldean", + "playlist_title": "Laughed Until We Cried", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "ebbaae7e-00d7-8c27-4d62-6c1f3d9d84ff", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Take A Little Ride (Karaoke without Vocal).mp4", + "title": "Take A Little Ride" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Shiftwork", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "3421bef6-47ba-5d9e-c623-3c42ef761213", + "path": "z://MP4\\KtvEntertainment\\Kenny Chesney - Noise Karaoke Lyrics.mp4", + "title": "Noise" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 6, + "missing_count": 1, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2007 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Chris Brown Featuring T-Pain", + "playlist_title": "Kiss Kiss", + "found_song": { + "artist": "Chris Brown Featuring T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0329fd3-dadd-bee1-8807-ae090b3a1b64", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown Featuring T-Pain - Kiss Kiss.mp4", + "title": "Kiss Kiss" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alicia Keys", + "playlist_title": "Like You'll Never See Me Again", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "78376b2e-5369-5505-3d1c-0a332e11ea10", + "path": "z://MP4\\Stingray Karaoke\\Like You'll Never See Me Again in the style of Alicia Keys karaoke version with lyrics.mp4", + "title": "Like You'll Never See Me Again" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Love Song", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "3b2cb5a0-e4d5-90d1-5b46-a5326e1231d5", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Love Song (Karaoke Version).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Just Fine", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "abf774d6-7e51-7fa4-bf53-eb90eeda6e44", + "path": "z://MP4\\KaraFun Karaoke\\Just Fine - Mary J. Blige Karaoke Version KaraFun.mp4", + "title": "Just Fine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Linkin Park", + "playlist_title": "Shadow Of The Day", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "8b4ddd08-2881-f0bb-b835-b505aca61751", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Shadow Of The Day (Karaoke Version).mp4", + "title": "Shadow Of The Day" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Fergie", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "c1c3630f-f208-ee8a-7c9f-d54265a3b077", + "path": "z://MP4\\Sing King Karaoke\\Fergie - Big Girls Don't Cry (Personal) (Karaoke Version).mp4", + "title": "Big Girls Don't Cry" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Maroon 5", + "playlist_title": "Wake Up Call", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1c6d8f76-7c06-609c-e907-4ad2aacfe2bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Up Call - Maroon 5.mp4", + "title": "Wake Up Call" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Britney Spears", + "playlist_title": "Piece Of Me", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "87cd88ce-3db0-8d5b-2c7e-674a12d36894", + "path": "z://MP4\\Stingray Karaoke\\Piece Of Me Britney Spears Karaoke with Lyrics.mp4", + "title": "Piece Of Me" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Rihanna", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "19f7b772-493f-6b3c-7cfb-c659a562a5be", + "path": "z://MP4\\KaraFun Karaoke\\Don’t Stop The Music - Rihanna Karaoke Version KaraFun.mp4", + "title": "Don’t Stop The Music" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Foo Fighters", + "playlist_title": "The Pretender", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "5f7e8bdf-3b22-92c9-1f7f-39c0e3c9cf35", + "path": "z://MP4\\KaraFun Karaoke\\The Pretender - Foo Fighters Karaoke Version KaraFun.mp4", + "title": "The Pretender" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Seether", + "playlist_title": "Fake It", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d53f6990-fd19-621a-1768-b76a28c4e664", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Fake It.mp4", + "title": "Fake It" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jack Johnson", + "playlist_title": "If I Had Eyes", + "found_song": { + "artist": "Jack Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f18acbd-6ff9-50e3-1301-de5a6b2716cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Jack Johnson - If I Had Eyes - SF264 - 15.mp3", + "title": "If I Had Eyes" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Britney Spears", + "playlist_title": "Gimme More", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "904aa4c6-ecc7-fd42-904b-dd47567bb659", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Gimme More.mp4", + "title": "Gimme More" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Feist", + "playlist_title": "1234", + "found_song": { + "artist": "Feist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce51464a-c798-d73f-2b03-64871ac4437b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Feist - 1234.mp4", + "title": "1234" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Three Days Grace", + "playlist_title": "Never Too Late", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "93f41381-7a43-06c0-b3b6-297a57cd6d84", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Late - Three Days Grace.mp4", + "title": "Never Too Late" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Chris Brown", + "playlist_title": "This Christmas", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "851593b2-ddff-d000-b2a2-6a8e23ced309", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Christmas - Chris Brown.mp4", + "title": "This Christmas" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Miley Cyrus", + "playlist_title": "See You Again", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "96e4ce80-ed7c-f6a1-43b7-5a9aa27b27b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke See You Again - Miley Cyrus.mp4", + "title": "See You Again" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Boys Like Girls", + "playlist_title": "Hero/Heroine", + "found_song": { + "artist": "Boys Like Girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5428a78f-2dc5-e1ae-a185-e1634c82b4b4", + "path": "z://MP4\\KaraokeOnVEVO\\Boys Like Girls - HeroHeroine.mp4", + "title": "Hero/Heroine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Keyshia Cole", + "playlist_title": "I Remember", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a03be123-ace2-4beb-4f57-a4901c62fddb", + "path": "z://MP4\\KaraokeOnVEVO\\Keyshia Cole - I Remember.mp4", + "title": "I Remember" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Linkin Park", + "playlist_title": "Bleed It Out", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "d47f94e2-42a9-c025-1c4e-0522d279e454", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park - Bleed It Out (clean) (Karaoke Version).mp4", + "title": "Bleed It Out" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Maroon 5", + "playlist_title": "Won't Go Home Without You", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "680af3d0-df8b-4c1c-acbc-22f7cc8f071d", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Wont Go Home Without You.mp4", + "title": "Won't Go Home Without You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin' Better To Do", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef417a0e-0e17-1ab5-27e1-90d683e37b29", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Better To Do.mp4", + "title": "Nothin' Better To Do" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Ingrid Michaelson", + "playlist_title": "The Way I Am", + "found_song": { + "artist": "Ingrid Michaelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63ecba86-bc51-ae6d-28d2-b2e5cf5198ec", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Michaelson - The Way I Am.mp4", + "title": "The Way I Am" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jonas Brothers", + "playlist_title": "S.O.S.", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e186ad93-8311-fb96-e9d3-9ecb627e9123", + "path": "z://MP4\\KaraokeOnVEVO\\Jonas Brothers - SOS.mp4", + "title": "S.O.S." + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Livin' Our Love Song", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5de04b41-deef-f62b-343b-8f58d54b330e", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Livin Our Love Song.mp4", + "title": "Livin' Our Love Song" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Free And Easy (Down The Road I Go)", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b438180-6926-b78f-7559-6c921a75af62", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Free And Easy (Down The Road I Go.mp4", + "title": "Free And Easy (Down The Road I Go)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "OneRepublic", + "playlist_title": "Stop And Stare", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03289aaa-526b-9953-f130-bc5f223b1c03", + "path": "z://MP4\\Sing King Karaoke\\One Republic - Stop And Stare.mp4", + "title": "Stop And Stare" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Work That", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc727fb1-7390-5af3-e50e-129c167c4ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Work That.mp4", + "title": "Work That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Flo Rida Featuring T-Pain", + "playlist_title": "Low", + "found_song": { + "artist": "Flo Rida featuring T-Pain", + "disabled": false, + "favorite": false, + "guid": "3dbd985d-fd92-d32c-5c7c-317fe51232d9", + "path": "z://MP4\\TheKARAOKEChannel\\Low in the style of Flo Rida featuring T-Pain karaoke video with lyrics.mp4", + "title": "Low" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Timbaland Featuring OneRepublic", + "playlist_title": "Apologize", + "found_song": { + "artist": "Timbaland ft. OneRepublic", + "disabled": false, + "favorite": false, + "guid": "754131ac-66c6-c4c0-06c7-cd4c9c7e8135", + "path": "z://MP4\\Sing King Karaoke\\Timbaland, OneRepublic - Apologize (Karaoke Version).mp4", + "title": "Apologize" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Fergie", + "playlist_title": "Clumsy", + "found_song": { + "artist": "Fergie ft. Ludacris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e710a538-783c-281e-c012-2d47e3c01236", + "path": "z://MP4\\ZoomKaraokeOfficial\\Fergie feat Ludacris - Glamorous (Without Backing Vocals).mp4", + "title": "Glamorous" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Rihanna Featuring Ne-Yo", + "playlist_title": "Hate That I Love You", + "found_song": { + "artist": "Rihanna ft. Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2396f25a-8792-4f96-8008-c0e79c3cb38d", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna Featuring Ne-Yo - Hate That I Love You.mp4", + "title": "Hate That I Love You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Soulja Boy Tell'em", + "playlist_title": "Crank That (Soulja Boy)", + "found_song": { + "artist": "Souljah Boy Tell Em", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f30990b-f84d-378a-f46e-26ae86b976f2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Souljah Boy Tell Em - Crank That - SF264 - 03.mp3", + "title": "Crank That" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Sean Kingston", + "playlist_title": "Take You There", + "found_song": { + "artist": "Sean Kingston", + "disabled": false, + "favorite": false, + "guid": "e2978f4e-94c3-7c43-c7a0-a5029f6e4153", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF262\\Sean Kingston - Me Love - SF262 - 05.mp3", + "title": "Me Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Timbaland Featuring Keri Hilson", + "playlist_title": "The Way I Are", + "found_song": { + "artist": "Timbaland ft. Keri Hilson, D.O.E, Sebastian", + "disabled": false, + "favorite": false, + "guid": "c91a6088-f859-c331-ee2f-97ef991dcf46", + "path": "z://MP4\\Sing King Karaoke\\Timbaland, Keri Hilson, D.O.E, Sebastian - The Way I Are (Karaoke Version).mp4", + "title": "The Way I Are" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Chris Brown", + "playlist_title": "With You", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "98c94e2e-1ed9-a3de-b013-1a7182986929", + "path": "z://MP4\\KtvEntertainment\\Chris Brown - Yo (Excuse Me Miss) Karaoke Lyrics.mp4", + "title": "Yo" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The-Dream", + "playlist_title": "Shawty Is A 10", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82d2ec44-3390-25c2-a174-36e3d6bc0d86", + "path": "z://CDG\\SBI\\SBI-04\\SB16677 - Dream - Shawty Is A 10.mp3", + "title": "Shawty Is A 10" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Paramore", + "playlist_title": "Misery Business", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "guid": "04515379-3ac3-bbc4-3c24-a226275ce5c6", + "path": "z://MP4\\Sing King Karaoke\\Paramore - Misery Business (Karaoke Version).mp4", + "title": "Misery Business (Karaoke Version)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Snoop Dogg", + "playlist_title": "Sensual Seduction", + "found_song": { + "artist": "Mariah Carey ft. Snoop Dogg", + "disabled": false, + "favorite": false, + "guid": "2c5d7a24-5b03-aa9a-864a-e14e5da211ab", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF244\\Mariah ft Snoop Dogg Carey - Say Somethin' - SF244 - 12.mp3", + "title": "Say Somethin'" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Kanye West Featuring Dwele", + "playlist_title": "Flashing Lights", + "found_song": { + "artist": "Kanya West Feat Dwele", + "disabled": false, + "favorite": false, + "guid": "b856d440-2863-0473-91e0-980e95914779", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF267\\Kanya West Feat Dwele - Flashing Lights - SF267 - 05.mp3", + "title": "Flashing Lights" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Pink", + "playlist_title": "Who Knew", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "438c631d-2f7c-146c-9179-077bdda041d2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Who Knew (Karaoke Version).mp4", + "title": "Who Knew" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Buckcherry", + "playlist_title": "Sorry", + "found_song": { + "artist": "Buckcherry", + "disabled": false, + "favorite": false, + "guid": "e3bbb750-0fcd-fc7c-0fbb-5e09526bb010", + "path": "z://CDG\\Various\\Buckcherry - Ridin'.mp3", + "title": "Ridin'" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Lupe Fiasco Featuring Matthew Santos", + "playlist_title": "Superstar", + "found_song": { + "artist": "Lupe Fiasco Feat Matthew Santos", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9c28c6a-1fdd-6cbb-8a2a-45566b759555", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Lupe Fiasco Feat Matthew Santos - Superstar - SF264 - 13.mp3", + "title": "Superstar" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Gucci Mane", + "playlist_title": "Freaky Gurl", + "found_song": { + "artist": "Selena Gomez ft. Gucci Mane", + "disabled": false, + "favorite": false, + "guid": "70690c2b-49ac-baae-e2c4-9d5b4548cebb", + "path": "z://MP4\\Karaoke Sing Sing\\Selena Gomez & Gucci Mane - Fetish (Karaoke Version).mp4", + "title": "Fetish" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Clay Walker", + "playlist_title": "Fall", + "found_song": { + "artist": "Alan Walker, K 391 ft. Emelie Hollow", + "disabled": false, + "favorite": false, + "guid": "6bafa329-89bb-3c8c-ace7-5dea136b33d8", + "path": "z://MP4\\Sing King Karaoke\\Alan Walker, K 391 and Emelie Hollow - Lily (Karaoke Version).mp4", + "title": "Lily" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Sara Evans", + "playlist_title": "As If", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "guid": "d2e88774-32ee-8450-b8ba-a7b0c99b1d4a", + "path": "z://CDG\\Various\\Sara Evans - Cheatin'.mp3", + "title": "Cheatin'" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paramore", + "playlist_title": "Crushcrushcrush", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "guid": "44db5b5e-5e9b-fa1e-09b7-3aa36ee745cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF262\\Paramore - Crush Crush Crush - SF262 - 08.mp3", + "title": "Crush Crush Crush" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Mistletoe", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "bf4d5c5a-1cbf-4b0d-d1e1-746f091a962c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Magic - Colbie Caillat.mp4", + "title": "Magic" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Plies Featuring Akon", + "title": "Hypnotized", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz", + "title": "Can't Help But Wait", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Playaz Circle Featuring Lil Wayne", + "title": "Duffle Bag Boy", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "title": "Sweetest Girl (Dollar Bill)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "title": "I'm So Hood", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Santana Featuring Chad Kroeger", + "title": "Into The Night", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Bow Wow & Omarion", + "title": "Girlfriend", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Justin Timberlake Duet With Beyonce", + "title": "Until The End Of Time", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "J. Holiday", + "title": "Suffocate", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "J. Holiday", + "title": "Bed", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Birdman Featuring Lil Wayne", + "title": "Pop Bottles", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Keyshia Cole Introducing Amina", + "title": "Shoulda Let You Go", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "title": "Get Buck In Here", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Soulja Boy Tell'em Featuring I-15", + "title": "Soulja Girl", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "title": "Ayo Technology", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cassidy Featuring Swizz Beatz", + "title": "My Drink N' My 2 Step", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "title": "Independent", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Fabolous Featuring Jermaine Dupri", + "title": "Baby Don't Go", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Enur Featuring Natasja", + "title": "Calabria 2008", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Mario", + "title": "Crying Out For Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Last Goodnight", + "title": "Pictures Of You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Jay-Z", + "title": "Roc Boys (And The Winner Is)...", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Juanes", + "title": "Me Enamora", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 24, + "missing_count": 29, + "needs_manual_review": 24 + } + }, + { + "playlist_title": "2006 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Akon Featuring Snoop Dogg", + "playlist_title": "I Wanna Love You", + "found_song": { + "artist": "Akon Featuring Snoop Dogg", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d583fc-6fb2-4688-b935-618444f4b46d", + "path": "z://MP4\\KaraokeOnVEVO\\Akon Featuring Snoop Dogg - I Wanna Love You.mp4", + "title": "I Wanna Love You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Justin Timberlake Featuring T.I.", + "playlist_title": "My Love", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393446d0-6d6d-447c-ecc0-b8c7112894c4", + "path": "z://CDG\\Various\\Justin Timberlake - My Love.mp3", + "title": "My Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Akon Featuring Eminem", + "playlist_title": "Smack That", + "found_song": { + "artist": "Akon, Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f53e216e-9b07-462b-9629-04a1d562e86c", + "path": "z://MP4\\Sing King Karaoke\\Akon, Eminem - Smack That.mp4", + "title": "Smack That" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Rihanna & Sean Paul", + "playlist_title": "Break It Off", + "found_song": { + "artist": "Rihanna ft. Sean Paul", + "disabled": false, + "favorite": false, + "guid": "40629c39-f986-b562-92f5-8ef882dfeb4d", + "path": "z://CDG\\Various\\Rihanna & Sean Paul - Break It Off.mp3", + "title": "Break It Off" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Vanessa Hudgens", + "playlist_title": "Come Back To Me", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "ac47621e-fbe3-27de-0b25-4a8048095a69", + "path": "z://CDG\\Various\\Janet Jackson - Come Back To Me.mp3", + "title": "Come Back To Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 4, + "missing_count": 3, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2006 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Alyssa Lies", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a543310-a878-003b-c6f0-e5ea2d5fc507", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Alyssa Lies.mp4", + "title": "Alyssa Lies" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Martina McBride", + "playlist_title": "Anyway", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "b7e5bea2-54ed-7cb3-7d90-d5c53340bd2b", + "path": "z://CDG\\Various\\Martina McBride - Anyway.mp3", + "title": "Anyway" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Joe Nichols", + "playlist_title": "I'll Wait For you", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8cbf81-9a83-081f-0b31-95adf822cb8a", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Nichols - Ill Wait For you.mp4", + "title": "I'll Wait For you" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Sara Evans", + "playlist_title": "You'll Always Be My Baby", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8300b37-e4ca-bf00-c53c-3558fd753824", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Youll Always Be My Baby.mp4", + "title": "You'll Always Be My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Brad Paisley", + "playlist_title": "She's Everything", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "5f2a79de-4a90-1080-c1d8-e36e42266fc4", + "path": "z://MP4\\Stingray Karaoke\\She's Everything (Radio Version) in the Style of Brad Paisley with lyrics (no lead vocal).mp4", + "title": "She's Everything (Radio Version)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Some People Change", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Wreckers", + "playlist_title": "My, Oh My", + "found_song": { + "artist": "Wreckers", + "disabled": false, + "favorite": false, + "guid": "be2efa61-f0d7-0fb9-aac4-213b734fa74a", + "path": "z://CDG\\Various\\Wreckers - My, Oh My.mp3", + "title": "My, Oh My" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Phil Vassar", + "playlist_title": "The Woman In My Life", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "7ad19d5d-ef45-7f70-6be5-f36f2d9498a2", + "path": "z://CDG\\Various\\Phil Vassar - Last Day Of My Life.mp3", + "title": "Last Day Of My Life" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Little Big Town", + "playlist_title": "Good As Gone", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "848738e0-0092-8433-cf3b-6548f0190766", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Pontoon (Karaoke without Vocal).mp4", + "title": "Pontoon" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Darryl Worley", + "title": "I Just Came Back From A War", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gary Allan", + "title": "A Feelin' Like That", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 7, + "missing_count": 4, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2006 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Akon Featuring Snoop Dogg", + "playlist_title": "I Wanna Love You", + "found_song": { + "artist": "Akon Featuring Snoop Dogg", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d583fc-6fb2-4688-b935-618444f4b46d", + "path": "z://MP4\\KaraokeOnVEVO\\Akon Featuring Snoop Dogg - I Wanna Love You.mp4", + "title": "I Wanna Love You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ciara", + "playlist_title": "Promise", + "found_song": { + "artist": "Ciara", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ab5e084-48f3-f0cb-67e1-ad955b369bfb", + "path": "z://MP4\\KaraokeOnVEVO\\Ciara - Promise.mp4", + "title": "Promise" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Wind It Up", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "63203cfd-2f78-aef1-c72f-2c9ec5bf542b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF251\\Gwen Stefani - Wind It Up - SF251 - 03.mp3", + "title": "Wind It Up" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Keep Holding On", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4331b8d1-ac13-c9c9-7331-09eca3a72f98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Avril Lavigne - Keep Holding On.mp4", + "title": "Keep Holding On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Snoop Dogg Featuring R. Kelly", + "playlist_title": "That's That", + "found_song": { + "artist": "Snoop Dogg Featuring R. Kelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b36aeb8-66ad-6d77-a450-a9d412b50c51", + "path": "z://MP4\\KaraokeOnVEVO\\Snoop Dogg Featuring R. Kelly - That's That.mp4", + "title": "That's That" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Welcome To The Black Parade", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "06fcd40d-01c7-a8fd-c31f-a8b0c7ed5ddb", + "path": "z://MP4\\Sing King Karaoke\\My Chemical Romance - Welcome To The Black Parade (Karaoke Version).mp4", + "title": "Welcome To The Black Parade" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Chris Brown", + "playlist_title": "Say Goodbye", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "5c5f5ee1-ca20-46a0-aa0a-aab320a52189", + "path": "z://CDG\\Various\\Chris Brown - Say Goodbye.mp3", + "title": "Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Justin Timberlake", + "playlist_title": "What Goes Around...", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7242a2-5adc-f364-bdc7-0cfbd17b6598", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - What Goes Around....mp4", + "title": "What Goes Around..." + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Daughtry", + "playlist_title": "It's Not Over", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "6d91d8a1-26f0-927d-753b-ef120ec394cf", + "path": "z://CDG\\Various\\Daughtry - It's Not Over.mp3", + "title": "It's Not Over" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Rascal Flatts", + "playlist_title": "What Hurts The Most", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "41f639fe-5fc3-528b-64dd-2c55467ec433", + "path": "z://MP4\\Stingray Karaoke\\What Hurts The Most Rascal Flatts Karaoke with Lyrics.mp4", + "title": "What Hurts The Most" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Snow ((Hey Oh))", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "888cdcf5-b499-983f-dbda-b041f37727b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Red Hot Chili Peppers - Snow (hey Oh) - SF250 - 07.mp3", + "title": "Snow (hey Oh)" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Weird Al Yankovic", + "playlist_title": "White & Nerdy", + "found_song": { + "artist": "Weird Al Yankovic", + "disabled": false, + "favorite": false, + "guid": "147d524b-8a4e-2756-96aa-9edebcec8e88", + "path": "z://MP4\\KtvEntertainment\\Weird Al Yankovic - White & Nerdy (Karaoke without Vocal).mp4", + "title": "White & Nerdy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Killers", + "playlist_title": "When You Were Young", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "5c1bb851-d920-6b95-042d-6e006c5422be", + "path": "z://MP4\\TheKARAOKEChannel\\The Killers - When You Were Young.mp4", + "title": "When You Were Young" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Maneater", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "782ed721-e722-e711-f45d-d4ba5cdc8525", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nelly Furtado - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "OK Go", + "playlist_title": "Here It Goes Again", + "found_song": { + "artist": "OK Go", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce63d670-b8a2-3500-ba04-90c695679586", + "path": "z://MP4\\KaraokeOnVEVO\\OK Go - Here It Goes Again.mp4", + "title": "Here It Goes Again" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Hellogoodbye", + "playlist_title": "Here (In Your Arms)", + "found_song": { + "artist": "Hellogoodbye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de899fa7-7b0b-5914-00fe-9b874f3922dc", + "path": "z://MP4\\KaraokeOnVEVO\\Hellogoodbye - Here (In Your Arms.mp4", + "title": "Here (In Your Arms)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Rob Thomas", + "playlist_title": "Streetcorner Symphony", + "found_song": { + "artist": "Rob Thomas", + "disabled": false, + "favorite": false, + "guid": "317c7d7a-84ef-4892-7296-a7cfa221bfc1", + "path": "z://CDG\\Various\\Rob Thomas - Streetcorner Symphony.mp3", + "title": "Streetcorner Symphony" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "ee857071-16f1-7b56-37ef-30eba74c4c5c", + "path": "z://CDG\\Various\\Mary J. Blige - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Regina Spektor", + "playlist_title": "Fidelity", + "found_song": { + "artist": "Regina Spektor", + "disabled": false, + "favorite": false, + "guid": "5145e72a-3d70-51f5-6e2c-7cd4116561e0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fidelity - Regina Spektor.mp4", + "title": "Fidelity" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Akon Featuring Eminem", + "playlist_title": "Smack That", + "found_song": { + "artist": "Akon, Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f53e216e-9b07-462b-9629-04a1d562e86c", + "path": "z://MP4\\Sing King Karaoke\\Akon, Eminem - Smack That.mp4", + "title": "Smack That" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Justin Timberlake Featuring T.I.", + "playlist_title": "My Love", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393446d0-6d6d-447c-ecc0-b8c7112894c4", + "path": "z://CDG\\Various\\Justin Timberlake - My Love.mp3", + "title": "My Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Young Jeezy", + "playlist_title": "I Luv It", + "found_song": { + "artist": "Young Jeezy", + "disabled": false, + "favorite": false, + "guid": "561f7b25-2a0f-7d6a-0190-98768f42f653", + "path": "z://MP4\\TheKARAOKEChannel\\I Luv It (I Love It) in the style of Young Jeezy karaoke video with lyrics.mp4", + "title": "I Luv It (I Love It)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Brad Paisley", + "playlist_title": "She's Everything", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "5f2a79de-4a90-1080-c1d8-e36e42266fc4", + "path": "z://MP4\\Stingray Karaoke\\She's Everything (Radio Version) in the Style of Brad Paisley with lyrics (no lead vocal).mp4", + "title": "She's Everything (Radio Version)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "The Pussycat Dolls Featuring Timbaland", + "playlist_title": "Wait A Minute", + "found_song": { + "artist": "Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "b9643871-16af-e7bf-7405-6b99051361a6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Pussycat Dolls - Wait A Minute - SF250 - 16.mp3", + "title": "Wait A Minute" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The Fray", + "playlist_title": "Happy Xmas (War Is Over)", + "found_song": { + "artist": "Céline Dion", + "disabled": false, + "favorite": false, + "guid": "d5f9e06f-06b4-f5b8-5c83-3863185d55a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Xmas (War Is Over) - Céline Dion.mp4", + "title": "Happy Xmas (War Is Over)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Jay-Z", + "playlist_title": "Show Me What You Got", + "found_song": { + "artist": "Abs", + "disabled": false, + "favorite": false, + "guid": "ec1fb7ba-e805-db5b-5a8c-f8eb83af199b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF195\\Abs - What You Got - SF195 - 17.mp3", + "title": "What You Got" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Rihanna & Sean Paul", + "playlist_title": "Break It Off", + "found_song": { + "artist": "Rihanna ft. Sean Paul", + "disabled": false, + "favorite": false, + "guid": "40629c39-f986-b562-92f5-8ef882dfeb4d", + "path": "z://CDG\\Various\\Rihanna & Sean Paul - Break It Off.mp3", + "title": "Break It Off" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Chris Brown Featuring Jay Biz", + "playlist_title": "Poppin'", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Blue October", + "playlist_title": "Into The Ocean", + "found_song": { + "artist": "Blue October", + "disabled": false, + "favorite": false, + "guid": "6a3063ff-cb0b-b7c7-a54c-82e9827a1fd9", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-011 - Blue October - The End.avi (karaoke).mp4", + "title": "The End" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Some People Change", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "River", + "found_song": { + "artist": "Josh Groban & Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "24976346-8ae3-676f-7f27-311972e7e953", + "path": "z://MP4\\KaraFun Karaoke\\Run - Josh Groban & Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Run" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "U2 & Green Day", + "playlist_title": "The Saints Are Coming", + "found_song": { + "artist": "U2 ft. Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eab14c05-0b20-0ceb-2469-8070ec5ae5fc", + "path": "z://MP4\\KaraokeOnVEVO\\U2 & Green Day - The Saints Are Coming.mp4", + "title": "The Saints Are Coming" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Red Jumpsuit Apparatus", + "playlist_title": "Face Down", + "found_song": { + "artist": "The Red Jumpsuit Apparatus", + "disabled": false, + "favorite": false, + "guid": "597ef99d-8968-6866-da0b-81ae0dacf4a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Guardian Angel - The Red Jumpsuit Apparatus.mp4", + "title": "Your Guardian Angel" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Vanessa Hudgens", + "playlist_title": "Come Back To Me", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "ac47621e-fbe3-27de-0b25-4a8048095a69", + "path": "z://CDG\\Various\\Janet Jackson - Come Back To Me.mp3", + "title": "Come Back To Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Three Days Grace", + "playlist_title": "Pain", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Fall Out Boy", + "playlist_title": "The Carpal Tunnel Of Love", + "found_song": { + "artist": "Fun Boy Three", + "disabled": false, + "favorite": false, + "guid": "c46d3d86-b933-af97-1553-af1c772ba20b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 914\\Fun Boy Three - Tunnel Of Love - SFMW914 - 05.mp3", + "title": "Tunnel Of Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Heartland", + "playlist_title": "I Loved Her First", + "found_song": { + "artist": "Heartland", + "disabled": false, + "favorite": false, + "guid": "ef53ba78-c69d-1692-5849-023627471fea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Loved Her First - Heartland.mp4", + "title": "I Loved Her First" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "AFI", + "playlist_title": "Love Like Winter", + "found_song": { + "artist": "ZAYN", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "968037b5-4b14-b550-e835-31e39a0f8c85", + "path": "z://MP4\\Sing King Karaoke\\ZAYN - Love Like This.mp4", + "title": "Love Like This" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Robin Thicke", + "playlist_title": "Lost Without U", + "found_song": { + "artist": "Robin Thicke", + "disabled": false, + "favorite": false, + "guid": "b2be886c-7164-46ba-d570-2b7e6873b4c2", + "path": "z://MP4\\singsongsmusic\\Give it 2 U - Karaoke HD (In the style of Robin Thicke).mp4", + "title": "Give it 2 U" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Mat Kearney", + "playlist_title": "Nothing Left To Lose", + "found_song": { + "artist": "The Pretty Reckless", + "disabled": false, + "favorite": false, + "guid": "33e7803a-f5fa-d212-393f-7804beacc3fe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nothing Left To Lose - The Pretty Reckless.mp4", + "title": "Nothing Left To Lose" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Gwen Stefani Featuring Akon", + "playlist_title": "The Sweet Escape", + "found_song": { + "artist": "Gwen Stefani ft. Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f531172b-aac1-65ab-ff87-f055d952ea04", + "path": "z://MP4\\Sing King Karaoke\\Gwen Stefani Featuring Akon - The Sweet Escape.mp4", + "title": "The Sweet Escape" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Josh Groban", + "playlist_title": "I'll Be Home For Christmas", + "found_song": { + "artist": "Amy Grant", + "disabled": false, + "favorite": false, + "guid": "0e169582-b622-0070-f6db-943dc2b067ad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Be Home For Christmas - Amy Grant.mp4", + "title": "I ll Be Home For Christmas" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Jim Jones", + "title": "We Fly High", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "title": "Shortie Like Mine", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Unk", + "title": "Walk It Out", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "title": "You Don't Know", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Featuring Lil' Wayne", + "title": "You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Fat Joe Featuring Lil Wayne", + "title": "Make It Rain", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Ludacris Featuring Mary J. Blige", + "title": "Runaway Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil Scrappy Featuring Young Buck", + "title": "Money In The Bank", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Stone Sour", + "title": "Through Glass", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Birdman & Lil Wayne", + "title": "Stuntin' Like My Daddy", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Diddy Featuring Christina Aguilera", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Diddy Featuring Nicole Scherzinger", + "title": "Come To Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Cherish", + "title": "Unappreciated", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Danity Kane", + "title": "Show Stopper", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Nas Featuring will.i.am", + "title": "Hip Hop Is Dead", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Omarion", + "title": "Ice Box", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jay-Z Featuring Chrisette Michele", + "title": "Lost One", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Augustana", + "title": "Boston", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lil' Boosie Featuring Yung Joc", + "title": "Zoom", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Beyonce Featuring Jay-Z", + "title": "Upgrade U", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Incubus", + "title": "Anna-Molly", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "T.I.", + "title": "Top Back", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jibbs", + "title": "Chain Hang Low", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Chingy Featuring Jermaine Dupri", + "title": "Dem Jeans", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rich Boy Featuring Polow Da Don", + "title": "Throw Some D's", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Game", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Pitbull", + "title": "Ay Chico (Lengua Afuera)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "title": "The Way I Live", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 42, + "fuzzy_match_count": 25, + "missing_count": 33, + "needs_manual_review": 25 + } + }, + { + "playlist_title": "2005 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Keyshia Cole", + "playlist_title": "I Should Have Cheated", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "guid": "fc6015e5-9b3b-682c-3935-9c014e74104c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Sent - Keyshia Cole.mp4", + "title": "Heaven Sent" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Alicia Keys", + "playlist_title": "Unbreakable", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "6fea1580-707e-c2e3-78a3-1b70aa702f46", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF294\\Alicia Keys - Unthinkable - SF294 - 06.mp3", + "title": "Unthinkable" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lil' Wayne", + "playlist_title": "Fireman", + "found_song": { + "artist": "Lil' Wayne & Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e40f797-b7a6-ae85-dce1-a76e19790c5a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF313\\Lil' Wayne & Bruno Mars - Mirror (clean) - SF313 - 18.mp3", + "title": "Mirror (clean)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kanye West Featuring Adam Levine", + "playlist_title": "Heard 'Em Say", + "found_song": { + "artist": "R. City Featuring Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df18f5fe-3a4b-9b71-00bf-23caed979ea3", + "path": "z://MP4\\KaraokeOnVEVO\\R. City Featuring Adam Levine - Locked Away.mp4", + "title": "Locked Away" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Trey Songz", + "playlist_title": "Gotta Go", + "found_song": { + "artist": "Trey Songz", + "disabled": false, + "favorite": false, + "guid": "6eb0fe4a-8754-1f09-3694-df8367d3f333", + "path": "z://MP4\\KtvEntertainment\\Trey Songz - Say Aah Karaoke Lyrics.mp4", + "title": "Say Aah" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Kirk Franklin", + "playlist_title": "Looking For You", + "found_song": { + "artist": "Kirk Franklin", + "disabled": false, + "favorite": false, + "guid": "1a27d190-7dd6-07ac-50a4-ef482580249c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lean On Me - Kirk Franklin.mp4", + "title": "Lean On Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "50 Cent", + "playlist_title": "Window Shopper", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8414ab-3bf0-1689-3fc3-b835350fcfaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\50 Cent - Candy Shop.mp4", + "title": "Candy Shop" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lyfe Jennings", + "title": "Must Be Nice", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 7, + "missing_count": 12, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2005 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Kanye West Featuring Jamie Foxx", + "playlist_title": "Gold Digger", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "19d94e4e-068f-8375-83f8-1097c02d3dc1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gold Digger - Kanye West.mp4", + "title": "Gold Digger" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Sean Paul", + "playlist_title": "We Be Burnin'", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77e24386-4552-537c-aa75-25410f677eea", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sean Paul - Get Busy.mp4", + "title": "Get Busy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 3, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2005 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Brad Paisley Featuring Dolly Parton", + "playlist_title": "When I Get Where I'm Going", + "found_song": { + "artist": "Brad Paisley Featuring Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23bcfe67-8104-457e-5a76-9a2eb4814602", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley Featuring Dolly Parton - When I Get Where Im Going.mp4", + "title": "When I Get Where I'm Going" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Sara Evans", + "playlist_title": "Cheatin'", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "guid": "d2e88774-32ee-8450-b8ba-a7b0c99b1d4a", + "path": "z://CDG\\Various\\Sara Evans - Cheatin'.mp3", + "title": "Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Nobody But Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "2ad5b86e-8283-241d-0d6e-52d7ffdad067", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Nobody But Me.mp3", + "title": "Nobody But Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jamey Johnson", + "playlist_title": "The Dollar", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6b19281-fabe-b18a-e68e-a0a6ee6a2058", + "path": "z://MP4\\KaraokeOnVEVO\\Jamey Johnson - The Dollar.mp4", + "title": "The Dollar" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Garth Brooks", + "playlist_title": "Good Ride Cowboy", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8685ae60-9022-d8cc-e146-0500a41dc6c4", + "path": "z://CDG\\Various\\Garth Brooks - Right Now.mp3", + "title": "Right Now" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Joe Nichols", + "playlist_title": "Tequila Makes Her Clothes Fall Off", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f677459-5d80-7bcc-e1ca-1fdf90f7feeb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Nichols - Tequila Makes Her Clothes Fall Off (Without Backing Vocals) Zoom.mp4", + "title": "Tequila Makes Her Clothes Fall Off (Without Backing Vocals) - Zoom" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Who You'd Be Today", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "49bb4991-0eac-94c4-9d11-08debede7242", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - What I Need To Do (Karaoke).mp4", + "title": "What I Need To Do" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "Believe", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "0750af9f-00c0-b6e7-c57e-1a6302b5a6ea", + "path": "z://CDG\\Various\\Brooks & Dunn - Believe.mp3", + "title": "Believe" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gretchen Wilson", + "title": "I Don't Feel Like Loving You Today", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 7, + "missing_count": 2, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2005 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Madonna", + "playlist_title": "Hung Up", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "f20ee305-c5ab-05f0-f95b-78d8563de21f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Madonna - Hung Up - SF238 - 02.mp3", + "title": "Hung Up" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "James Blunt", + "playlist_title": "You're Beautiful", + "found_song": { + "artist": "James Blunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4433ad20-9204-4b26-d1c5-469de0048c4f", + "path": "z://MP4\\Sing King Karaoke\\James Blunt - Youre Beautiful.mp4", + "title": "You're Beautiful" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Gorillaz", + "playlist_title": "Feel Good Inc", + "found_song": { + "artist": "Gorillaz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d5581fa1-9b96-ea02-69cd-76ba6958063e", + "path": "z://MP4\\Sing King Karaoke\\Gorillaz - Feel Good Inc.mp4", + "title": "Feel Good Inc" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Green Day", + "playlist_title": "Wake Me Up When September Ends", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "73489459-90de-96ba-4c6d-8e9289dbcfb6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Me Up When September Ends - Green Day.mp4", + "title": "Wake Me Up When September Ends" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "561fec1d-1402-53b0-88f5-65f9f1b1a6a3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Mariah Carey - Shake It Off - SF236 - 13.mp3", + "title": "Shake It Off" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Pussycat Dolls Featuring Busta Rhymes", + "playlist_title": "Don't Cha", + "found_song": { + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cba42c4-225a-94ac-d62a-b1b4728c4d21", + "path": "z://MP4\\KaraokeOnVEVO\\The Pussycat Dolls Featuring Busta Rhymes - Don't Cha.mp4", + "title": "Don't Cha" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mariah Carey", + "playlist_title": "We Belong Together", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "57bd5ff3-646d-8e1b-2610-1ca9a0998dff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF232\\Mariah Carey - We Belong Together - SF232 - 02.mp3", + "title": "We Belong Together" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Better Days", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "251a7d67-2f85-498b-f025-288678f15a77", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Better Days (Karaoke).mp4", + "title": "Better Days" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Shakira", + "playlist_title": "Don't Bother", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "6cea6dd0-ed12-3f74-4573-b2177798ef23", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF240\\Shakira - Don't Bother - SF240 - 01.mp3", + "title": "Don't Bother" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Brad Paisley Featuring Dolly Parton", + "playlist_title": "When I Get Where I'm Going", + "found_song": { + "artist": "Brad Paisley Featuring Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23bcfe67-8104-457e-5a76-9a2eb4814602", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley Featuring Dolly Parton - When I Get Where Im Going.mp4", + "title": "When I Get Where I'm Going" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Rompe", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "0c48353b-0f9c-92ce-752f-b482f092cc11", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Rompe (Karaoke Version) (2).mp4", + "title": "Rompe" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Pump It", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87718b7c-4493-9eba-8937-2f4c557c37e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Pump It.mp4", + "title": "Pump It" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Keith Urban", + "playlist_title": "Better Life", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78b300e5-495a-9234-5a85-8457af3fe66d", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Better Life.mp4", + "title": "Better Life" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Avenged Sevenfold", + "playlist_title": "Bat Country", + "found_song": { + "artist": "Avenged Sevenfold", + "disabled": false, + "favorite": false, + "guid": "2426b09c-ef14-2cc8-f23f-2d4085ae41df", + "path": "z://MP4\\TheKARAOKEChannel\\Avenged Sevenfold - Bat Country.mp4", + "title": "Bat Country" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shinedown", + "playlist_title": "Save Me", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58552639-5aca-d289-f283-358634858516", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - Save Me.mp4", + "title": "Save Me" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Foo Fighters", + "playlist_title": "DOA", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "c6f7a97a-73c0-41b8-791e-e56425cdd25f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF235\\Foo Fighters - Doa - SF235 - 08.mp3", + "title": "Doa" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ashlee Simpson", + "playlist_title": "Boyfriend", + "found_song": { + "artist": "Ashlee Simpson", + "disabled": false, + "favorite": false, + "guid": "b2398a6c-b327-8ae2-3287-284f7ddf5146", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF239\\Ashlee Simpson - Boyfriend - SF239 - 12.mp3", + "title": "Boyfriend" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Bon Jovi", + "playlist_title": "Have A Nice Day", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "b68159ce-d595-aae8-d472-859672419755", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Bon Jovi - Have A Nice Day - Sf236 - 04 .mp3", + "title": "Have A Nice Day" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Kanye West Featuring Jamie Foxx", + "playlist_title": "Gold Digger", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "19d94e4e-068f-8375-83f8-1097c02d3dc1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gold Digger - Kanye West.mp4", + "title": "Gold Digger" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Sean Paul", + "playlist_title": "We Be Burnin'", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77e24386-4552-537c-aa75-25410f677eea", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sean Paul - Get Busy.mp4", + "title": "Get Busy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Kanye West Featuring Adam Levine", + "playlist_title": "Heard 'Em Say", + "found_song": { + "artist": "R. City Featuring Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df18f5fe-3a4b-9b71-00bf-23caed979ea3", + "path": "z://MP4\\KaraokeOnVEVO\\R. City Featuring Adam Levine - Locked Away.mp4", + "title": "Locked Away" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Lil' Wayne", + "playlist_title": "Fireman", + "found_song": { + "artist": "Lil' Wayne & Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e40f797-b7a6-ae85-dce1-a76e19790c5a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF313\\Lil' Wayne & Bruno Mars - Mirror (clean) - SF313 - 18.mp3", + "title": "Mirror (clean)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Keyshia Cole", + "playlist_title": "I Should Have Cheated", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "guid": "fc6015e5-9b3b-682c-3935-9c014e74104c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Sent - Keyshia Cole.mp4", + "title": "Heaven Sent" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Joe Nichols", + "playlist_title": "Tequila Makes Her Clothes Fall Off", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f677459-5d80-7bcc-e1ca-1fdf90f7feeb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Nichols - Tequila Makes Her Clothes Fall Off (Without Backing Vocals) Zoom.mp4", + "title": "Tequila Makes Her Clothes Fall Off (Without Backing Vocals) - Zoom" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "50 Cent", + "playlist_title": "Window Shopper", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8414ab-3bf0-1689-3fc3-b835350fcfaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\50 Cent - Candy Shop.mp4", + "title": "Candy Shop" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Alicia Keys", + "playlist_title": "Unbreakable", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "6fea1580-707e-c2e3-78a3-1b70aa702f46", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF294\\Alicia Keys - Unthinkable - SF294 - 06.mp3", + "title": "Unthinkable" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Cascada", + "playlist_title": "Everytime We Touch", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "11e13589-f1fa-b40d-c7cf-4ba93638c956", + "path": "z://MP4\\TheKARAOKEChannel\\Everytime We Touch (Radio Version) in the style of Cascada Karaoke with Lyrics.mp4", + "title": "Everytime We Touch (Radio Version)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Who You'd Be Today", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "49bb4991-0eac-94c4-9d11-08debede7242", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - What I Need To Do (Karaoke).mp4", + "title": "What I Need To Do" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Garth Brooks", + "playlist_title": "Good Ride Cowboy", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8685ae60-9022-d8cc-e146-0500a41dc6c4", + "path": "z://CDG\\Various\\Garth Brooks - Right Now.mp3", + "title": "Right Now" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Death Cab For Cutie", + "playlist_title": "Soul Meets Body", + "found_song": { + "artist": "Death Cab for Cutie", + "disabled": false, + "favorite": false, + "guid": "7ff31e95-479a-b922-884c-d2bb9fe70056", + "path": "z://MP4\\KaraokeOnVEVO\\Death Cab for Cutie - You Are A Tourist (Karaoke).mp4", + "title": "You Are A Tourist" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "System Of A Down", + "playlist_title": "Hypnotize", + "found_song": { + "artist": "System Of A Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7abddee0-fef2-a96a-b77e-cdcce30cf808", + "path": "z://CDG\\SBI\\SBI-04\\SB11246 - System Of A Down - Spiders.mp3", + "title": "Spiders" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Busta Rhymes", + "playlist_title": "Touch It", + "found_song": { + "artist": "Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip", + "disabled": false, + "favorite": false, + "guid": "440a7b00-70f0-ce2b-6f05-17b45c84f9bc", + "path": "z://CDG\\Mr Entertainer\\MRH114\\Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip - Thank You.mp3", + "title": "Thank You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Trey Songz", + "playlist_title": "Gotta Go", + "found_song": { + "artist": "Trey Songz", + "disabled": false, + "favorite": false, + "guid": "6eb0fe4a-8754-1f09-3694-df8367d3f333", + "path": "z://MP4\\KtvEntertainment\\Trey Songz - Say Aah Karaoke Lyrics.mp4", + "title": "Say Aah" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Cast Of Rent", + "playlist_title": "Seasons Of Love", + "found_song": { + "artist": "Rent", + "disabled": false, + "favorite": false, + "guid": "1ec06fca-bb11-f666-7d15-e73c212faade", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Seasons Of Love - Rent.mp4", + "title": "Seasons Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Ashlee Simpson", + "playlist_title": "L.O.V.E.", + "found_song": { + "artist": "Ashlee Simpson", + "disabled": false, + "favorite": false, + "guid": "6b814e22-4f30-723b-c182-d6e9d18e9aad", + "path": "z://MP4\\Let's Sing Karaoke\\Simpson, Ashlee - La La (Karaoke & Lyrics).mp4", + "title": "La La" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Kirk Franklin", + "playlist_title": "Looking For You", + "found_song": { + "artist": "Kirk Franklin", + "disabled": false, + "favorite": false, + "guid": "1a27d190-7dd6-07ac-50a4-ef482580249c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lean On Me - Kirk Franklin.mp4", + "title": "Lean On Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Frankie J", + "playlist_title": "More Than Words", + "found_song": { + "artist": "Extreme", + "disabled": false, + "favorite": false, + "guid": "5f2627e2-30a5-d743-14d4-579d88f5d8e3", + "path": "z://MP4\\Sing King Karaoke\\Extreme - More Than Words (Karaoke Version).mp4", + "title": "More Than Words" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Seether", + "playlist_title": "Remedy", + "found_song": { + "artist": "Seether & Amy Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2e70b9f-e769-7eb3-38bb-c6dd5225aa9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 858\\Seether & Amy Lee - Broken - SFMW 858 -04.mp3", + "title": "Broken" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "Believe", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "0750af9f-00c0-b6e7-c57e-1a6302b5a6ea", + "path": "z://CDG\\Various\\Brooks & Dunn - Believe.mp3", + "title": "Believe" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Chamillionaire Featuring Lil' Flip", + "title": "Turn It Up", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "title": "Georgia", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Eminem Featuring Nate Dogg", + "title": "Shake That", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "title": "Nasty Girl", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Korn", + "title": "Twisted Transistor", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ying Yang Twins Featuring Pitbull", + "title": "Shake", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Juvenile", + "title": "Rodeo", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "title": "Fresh Azimiz", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Weezer", + "title": "Perfect Situation", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Wisin & Yandel", + "title": "Rakata", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "T-Pain Featuring Mike Jones", + "title": "I'm N Luv (Wit A Stripper)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Chris Brown", + "title": "Yo (Excuse Me Miss)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "YoungBloodZ", + "title": "Presidential", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Twista Featuring Pitbull", + "title": "Hit The Floor", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Lindsay Lohan", + "title": "Confessions Of A Broken Heart (Daughter To Father)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 48, + "fuzzy_match_count": 25, + "missing_count": 27, + "needs_manual_review": 25 + } + }, + { + "playlist_title": "2004 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Snoop Dogg Featuring Pharrell", + "playlist_title": "Drop It Like It's Hot", + "found_song": { + "artist": "Snoop Dogg ft. Pharrell Williams", + "disabled": false, + "favorite": false, + "guid": "a4a5511a-0f7c-cc23-46e6-f76e5ff9d487", + "path": "z://MP4\\KtvEntertainment\\Snoop Dogg feat. Pharrell Williams - Drop It Like It's Hot (Karaoke without Vocal).mp4", + "title": "Drop It Like It's Hot" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Usher And Alicia Keys", + "playlist_title": "My Boo", + "found_song": { + "artist": "Usher ft. Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "483549a8-985b-30b4-03bd-793d3ab5f2ce", + "path": "z://MP4\\Sing King Karaoke\\Usher And Alicia Keys - My Boo.mp4", + "title": "My Boo" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Fabolous", + "playlist_title": "Breathe", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cf344d2d-6495-f9ab-db21-2771b96a296d", + "path": "z://MP4\\Karaoke Sing Sing\\Taylor Swift - Breathe (Karaoke Version) (2).mp4", + "title": "Breathe" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Ludacris", + "playlist_title": "Get Back", + "found_song": { + "artist": "Justin Bieber ft. Ludacris", + "disabled": false, + "favorite": false, + "guid": "d920a036-01db-b2f7-d136-65e894e422b0", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Ludacris - Baby (Karaoke Version).mp4", + "title": "Baby" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 5, + "missing_count": 14, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2004 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Nelly Featuring Tim McGraw", + "playlist_title": "Over And Over", + "found_song": { + "artist": "Nelly ft. Tim Mcgraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6138285f-b04b-db54-6852-4d87116add35", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly & Tim Mcgraw - Over And Over.mp4", + "title": "Over And Over" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Usher And Alicia Keys", + "playlist_title": "My Boo", + "found_song": { + "artist": "Usher ft. Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "483549a8-985b-30b4-03bd-793d3ab5f2ce", + "path": "z://MP4\\Sing King Karaoke\\Usher And Alicia Keys - My Boo.mp4", + "title": "My Boo" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Snoop Dogg Featuring Pharrell", + "playlist_title": "Drop It Like It's Hot", + "found_song": { + "artist": "Snoop Dogg ft. Pharrell Williams", + "disabled": false, + "favorite": false, + "guid": "a4a5511a-0f7c-cc23-46e6-f76e5ff9d487", + "path": "z://MP4\\KtvEntertainment\\Snoop Dogg feat. Pharrell Williams - Drop It Like It's Hot (Karaoke without Vocal).mp4", + "title": "Drop It Like It's Hot" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Switchfoot", + "playlist_title": "Dare You To Move", + "found_song": { + "artist": "Switchfoot", + "disabled": false, + "favorite": false, + "guid": "678d1808-6dc2-1bf2-af6c-aa69370dd3b1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF221\\Switchfoot - Meant To Live - SF221 - 16.mp3", + "title": "Meant To Live" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ciara Featuring Petey Pablo", + "playlist_title": "Goodies", + "found_song": { + "artist": "Petey Pablo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a94cf012-04cb-8bce-07fa-3ca1a7fff15f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF229\\Petey Pablo - Goodies - SF229 - 08.mp3", + "title": "Goodies" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 6, + "missing_count": 3, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2004 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Josh Gracin", + "playlist_title": "Nothin' To Lose", + "found_song": { + "artist": "Josh Gracin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf9f50b0-c0e0-f267-0494-14fabb2f3757", + "path": "z://MP4\\KaraokeOnVEVO\\Josh Gracin - Nothin To Lose.mp4", + "title": "Nothin' To Lose" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Billy Dean", + "playlist_title": "Let Them Be Little", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "guid": "192f3e01-56f7-2649-6d67-6ada6e5ba039", + "path": "z://MP4\\Let's Sing Karaoke\\Dean, Billy - Let Them Be Little (Karaoke & Lyrics).mp4", + "title": "Let Them Be Little" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "I May Hate Myself In The Morning", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95953d65-31ce-b1bf-b9c3-fb1e3e0400a8", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - I May Hate Myself In The Morning.mp4", + "title": "I May Hate Myself In The Morning" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Pat Green", + "playlist_title": "Don't Break My Heart Again", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e95db78-7929-e48d-2e5a-1ec2a4d19662", + "path": "z://MP4\\KaraokeOnVEVO\\Pat Green - Dont Break My Heart Again.mp4", + "title": "Don't Break My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jamie O'Neal", + "playlist_title": "Trying To Find Atlantis", + "found_song": { + "artist": "Jamie O Neal", + "disabled": false, + "favorite": false, + "guid": "360bbad9-b954-10e2-006b-500d7dd405a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Trying To Find Atlantis - Jamie O Neal.mp4", + "title": "Trying To Find Atlantis" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Andy Griggs", + "playlist_title": "If Heaven", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c71511f6-73e1-5906-747e-f97b91669214", + "path": "z://MP4\\KaraokeOnVEVO\\Andy Griggs - If Heaven.mp4", + "title": "If Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Lonestar", + "playlist_title": "Mr. Mom", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Big & Rich", + "playlist_title": "Holy Water", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "guid": "74e75f73-358e-f8b7-73e9-8d4addf1bcd9", + "path": "z://MP4\\Let's Sing Karaoke\\Big & Rich - Holy Water (Karaoke & Lyrics).mp4", + "title": "Holy Water" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Jimmy Wayne", + "playlist_title": "Paper Angels", + "found_song": { + "artist": "M I A", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c92229c9-de50-ced5-4928-f9a23b7a15c5", + "path": "z://MP4\\Sing King Karaoke\\M I A - Paper Planes.mp4", + "title": "Paper Planes" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 4, + "missing_count": 3, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2004 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Green Day", + "playlist_title": "Boulevard Of Broken Dreams", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "127c4f85-1067-067f-b6c4-c4649fb5452e", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Boulevard Of Broken Dreams (Karaoke Version).mp4", + "title": "Boulevard Of Broken Dreams" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Vertigo", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73197e25-e313-b3fc-82c4-ed816e5c06a5", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Vertigo.mp4", + "title": "Vertigo" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "On The Way Down", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7aa4ad8-eb0c-cf90-e2c0-c903bee2f60e", + "path": "z://MP4\\KaraokeOnVEVO\\Ryan Cabrera - On The Way Down.mp4", + "title": "On The Way Down" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Avril Lavigne", + "playlist_title": "My Happy Ending", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "3f16298a-9ffc-c261-8485-05cadfe9cfa6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happy Ending - Avril Lavigne.mp4", + "title": "My Happy Ending" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Terror Squad", + "playlist_title": "Lean Back", + "found_song": { + "artist": "Terror Squad", + "disabled": false, + "favorite": false, + "guid": "f7e2c54d-3cf9-a309-1a9d-d098c4d0c117", + "path": "z://MP4\\Let's Sing Karaoke\\Terror Squad - Lean Back (Karaoke & Lyrics).mp4", + "title": "Lean Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Killers", + "playlist_title": "Somebody Told Me", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "914c5ed7-9687-2636-95a8-06a18ac476f6", + "path": "z://MP4\\KaraFun Karaoke\\Somebody Told Me - The Killers Karaoke Version KaraFun.mp4", + "title": "Somebody Told Me" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Bowling For Soup", + "playlist_title": "1985", + "found_song": { + "artist": "Bowling For Soup", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c1994f-e8a5-b601-34f7-ecb09321e170", + "path": "z://MP4\\KaraokeOnVEVO\\Bowling For Soup - 1985.mp4", + "title": "1985" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Alicia Keys", + "playlist_title": "Karma", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04518eb6-af7e-f913-cf10-4b591e9b513c", + "path": "z://MP4\\VocalStarKaraoke\\Alicia Keys - Karma.mp4", + "title": "Karma" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Give A Little Bit", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "7ac862fe-521a-013f-d83d-8cf6eb50568f", + "path": "z://MP4\\KaraFun Karaoke\\Give A Little Bit - Goo Goo Dolls Karaoke Version KaraFun.mp4", + "title": "Give A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Gasolina", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "f34e7706-9a7a-48ff-e008-d11451d78b3d", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Gasolina (Karaoke Version) (2).mp4", + "title": "Gasolina" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Usher", + "playlist_title": "Caught Up", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3938bbff-7d91-1dd0-04ba-a0eef20e8163", + "path": "z://MP4\\Sing King Karaoke\\Usher - Caught Up.mp4", + "title": "Caught Up" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Velvet Revolver", + "playlist_title": "Fall To Pieces", + "found_song": { + "artist": "Velvet Revolver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86ccd26e-1cf4-2917-56a8-258edc8b142d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 866\\Velvet Revolver - Fall To Pieces - SFMW 866 -09.mp3", + "title": "Fall To Pieces" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "So Cold", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "47cac92a-4ad0-7fcd-0528-bc5ddfeac841", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Cold - Breaking Benjamin.mp4", + "title": "So Cold" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Phil Vassar", + "playlist_title": "In A Real Love", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "8697e9d1-fedd-ade4-6a27-286b6ddbf6b5", + "path": "z://CDG\\Various\\Phil Vassar - In A Real Love.mp3", + "title": "In A Real Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Papa Roach", + "playlist_title": "Getting Away With Murder", + "found_song": { + "artist": "Papa Roach", + "disabled": false, + "favorite": false, + "guid": "9830b4d1-c9dc-7081-dd33-041025e45792", + "path": "z://CDG\\Various\\Papa Roach - Getting Away With Murder.mp3", + "title": "Getting Away With Murder" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gwen Stefani", + "playlist_title": "What You Waiting For?", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf248731-a9d8-fa6e-f439-b0c603e2b42a", + "path": "z://MP4\\KaraokeOnVEVO\\Gwen Stefani - What You Waiting For.mp4", + "title": "What You Waiting For?" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Green Day", + "playlist_title": "American Idiot", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "e21d4cae-cb13-1c57-659f-eca48d6725ff", + "path": "z://MP4\\KaraFun Karaoke\\American Idiot - Green Day Karaoke Version KaraFun.mp4", + "title": "American Idiot" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Beyonce", + "playlist_title": "Dangerously In Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3eba3d8f-892f-5827-c1ee-4ffd538bba41", + "path": "z://MP4\\Karaoke Sing Sing\\Beyonce - Dangerously In Love SING SING KARAOKE.mp4", + "title": "Dangerously In Love" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "George Strait", + "playlist_title": "I Hate Everything", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75053792-2441-ed1b-5e41-19c2c6ac4879", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I Hate Everything.mp4", + "title": "I Hate Everything" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Snoop Dogg Featuring Pharrell", + "playlist_title": "Drop It Like It's Hot", + "found_song": { + "artist": "Snoop Dogg ft. Pharrell Williams", + "disabled": false, + "favorite": false, + "guid": "a4a5511a-0f7c-cc23-46e6-f76e5ff9d487", + "path": "z://MP4\\KtvEntertainment\\Snoop Dogg feat. Pharrell Williams - Drop It Like It's Hot (Karaoke without Vocal).mp4", + "title": "Drop It Like It's Hot" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Usher ft. Alicia Keys", + "playlist_title": "My Boo", + "found_song": { + "artist": "Usher ft. Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "483549a8-985b-30b4-03bd-793d3ab5f2ce", + "path": "z://MP4\\Sing King Karaoke\\Usher And Alicia Keys - My Boo.mp4", + "title": "My Boo" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Nelly Featuring Tim McGraw", + "playlist_title": "Over And Over", + "found_song": { + "artist": "Nelly ft. Tim Mcgraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6138285f-b04b-db54-6852-4d87116add35", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly & Tim Mcgraw - Over And Over.mp4", + "title": "Over And Over" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Ciara Featuring Petey Pablo", + "playlist_title": "Goodies", + "found_song": { + "artist": "Petey Pablo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a94cf012-04cb-8bce-07fa-3ca1a7fff15f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF229\\Petey Pablo - Goodies - SF229 - 08.mp3", + "title": "Goodies" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ludacris", + "playlist_title": "Get Back", + "found_song": { + "artist": "Justin Bieber ft. Ludacris", + "disabled": false, + "favorite": false, + "guid": "d920a036-01db-b2f7-d136-65e894e422b0", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Ludacris - Baby (Karaoke Version).mp4", + "title": "Baby" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Switchfoot", + "playlist_title": "Dare You To Move", + "found_song": { + "artist": "Switchfoot", + "disabled": false, + "favorite": false, + "guid": "678d1808-6dc2-1bf2-af6c-aa69370dd3b1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF221\\Switchfoot - Meant To Live - SF221 - 16.mp3", + "title": "Meant To Live" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Fabolous", + "playlist_title": "Breathe", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cf344d2d-6495-f9ab-db21-2771b96a296d", + "path": "z://MP4\\Karaoke Sing Sing\\Taylor Swift - Breathe (Karaoke Version) (2).mp4", + "title": "Breathe" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "John Mayer", + "playlist_title": "Daughters", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "5d1756f5-e7de-5784-a700-663330dcfc56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Route 66 - John Mayer.mp4", + "title": "Route 66" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Jay-Z/Linkin Park", + "playlist_title": "Numb/Encore", + "found_song": { + "artist": "Linkin Park & Jay-Z", + "disabled": false, + "favorite": false, + "guid": "39fb4f78-e45c-f72f-41aa-0d9cf8851138", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park & Jay-Z - Numb Encore (Karaoke Version).mp4", + "title": "Numb Encore" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Finger Eleven", + "playlist_title": "One Thing", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aea09ae1-0208-865a-80aa-f5831d623c5f", + "path": "z://MP4\\Sing King Karaoke\\Amerie - One Thing.mp4", + "title": "One Thing" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Chingy", + "playlist_title": "Balla Baby", + "found_song": { + "artist": "Chingy", + "disabled": false, + "favorite": false, + "guid": "d951d5d9-4cf5-3d36-d9d3-f44b95ca996a", + "path": "z://MP4\\Let's Sing Karaoke\\Chingy - One Call Away (Karaoke & Lyrics).mp4", + "title": "One Call Away" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Lonestar", + "playlist_title": "Mr. Mom", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Lady", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "82d1e248-3a06-438c-1aff-428a47cfc183", + "path": "z://CDG\\Various\\Lenny Kravitz - Black.mp3", + "title": "Black" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Gwen Stefani Featuring Eve", + "playlist_title": "Rich Girl", + "found_song": { + "artist": "Gwen Stefani ft. Eve", + "disabled": false, + "favorite": false, + "guid": "caa655d3-4e21-b75e-211a-ce79f35c34e6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Gwen Stefani Feat Eve - Rich Girl - SF228 - 05.mp3", + "title": "Rich Girl" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Terror Squad", + "playlist_title": "Take Me Home", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "2253a9a3-f6b4-1a36-be1a-84d2c3a17360", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take Me Home - Cher.mp4", + "title": "Take Me Home" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "That's What It's All About", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca91821d-ae7f-e384-6edf-1820ba5678a3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - That's What It's All About.mp4", + "title": "That's What It's All About" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "John Legend", + "playlist_title": "Used To Love U", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "9c312ceb-1c80-f137-8f0d-09c9061d2a79", + "path": "z://MP4\\Sing King Karaoke\\John Legend - Love Me Now (Karaoke Version).mp4", + "title": "Love Me Now" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Anita Baker", + "playlist_title": "You're My Everything", + "found_song": { + "artist": "Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd761c3f-c7ad-6f02-c04d-6e38582732d8", + "path": "z://MP4\\KaraokeOnVEVO\\Temptations - You're My Everything.mp4", + "title": "You're My Everything" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Prince", + "playlist_title": "Call My Name", + "found_song": { + "artist": "Cheryl Cole", + "disabled": false, + "favorite": false, + "guid": "e8815ca5-2fdc-35a0-2fad-f88cf8b9f3ca", + "path": "z://MP4\\Sing King Karaoke\\Cheryl Cole - Call My Name (Karaoke Version).mp4", + "title": "Call My Name" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "title": "Oye Mi Canto", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "title": "Encore", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Rupee", + "title": "Tempted To Touch", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Chevelle", + "title": "Vitamin R (Leading Us Along)", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Guerilla Black Featuring Mario Winans", + "title": "You're The One", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Crossfade", + "title": "Cold", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Keyshia Cole Featuring Shyne", + "title": "I Changed My Mind", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Crime Mob Featuring Lil Scrappy", + "title": "Knuck If You Buck", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Juvenile, Wacko & Skip", + "title": "Nolia Clap", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Patti LaBelle Featuring Ron Isley", + "title": "Gotta Go Solo", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Body Head Bangerz Featuring YoungBloodz", + "title": "I Smoke, I Drank", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Xzibit Featuring Keri Hilson", + "title": "Hey Now (Mean Muggin)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "title": "Okay", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Monchy & Alexandra", + "title": "Perdidos", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 21, + "missing_count": 33, + "needs_manual_review": 21 + } + }, + { + "playlist_title": "2003 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "R. Kelly", + "playlist_title": "Step In The Name Of Love", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "18cc3b15-095f-16af-4027-a1f0e641dd20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stop! In The Name Of Love - The Supremes.mp4", + "title": "Stop! In The Name Of Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Kanye West", + "playlist_title": "Through The Wire", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "8857508a-4878-e31d-1593-08b2af53bbbf", + "path": "z://MP4\\singsongsmusic\\Touch the Sky - Karaoke HD (In the style of Kanye West).mp4", + "title": "Touch the Sky" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Joe", + "playlist_title": "More & More", + "found_song": { + "artist": "David Alexander", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "006c1718-878d-4a70-5170-1ed90aa6e6cc", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Alexander - More And More.mp4", + "title": "More And More" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Ashanti", + "playlist_title": "Rain On Me", + "found_song": { + "artist": "Lady Gaga & Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "f50ba95a-91ad-456b-530c-b2d272a8e807", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga & Ariana Grande - Rain On Me (Karaoke Version).mp4", + "title": "Rain On Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 4, + "missing_count": 16, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2003 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Beyonce Featuring Sean Paul", + "playlist_title": "Baby Boy", + "found_song": { + "artist": "Beyonce With Sean Paul", + "disabled": false, + "favorite": false, + "guid": "beed2bbb-228f-ee42-6fe3-3fa20a207bbd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF210\\Beyonce With Sean Paul - Baby Boy - SF210 - 05.mp3", + "title": "Baby Boy" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Stacie Orrico", + "playlist_title": "(There's Gotta Be) More To Life", + "found_song": { + "artist": "Stacey Orrico", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc3de950-501c-eed8-0dfe-e93c5d9f1fd7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 847\\Stacey Orrico - More To Life - SFMW 847 -05.mp3", + "title": "More To Life" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Liz Phair", + "playlist_title": "Why Can't I", + "found_song": { + "artist": "Liz Phair", + "disabled": false, + "favorite": false, + "guid": "fa33cdc7-19fb-c0a1-95a4-38d04baa5de3", + "path": "z://MP4\\Stingray Karaoke\\F And Run in the style of Liz Phair karaoke video.mp4", + "title": "F And Run" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 3, + "missing_count": 6, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2003 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Diamond Rio", + "playlist_title": "Wrinkles", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff951190-c84b-66f3-d004-3f668c516eb0", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Wrinkles.mp4", + "title": "Wrinkles" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Trace Adkins", + "playlist_title": "Hot Mama", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fec2b5c0-a944-a735-646f-8714ad9d630d", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Hot Mama.mp4", + "title": "Hot Mama" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Sara Evans", + "playlist_title": "Perfect", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60ce758b-5b40-0122-4985-5dfae359d4f3", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Perfect.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "In My Daughter's Eyes", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18ee8602-1da7-c619-389b-dca580f45ef0", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - In My Daughter's Eyes.mp4", + "title": "In My Daughter's Eyes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "Cowboys Like Us", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "51c146b0-50da-1560-b0d2-2d6510dcde38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Cowboy Rides Away - George Strait.mp4", + "title": "The Cowboy Rides Away" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Hell Yeah", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "59a9a0c0-95a9-3271-c317-7e92d2733c95", + "path": "z://MP4\\Karaoke Studio\\Montgomery Gentry - Better Me (Karaoke Version).mp4", + "title": "Better Me" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "I Wish", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "57819f1c-bc40-eb2b-3208-f068d1e184e2", + "path": "z://MP4\\Let's Sing Karaoke\\Messina, Jo Dee - I'm Alright (Karaoke & Lyrics) (2).mp4", + "title": "I'm Alright" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jimmy Wayne", + "title": "I Love You This Much", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 3, + "missing_count": 4, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2003 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Dido", + "playlist_title": "White Flag", + "found_song": { + "artist": "Dido", + "disabled": false, + "favorite": false, + "guid": "1ed41ba7-8c14-da3f-ada8-11874ce8c17f", + "path": "z://MP4\\Let's Sing Karaoke\\Dido - White Flag (Karaoke & Lyrics).mp4", + "title": "White Flag" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Linkin Park", + "playlist_title": "Numb", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c1bd24f-92c0-7d11-6b47-2be6ef625802", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Numb.mp4", + "title": "Numb" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Sheryl Crow", + "playlist_title": "The First Cut Is The Deepest", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "guid": "6f08998e-9905-274d-fdbb-d04ea93ae4cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The First Cut Is The Deepest - Sheryl Crow.mp4", + "title": "The First Cut Is The Deepest" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bright Lights", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "3d243457-7403-3c7f-469e-f224b7fd8e6e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bright Lights - Matchbox Twenty.mp4", + "title": "Bright Lights" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Chingy", + "playlist_title": "Right Thurr", + "found_song": { + "artist": "Chingy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c000ba0-c450-50a5-e98c-18c20102fa77", + "path": "z://MP4\\KaraokeOnVEVO\\Chingy - Right Thurr.mp4", + "title": "Right Thurr" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Maroon5", + "playlist_title": "Harder To Breathe", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a9186c6-3e12-3b0a-372c-0eab35fa5e13", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - Harder To Breathe.mp4", + "title": "Harder To Breathe" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "matchbox twenty", + "playlist_title": "Unwell", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e56641f6-893d-b685-3ba2-41ba51bd6b3e", + "path": "z://MP4\\Sing King Karaoke\\matchbox twenty - Unwell.mp4", + "title": "Unwell" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Fallen", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "3af0dd0b-8d53-533a-d3b4-dd45216098f9", + "path": "z://MP4\\KaraFun Karaoke\\Fallen - Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Fallen" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Three Days Grace", + "playlist_title": "(I Hate) Everything About You", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa35a50a-77dc-6201-ab49-e1307ed279dc", + "path": "z://MP4\\Sing King Karaoke\\Three Days Grace - (I Hate Everything About You.mp4", + "title": "(I Hate) Everything About You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jessica Simpson", + "playlist_title": "With You", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27378d76-42ba-4416-4346-931f6b6d4a9b", + "path": "z://MP4\\KaraokeOnVEVO\\Jessica Simpson - With You.mp4", + "title": "With You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Fountains Of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Jet", + "playlist_title": "Are You Gonna Be My Girl", + "found_song": { + "artist": "Jet", + "disabled": false, + "favorite": false, + "guid": "bdb33708-3c2c-0b1d-d743-85b622642d61", + "path": "z://MP4\\TheKARAOKEChannel\\Are You Gonna Be My Girl in the style of Jet Karaoke with Lyrics.mp4", + "title": "Are You Gonna Be My Girl" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Offspring", + "playlist_title": "Hit That", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9db77999-2f4e-b6c3-9dd1-46cbb33dae81", + "path": "z://MP4\\KaraokeOnVEVO\\Offspring - Hit That.mp4", + "title": "Hit That" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gary Allan", + "playlist_title": "Tough Little Boys", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007397d1-8437-f9f1-bd01-81bd4685efaa", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Tough Little Boys.mp4", + "title": "Tough Little Boys" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "A Perfect Circle", + "playlist_title": "Weak And Powerless", + "found_song": { + "artist": "A Perfect Circle", + "disabled": false, + "favorite": false, + "guid": "556b104f-f275-24ab-34ae-3039f2011dd2", + "path": "z://CDG\\Various\\A Perfect Circle - Weak And Powerless.mp3", + "title": "Weak And Powerless" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Scotty Emerick With Toby Keith", + "playlist_title": "I Can't Take You Anywhere", + "found_song": { + "artist": "Scotty Emerick With Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "786dadc5-07b8-83ea-9e52-4143ad37537c", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty Emerick With Toby Keith - I Cant Take You Anywhere.mp4", + "title": "I Can't Take You Anywhere" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Hilary Duff", + "playlist_title": "So Yesterday", + "found_song": { + "artist": "Hilary Duff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5d729bc-0cf5-1c6b-0929-3b92c2699734", + "path": "z://MP4\\KaraokeOnVEVO\\Hilary Duff - So Yesterday.mp4", + "title": "So Yesterday" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Michael Jackson", + "playlist_title": "One More Chance", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "807482f1-eca1-63fc-533c-c45df5bf8504", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Jackson - One More Chance.mp4", + "title": "One More Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "R. Kelly", + "playlist_title": "Step In The Name Of Love", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "18cc3b15-095f-16af-4027-a1f0e641dd20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stop! In The Name Of Love - The Supremes.mp4", + "title": "Stop! In The Name Of Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Beyonce Featuring Sean Paul", + "playlist_title": "Baby Boy", + "found_song": { + "artist": "Beyonce With Sean Paul", + "disabled": false, + "favorite": false, + "guid": "beed2bbb-228f-ee42-6fe3-3fa20a207bbd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF210\\Beyonce With Sean Paul - Baby Boy - SF210 - 05.mp3", + "title": "Baby Boy" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Liz Phair", + "playlist_title": "Why Can't I", + "found_song": { + "artist": "Liz Phair", + "disabled": false, + "favorite": false, + "guid": "fa33cdc7-19fb-c0a1-95a4-38d04baa5de3", + "path": "z://MP4\\Stingray Karaoke\\F And Run in the style of Liz Phair karaoke video.mp4", + "title": "F And Run" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Stacie Orrico", + "playlist_title": "(There's Gotta Be) More To Life", + "found_song": { + "artist": "Stacey Orrico", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc3de950-501c-eed8-0dfe-e93c5d9f1fd7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 847\\Stacey Orrico - More To Life - SFMW 847 -05.mp3", + "title": "More To Life" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Kanye West", + "playlist_title": "Through The Wire", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "8857508a-4878-e31d-1593-08b2af53bbbf", + "path": "z://MP4\\singsongsmusic\\Touch the Sky - Karaoke HD (In the style of Kanye West).mp4", + "title": "Touch the Sky" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "George Strait", + "playlist_title": "Cowboys Like Us", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "51c146b0-50da-1560-b0d2-2d6510dcde38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Cowboy Rides Away - George Strait.mp4", + "title": "The Cowboy Rides Away" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Joe", + "playlist_title": "More & More", + "found_song": { + "artist": "David Alexander", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "006c1718-878d-4a70-5170-1ed90aa6e6cc", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Alexander - More And More.mp4", + "title": "More And More" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Ashanti", + "playlist_title": "Rain On Me", + "found_song": { + "artist": "Lady Gaga & Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "f50ba95a-91ad-456b-530c-b2d272a8e807", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga & Ariana Grande - Rain On Me (Karaoke Version).mp4", + "title": "Rain On Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Mya", + "playlist_title": "Fallen", + "found_song": { + "artist": "Mya", + "disabled": false, + "favorite": false, + "guid": "2c871c20-3a2a-5fab-f2b1-bbf20ff4b00e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF180\\Mya - Free - SF180 - 14.mp3", + "title": "Free" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Eamon", + "playlist_title": "F**k It (I Don't Want You Back)", + "found_song": { + "artist": "Eamon", + "disabled": false, + "favorite": false, + "guid": "dd0b8a27-8866-00c8-3e62-5fb42fcbe74f", + "path": "z://MP4\\Let's Sing Karaoke\\Eamon - I Don't Want You Back (Fuck It) (Karaoke & Lyrics).mp4", + "title": "I Don't Want You Back" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Hell Yeah", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "59a9a0c0-95a9-3271-c317-7e92d2733c95", + "path": "z://MP4\\Karaoke Studio\\Montgomery Gentry - Better Me (Karaoke Version).mp4", + "title": "Better Me" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Missy Elliott", + "playlist_title": "Pass That Dutch", + "found_song": { + "artist": "Pussycat Dolls ft. Missy Elliott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ae7fbc5-9135-0f86-68d5-447544248487", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF277\\Pussycat Dolls ft Missy Elliott - Watcha Think About That - SF277 - 07.mp3", + "title": "Watcha Think About That" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Away From Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Britney Spears Featuring Madonna", + "playlist_title": "Me Against The Music", + "found_song": { + "artist": "Britney Spears ft. Madonna", + "disabled": false, + "favorite": false, + "guid": "1ff498f5-1731-9840-2721-c02b43a5c041", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF211\\Britney Spears & Madonna - Me Against The Music - SF211 - 15.mp3", + "title": "Me Against The Music" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Ginuwine", + "playlist_title": "Love You More", + "found_song": { + "artist": "Céline Dion", + "disabled": false, + "favorite": false, + "guid": "437bd21e-2869-acd3-d987-f4ccec62c778", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Love You More - Céline Dion.mp4", + "title": "To Love You More" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Live", + "playlist_title": "Heaven", + "found_song": { + "artist": "Emeli Sande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f07e84b-dd83-86b0-9a6e-748f7f57a0e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Emeli Sande - Heaven.mp4", + "title": "Heaven" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "Another Postcard (Chimps)", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "bf1130eb-b578-f263-3bf1-0291c9ef9af0", + "path": "z://CDG\\Various\\Barenaked Ladies - Falling For The First Time.mp3", + "title": "Falling For The First Time" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "John Mayer", + "playlist_title": "Bigger Than My Body", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "280a8ba0-5046-dc68-ba20-7620932401a9", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Mayer - In The Blood.mp4", + "title": "In The Blood" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Lasgo", + "playlist_title": "Alone", + "found_song": { + "artist": "Lawson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7aa28dff-0a2a-bc33-7e1b-934fabe99ca0", + "path": "z://MP4\\KaraokeOnVEVO\\Lawson - Money.mp4", + "title": "Money" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nick Cannon Featuring R. Kelly", + "title": "Gigolo", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Nelly, P. Diddy & Murphy Lee", + "title": "Shake Ya Tailfeather", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Westside Connection Featuring Nate Dogg", + "title": "Gangsta Nation", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Cassidy Featuring R. Kelly", + "title": "Hotel", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "B2K Featuring Fabolous", + "title": "Badaboom", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Trapt", + "title": "Still Frame", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "title": "Pop That Booty", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Monica", + "title": "Knock Knock", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Audioslave", + "title": "Show Me How To Live", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ryan Duarte", + "title": "You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ja Rule", + "title": "Clap Back", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "title": "Shake That Monkey", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trillville", + "title": "Neva Eva", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Big Tymers Featuring R. Kelly", + "title": "Gangsta Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 19, + "missing_count": 35, + "needs_manual_review": 19 + } + }, + { + "playlist_title": "2002 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Musiq", + "playlist_title": "dontchange", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "13c63ed0-ce82-7625-4962-73e31da77b41", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Change - INXS.mp4", + "title": "Don t Change" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Aaliyah", + "playlist_title": "Miss You", + "found_song": { + "artist": "Tamia", + "disabled": false, + "favorite": false, + "guid": "cca3cd15-6188-f0ea-ef88-78a32a075d44", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Missing You - Tamia.mp4", + "title": "Missing You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Nas", + "playlist_title": "Made You Look", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc26cb43-a5a8-6b59-8476-98418c740e95", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Made You Look.mp4", + "title": "Made You Look" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "50 Cent", + "playlist_title": "Wanksta", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8414ab-3bf0-1689-3fc3-b835350fcfaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\50 Cent - Candy Shop.mp4", + "title": "Candy Shop" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Clipse", + "playlist_title": "When The Last Time", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "054f171c-afd2-88a6-0768-86005ba6d0f5", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - One Last Time (Karaoke Version).mp4", + "title": "One Last Time" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 5, + "missing_count": 14, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2002 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "playlist_title": "Jenny From The Block", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "4e9ece83-4207-1a9c-37cf-96bc109765ff", + "path": "z://MP4\\KaraFun Karaoke\\Jenny from the Block - Jennifer Lopez Karaoke Version KaraFun.mp4", + "title": "Jenny from the Block" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "No Doubt Featuring Lady Saw", + "playlist_title": "Underneath It All", + "found_song": { + "artist": "No Doubt ft. Lady Saw", + "disabled": false, + "favorite": false, + "guid": "f983b23c-fa9b-af7c-29f6-3f9ea8cb5e17", + "path": "z://MP4\\Let's Sing Karaoke\\No Doubt & Lady Saw - Underneath It All (Karaoke & Lyrics).mp4", + "title": "Underneath It All" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Santana Featuring Michelle Branch", + "playlist_title": "The Game Of Love", + "found_song": { + "artist": "Santana ft. Michelle Branch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad39fd81-a771-b11e-185f-0101a3dc833d", + "path": "z://MP4\\KaraokeOnVEVO\\Santana Featuring Michelle Branch - The Game Of Love.mp4", + "title": "The Game Of Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "O-Town", + "playlist_title": "These Are The Days", + "found_song": { + "artist": "Van Morrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7d470dd-b9a5-6927-00f1-dd22f120dc22", + "path": "z://MP4\\ZoomKaraokeOfficial\\Van Morrison - These Are The Days.mp4", + "title": "These Are The Days" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 6, + "missing_count": 3, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2002 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Brad Paisley", + "playlist_title": "I Wish You'd Stay", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc1f362-7bb1-7024-dc5f-f4f8c4a4c174", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - I Wish Youd Stay.mp4", + "title": "I Wish You'd Stay" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Travis Tritt", + "playlist_title": "Strong Enough To Be Your Man", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0b64741-3b4e-3167-d903-ea9ac553ef89", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Strong Enough To Be Your Man.mp4", + "title": "Strong Enough To Be Your Man" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Beautiful Mess", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "52632b67-86fc-05dd-7c9a-c8c5eff4e2cf", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - Beautiful Mess (Karaoke & Lyrics).mp4", + "title": "Beautiful Mess" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Gary Allan", + "playlist_title": "Man To Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8453de-c5f3-9a36-b58c-f4cdb4670aac", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Man To Man.mp4", + "title": "Man To Man" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Trace Adkins", + "playlist_title": "Chrome", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db940c6c-be07-8136-e87a-427e6f5651b4", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Chrome.mp4", + "title": "Chrome" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "'Til Nothing Comes Between Us", + "found_song": { + "artist": "Bill Engvall, John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "2863e387-3d0e-f0f7-1e14-036f07223a53", + "path": "z://MP4\\KaraokeOnVEVO\\Bill Engvall, John Michael Montgomery - Warning Signs (Karaoke).mp4", + "title": "Warning Signs" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Trick Pony", + "playlist_title": "On A Mission", + "found_song": { + "artist": "Cilmi, Gabriella", + "disabled": false, + "favorite": false, + "guid": "93ace325-cf5c-301b-0210-dd158bc34656", + "path": "z://CDG\\Big Hits Karaoke\\BHK005\\BHK005-11 - Cilmi, Gabriella - On A Mission.mp3", + "title": "On A Mission" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Kellie Coffey", + "playlist_title": "At The End Of The Day", + "found_song": { + "artist": "Kellie Coffey", + "disabled": false, + "favorite": false, + "guid": "5a839ddb-86b1-7eef-5b9d-ac1584122003", + "path": "z://MP4\\KaraFun Karaoke\\Dance With My Father - Kellie Coffey Karaoke Version KaraFun.mp4", + "title": "Dance With My Father" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Jennifer Hanson", + "playlist_title": "Beautiful Goodbye", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "guid": "61fc953d-cb51-a47c-64f1-9be115eee6ef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Feeling Good - Jennifer Hudson.mp4", + "title": "Feeling Good" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lonestar", + "title": "Unusually Unusual", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 5, + "missing_count": 3, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2002 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "matchbox twenty", + "playlist_title": "Disease", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3831e030-71f2-91a3-995b-3199d9adb6cf", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Disease.mp4", + "title": "Disease" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Kid Rock Featuring Sheryl Crow", + "playlist_title": "Picture", + "found_song": { + "artist": "Kid Rock Featuring Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce317767-7b44-9d54-7fca-6bf57aa9c82f", + "path": "z://MP4\\VocalStarKaraoke\\Kid Rock Featuring Sheryl Crow - Picture.mp4", + "title": "Picture" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Madonna", + "playlist_title": "Die Another Day", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "373b795c-1a47-3ceb-eb3b-8c1d6c481a19", + "path": "z://MP4\\singsongsmusic\\Die Another Day - Karaoke HD (In the style of Madonna).mp4", + "title": "Die Another Day" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "3 Doors Down", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "befa5d31-9144-10d1-fc7d-61ce5ca2e0ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I m Gone - 3 Doors Down.mp4", + "title": "When I m Gone" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Complicated", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "51732fe4-ff44-676c-6025-1ecde284c595", + "path": "z://MP4\\Sing King Karaoke\\Avril Lavigne - Complicated (Karaoke Version).mp4", + "title": "Complicated" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Foo Fighters", + "playlist_title": "All My Life", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "921b541f-5f91-39cf-17cb-64b2db7df075", + "path": "z://MP4\\Let's Sing Karaoke\\Foo Fighters - All My Life (Karaoke & Lyrics).mp4", + "title": "All My Life" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Nirvana", + "playlist_title": "You Know You're Right", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "55526be5-974f-880d-1b07-0604a5322e4a", + "path": "z://MP4\\Let's Sing Karaoke\\Nirvana - You Know You're Right (Karaoke & Lyrics).mp4", + "title": "You Know You're Right" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Lasgo", + "playlist_title": "Something", + "found_song": { + "artist": "Lasgo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efbf7f30-6256-abe4-5c63-7cc0632e07f2", + "path": "z://MP4\\VocalStarKaraoke\\Lasgo - Something.mp4", + "title": "Something" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Saliva", + "playlist_title": "Always", + "found_song": { + "artist": "Saliva", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2a4f67d-fdb4-b0c9-c868-7456331f1787", + "path": "z://MP4\\KaraokeOnVEVO\\Saliva - Always.mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Norah Jones", + "playlist_title": "Don't Know Why", + "found_song": { + "artist": "Norah Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d153ea9-0a91-bf02-0cdb-69134cd2a806", + "path": "z://MP4\\Sing King Karaoke\\Norah Jones - Don't Know Why.mp4", + "title": "Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Audioslave", + "playlist_title": "Cochise", + "found_song": { + "artist": "Audioslave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df2f27c7-52bf-8406-d638-8aaaf8273bdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Audioslave - Cochise - SFMW 865 -15.mp3", + "title": "Cochise" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "A Moment Like This", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "002fa5b4-958f-dff6-52a3-f2560f704a32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Moment Like This - Kelly Clarkson.mp4", + "title": "A Moment Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Queens Of The Stone Age", + "playlist_title": "No One Knows", + "found_song": { + "artist": "Queens Of The Stone Age", + "disabled": false, + "favorite": false, + "guid": "2bc09bcb-a27d-9b13-bbaf-ed919ec8c06d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No One Knows - Queens Of The Stone Age.mp4", + "title": "No One Knows" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Zephyr Song", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "74ff414c-f20d-c134-bdcd-c9491a43bfc0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Zephyr Song - Red Hot Chili Peppers.mp4", + "title": "The Zephyr Song" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Uncle Kracker", + "playlist_title": "In A Little While", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "74e9df70-8b26-91f9-10ec-5af604c9f06b", + "path": "z://MP4\\Let's Sing Karaoke\\Uncle Kracker - In A Little While (Karaoke & Lyrics).mp4", + "title": "In A Little While" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "TLC", + "playlist_title": "Girl Talk", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e3176-d926-4b11-3296-1d714a36ffd8", + "path": "z://CDG\\SBI\\SBI-04\\SB12077 - TLC - Girl Talk.mp3", + "title": "Girl Talk" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Faith Hill", + "playlist_title": "Cry", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "185f64ef-d7a4-dd02-53f8-8b5ded0fd2ea", + "path": "z://MP4\\KaraFun Karaoke\\Cry - Faith Hill Karaoke Version KaraFun.mp4", + "title": "Cry" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Mariah Carey", + "playlist_title": "Through The Rain", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "19adc49c-8897-c40a-4380-03feab62015a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF199\\Mariah Carey - Through The Rain - SF199 - 06.mp3", + "title": "Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Of Those Days", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "01aac6e0-fb8f-85d8-fbe4-18868d456bde", + "path": "z://CDG\\Various\\Whitney Houston - One Of Those Days.mp3", + "title": "One Of Those Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "System Of A Down", + "playlist_title": "Aerials", + "found_song": { + "artist": "System Of A Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c38c5782-f58e-a296-5605-17fb0b3b2427", + "path": "z://MP4\\Sing King Karaoke\\System Of A Down - Aerials.mp4", + "title": "Aerials" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Kylie Minogue", + "playlist_title": "Come Into My World", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39d36c3c-cb08-777b-2ea9-ad1ba3df8b79", + "path": "z://MP4\\KaraokeOnVEVO\\Kylie Minogue - Come Into My World.mp4", + "title": "Come Into My World" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Alan Jackson", + "playlist_title": "Work In Progress", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2255c3c0-c7ac-3b4d-9b92-f1d6ba700e5d", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Work In Progress.mp4", + "title": "Work In Progress" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Michelle Branch", + "playlist_title": "Goodbye To You", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "7e929ca3-1142-4897-ad0a-b0377eb16ce4", + "path": "z://MP4\\KaraFun Karaoke\\Goodbye To You - Michelle Branch Karaoke Version KaraFun.mp4", + "title": "Goodbye To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "playlist_title": "Jenny From The Block", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "4e9ece83-4207-1a9c-37cf-96bc109765ff", + "path": "z://MP4\\KaraFun Karaoke\\Jenny from the Block - Jennifer Lopez Karaoke Version KaraFun.mp4", + "title": "Jenny from the Block" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "No Doubt Featuring Lady Saw", + "playlist_title": "Underneath It All", + "found_song": { + "artist": "No Doubt ft. Lady Saw", + "disabled": false, + "favorite": false, + "guid": "f983b23c-fa9b-af7c-29f6-3f9ea8cb5e17", + "path": "z://MP4\\Let's Sing Karaoke\\No Doubt & Lady Saw - Underneath It All (Karaoke & Lyrics).mp4", + "title": "Underneath It All" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Santana Featuring Michelle Branch", + "playlist_title": "The Game Of Love", + "found_song": { + "artist": "Santana ft. Michelle Branch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad39fd81-a771-b11e-185f-0101a3dc833d", + "path": "z://MP4\\KaraokeOnVEVO\\Santana Featuring Michelle Branch - The Game Of Love.mp4", + "title": "The Game Of Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Aaliyah", + "playlist_title": "Miss You", + "found_song": { + "artist": "Tamia", + "disabled": false, + "favorite": false, + "guid": "cca3cd15-6188-f0ea-ef88-78a32a075d44", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Missing You - Tamia.mp4", + "title": "Missing You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Musiq", + "playlist_title": "dontchange", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "13c63ed0-ce82-7625-4962-73e31da77b41", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Change - INXS.mp4", + "title": "Don t Change" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Jennifer Lopez Featuring LL Cool J", + "playlist_title": "All I Have", + "found_song": { + "artist": "Jennifer Lopez & Ll Cool J", + "disabled": false, + "favorite": false, + "guid": "9488c31f-8dfe-e936-70f7-7036772daf73", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF204\\Jennifer Lopez & Ll Cool J - All I Have - SF204 - 09.mp3", + "title": "All I Have" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Nelly Featuring Kelly Rowland", + "playlist_title": "Dilemma", + "found_song": { + "artist": "Nelly Feat Kelly Rowland", + "disabled": false, + "favorite": false, + "guid": "07a4a669-893a-242d-e9af-890d2f078978", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF197\\Nelly Feat Kelly Rowland - Dilemma - SF197 - 15.mp3", + "title": "Dilemma" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Clipse", + "playlist_title": "When The Last Time", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "054f171c-afd2-88a6-0768-86005ba6d0f5", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - One Last Time (Karaoke Version).mp4", + "title": "One Last Time" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Nas", + "playlist_title": "Made You Look", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc26cb43-a5a8-6b59-8476-98418c740e95", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Made You Look.mp4", + "title": "Made You Look" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "50 Cent", + "playlist_title": "Wanksta", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8414ab-3bf0-1689-3fc3-b835350fcfaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\50 Cent - Candy Shop.mp4", + "title": "Candy Shop" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Chevelle", + "playlist_title": "The Red", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "0f01c8cf-32fc-bbcc-c772-2c7dd8c4e105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The End - The Beatles.mp4", + "title": "The End" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Christina Aguilera Featuring Redman", + "playlist_title": "Dirrty", + "found_song": { + "artist": "Christina Aguilera & Redman", + "disabled": false, + "favorite": false, + "guid": "c4f16776-d998-af56-0199-66a81c098ebf", + "path": "z://MP4\\Let's Sing Karaoke\\Aguilera, Christina & Redman - Dirrty (Karaoke & Lyrics).mp4", + "title": "Dirrty" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "O-Town", + "playlist_title": "These Are The Days", + "found_song": { + "artist": "Van Morrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7d470dd-b9a5-6927-00f1-dd22f120dc22", + "path": "z://MP4\\ZoomKaraokeOfficial\\Van Morrison - These Are The Days.mp4", + "title": "These Are The Days" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Lifehouse", + "playlist_title": "Spin", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "4a10709b-9c9c-8b76-545f-d58a622b77fd", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Blind (Karaoke).mp4", + "title": "Blind" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Seether", + "playlist_title": "Fine Again", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d53f6990-fd19-621a-1768-b76a28c4e664", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Fake It.mp4", + "title": "Fake It" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Stone Sour", + "playlist_title": "Bother", + "found_song": { + "artist": "Stone Sour", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce3f8f00-eb82-def2-b0cf-236c37413ab0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 843\\Stone Sour - Inhale - SFMW 843 -05.mp3", + "title": "Inhale" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Disturbed", + "playlist_title": "Prayer", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e3f95e6-e39b-c8c1-82ac-e193e0c27633", + "path": "z://CDG\\SBI\\SBI-04\\SB11273 - Disturbed - Fear.mp3", + "title": "Fear" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Our Lady Peace", + "playlist_title": "Somewhere Out There", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "5c465966-dc24-0771-06b2-44a0fc37c6e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere Out There - Linda Ronstadt.mp4", + "title": "Somewhere Out There" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Telepopmusik", + "playlist_title": "Breathe", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cf344d2d-6495-f9ab-db21-2771b96a296d", + "path": "z://MP4\\Karaoke Sing Sing\\Taylor Swift - Breathe (Karaoke Version) (2).mp4", + "title": "Breathe" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Ja Rule Featuring Ashanti", + "title": "Mesmerize", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "title": "Gossip Folks", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Field Mob", + "title": "Sick Of Being Lonely", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Snoop Dogg", + "title": "From Tha Chuuuch To Da Palace", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Common Featuring Mary J. Blige", + "title": "Come Close To Me", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Isyss", + "title": "Single For The Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Benzino", + "title": "Rock The Party", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Trick Daddy Featuring LaTocha Scott", + "title": "Thug Holiday", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Toni Braxton Featuring Loon", + "title": "Hit The Freeway", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "title": "Oh Yeah!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 50, + "fuzzy_match_count": 22, + "missing_count": 28, + "needs_manual_review": 22 + } + }, + { + "playlist_title": "2001 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "No Doubt Featuring Bounty Killer", + "playlist_title": "Hey Baby", + "found_song": { + "artist": "No Doubt ft. Bounty Killer", + "disabled": false, + "favorite": false, + "guid": "6316a06b-2a4a-6390-d293-492117124536", + "path": "z://MP4\\KaraokeOnVEVO\\No Doubt ftg. Bounty Killer - Hey Baby (Karaoke).mp4", + "title": "Hey Baby" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Jennifer Lopez Featuring Ja Rule", + "playlist_title": "I'm Real", + "found_song": { + "artist": "Jennifer Lopez ft. Ja Rule", + "disabled": false, + "favorite": false, + "guid": "d4064cdd-121f-e24d-378e-957deeccf4bb", + "path": "z://MP4\\TheKARAOKEChannel\\Jennifer Lopez feat. Ja Rule - I'm Real (Radio Version).mp4", + "title": "I'm Real" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Dig In", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "ae4a99a9-c56e-13d4-0b32-cc8321cd967b", + "path": "z://MP4\\Karaoke Sing Sing\\Lenny Kravitz - Low (Karaoke Version).mp4", + "title": "Low" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Nelly", + "playlist_title": "#1", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "guid": "99488ed9-7384-2e72-bebd-63ed2653a32e", + "path": "z://MP4\\singsongsmusic\\No.1 - Karaoke HD (In the style of Nelly).mp4", + "title": "No.1" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 5, + "missing_count": 2, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2001 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tim McGraw", + "playlist_title": "The Cowboy In Me", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b06ddd0-1837-c33d-35b3-4d64e4fbc6e3", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - The Cowboy In Me.mp4", + "title": "The Cowboy In Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Some Days You Gotta Dance", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7861fd3-7ad5-7f95-f4cf-7e4f51d72217", + "path": "z://CDG\\Various\\Dixie Chicks - Some Days You Gotta Dance.mp3", + "title": "Some Days You Gotta Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Martina McBride", + "playlist_title": "Blessed", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dfd7ff9-48f3-6aa9-abb3-4c880629cae8", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Chris Cagle", + "playlist_title": "I Breathe In, I Breathe Out", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4956694-27c2-b135-0abc-15f10618b397", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - I Breathe In, I Breathe Out.mp4", + "title": "I Breathe In, I Breathe Out" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Blake Shelton", + "playlist_title": "All Over Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "4d90cb21-a0e1-f990-182d-10bf07a71a1a", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - All Over Me.mp3", + "title": "All Over Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Cold One Comin' On", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47d5931d-14b6-0ebe-712f-12bccb5164f9", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Cold One Comin On.mp4", + "title": "Cold One Comin' On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Jo Dee Messina With Tim McGraw", + "playlist_title": "Bring On The Rain", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "0058da23-78e0-5e96-3678-dafd4cec422e", + "path": "z://MP4\\Let's Sing Karaoke\\Messina, Jo Dee - Bring On The Rain (Karaoke & Lyrics).mp4", + "title": "Bring On The Rain" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Joe Diffie", + "playlist_title": "In Another World", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b9ee0ca-bf2b-1c10-bdaf-6d36361dddd3", + "path": "z://MP4\\Sing King Karaoke\\SingKingKaraoke - One Direction - Another World (Karaoke Version).mp4", + "title": "Another World" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "Only In America", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "ddc3b2e2-25e6-0a04-47ea-80f36865f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only In America - Brooks & Dunn.mp4", + "title": "Only In America" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Travis Tritt", + "playlist_title": "Love Of A Woman", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3eaaf5a-3d7a-552c-674e-c4b7c5284d87", + "path": "z://MP4\\ZoomKaraokeOfficial\\Travis Tritt - Honky Tonk Woman.mp4", + "title": "Honky Tonk Woman" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I'm Movin' On", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "76d07be9-89c2-3a87-5fa9-156a6b46acd0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-07 - Rascal Flatts - Im Moving On.mp3", + "title": "Im Moving On" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Tracy Byrd", + "title": "Just Let Me Be In Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sara Evans", + "title": "Saints & Angels", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jamie O'Neal", + "title": "Shiver", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 7, + "missing_count": 4, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2001 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Alicia Keys", + "playlist_title": "A Woman's Worth", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e5075906-ec70-2aa0-e5da-42d36a8cbd80", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Woman s Worth - Alicia Keys.mp4", + "title": "A Woman s Worth" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaliyah", + "playlist_title": "Rock The Boat", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "fb107fbe-d1a1-73d7-f492-5417aeb529a7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock The Boat - Aaliyah.mp4", + "title": "Rock The Boat" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Enya", + "playlist_title": "Only Time", + "found_song": { + "artist": "Enya", + "disabled": false, + "favorite": false, + "guid": "c533bd09-18e9-9c91-a827-6ba382d59ed7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Time - Enya.mp4", + "title": "Only Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Michael Jackson", + "playlist_title": "Butterflies", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "16110716-0dfa-c3d0-32a3-4c6ede8b5874", + "path": "z://CDG\\Various\\Michael Jackson - Butterflies.mp3", + "title": "Butterflies" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Linkin Park", + "playlist_title": "In The End", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "51afd01e-6d42-4ef2-a317-f31964de6046", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - In The End (Karaoke Version) (2).mp4", + "title": "In The End" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Staind", + "playlist_title": "It's Been Awhile", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "a014b9cd-8e4c-69e9-86d6-9dac9064ece4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Been Awhile - Staind.mp4", + "title": "It s Been Awhile" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Craig David", + "playlist_title": "7 Days", + "found_song": { + "artist": "Craig David", + "disabled": false, + "favorite": false, + "guid": "eba76a00-10d0-37ad-61b5-c2613bb2b508", + "path": "z://MP4\\Let's Sing Karaoke\\David, Craig - 7 Days (Karaoke & Lyrics).mp4", + "title": "7 Days" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Jewel", + "playlist_title": "Standing Still", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbfd8447-25ef-8e86-f0b8-b26e2d02f28d", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Standing Still.mp4", + "title": "Standing Still" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lifehouse", + "playlist_title": "Hanging By A Moment", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4297f406-3f5c-cfb1-19dd-1f878e47a9de", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Hanging By A Moment.mp4", + "title": "Hanging By A Moment" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Train", + "playlist_title": "Drops Of Jupiter (Tell Me)", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "490cda6b-a72c-3ba3-a610-ee9fce9c87b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drops Of Jupiter (Tell Me) - Train.mp4", + "title": "Drops Of Jupiter (Tell Me)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "P.O.D.", + "playlist_title": "Alive", + "found_song": { + "artist": "P.O.D.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcf40adb-a360-1f99-ddaa-95f84e9cab57", + "path": "z://MP4\\KaraokeOnVEVO\\P.O.D. - Alive.mp4", + "title": "Alive" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jay-Z", + "playlist_title": "Girls, Girls, Girls", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "a89359a9-0289-580a-1968-28df3603bd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\Jay Z - Girls Girls Girls - SF189 - 14.mp3", + "title": "Girls Girls Girls" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Mary J. Blige", + "playlist_title": "No More Drama", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "57fc453d-c218-61e1-f4c5-82c191835699", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Drama - Mary J. Blige.mp4", + "title": "No More Drama" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Blurry", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "8e66704c-3dd1-7043-d24b-9508e0ab3ff5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blurry - Puddle of Mudd.mp4", + "title": "Blurry" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Maxwell", + "playlist_title": "Lifetime", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "ca4b071a-450e-6b78-3471-4b36895d76f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifetime - Maxwell.mp4", + "title": "Lifetime" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Michelle Branch", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e919d66-d2db-6bfd-9d31-2ef5c2625b10", + "path": "z://MP4\\Sing King Karaoke\\Michelle Branch - Everywhere.mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Angie Stone", + "playlist_title": "Brotha", + "found_song": { + "artist": "Angie Stone", + "disabled": false, + "favorite": false, + "guid": "fd30df8c-f9d9-2582-c6e6-6b7b41390ba4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brotha - Angie Stone.mp4", + "title": "Brotha" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Britney Spears", + "playlist_title": "I'm A Slave 4 U", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "5dbc0504-3c1b-38db-3f78-d5bfb3f61ba8", + "path": "z://MP4\\KaraFun Karaoke\\I'm a Slave 4 U - Britney Spears Karaoke Version KaraFun.mp4", + "title": "I'm a Slave 4 U" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Incubus", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Incubus", + "disabled": false, + "favorite": false, + "guid": "57897604-1afa-d58d-da39-0b14e56b113e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wish You Were Here - Incubus.mp4", + "title": "Wish You Were Here" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "112", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "112", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "689fac89-5270-4ac6-feef-9e119800812a", + "path": "z://MP4\\KaraokeOnVEVO\\112 - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Lee Greenwood", + "playlist_title": "God Bless The USA", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cde5ef84-9aef-a4ae-4e00-a161fa22cc06", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - God Bless The USA.mp4", + "title": "God Bless The USA" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Staind", + "playlist_title": "Fade", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "53473366-978e-74b3-5598-13674cf852a3", + "path": "z://CDG\\Various\\Staind - Fade.mp3", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "U2", + "playlist_title": "Stuck In A Moment You Can't Get Out Of", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "915ffd6b-26da-de76-69c4-0ef529a1d378", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Stuck In A Moment You Can't Get Out Of (Karaoke & Lyrics).mp4", + "title": "Stuck In A Moment You Can't Get Out Of" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Alien Ant Farm", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Alien Ant Farm", + "disabled": false, + "favorite": false, + "guid": "3de1cb54-3303-4c99-296f-bddf52d156fd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Alien Ant Farm.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Drowning", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59c55862-8e29-41fc-a04f-0c316812cf85", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Backstreet Boys - Drowning - SFTPB04 - 08.mp3", + "title": "Drowning" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Christina Milian", + "playlist_title": "AM To PM", + "found_song": { + "artist": "Christina Milian", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ecd54eb-364b-3dfc-04a4-ee6a86b82495", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christina Milian - AM To PM.mp4", + "title": "AM To PM" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "fc7a8e67-bee6-a22d-5219-4a69aff99859", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where I Come From - Alan Jackson.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Brian McKnight", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e350c44f-62b3-97ec-14d1-602d6f224b25", + "path": "z://MP4\\KaraokeOnVEVO\\Brian McKnight - Love Of My Life.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Control", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "59e9e955-ff98-2108-2b34-c1e296316acd", + "path": "z://CDG\\Various\\Puddle Of Mudd - Control.mp3", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Tim McGraw", + "playlist_title": "Angry All The Time", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "0b985a5c-30bf-6b96-3497-a7f7d353c875", + "path": "z://CDG\\Various\\Tim McGraw - Angry All The Time.mp3", + "title": "Angry All The Time" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Whitney Houston", + "playlist_title": "The Star Spangled Banner", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "e74da08f-5aaa-60ad-1864-0b000316dc19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Star Spangled Banner - Whitney Houston.mp4", + "title": "The Star Spangled Banner" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Rock My World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "2f598e17-f4d2-1334-db2d-bb79ee9cf779", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - You Rock My World (Karaoke & Lyrics) (2).mp4", + "title": "You Rock My World" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Jennifer Lopez Featuring Ja Rule", + "playlist_title": "I'm Real", + "found_song": { + "artist": "Jennifer Lopez ft. Ja Rule", + "disabled": false, + "favorite": false, + "guid": "d4064cdd-121f-e24d-378e-957deeccf4bb", + "path": "z://MP4\\TheKARAOKEChannel\\Jennifer Lopez feat. Ja Rule - I'm Real (Radio Version).mp4", + "title": "I'm Real" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Nelly", + "playlist_title": "#1", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "guid": "99488ed9-7384-2e72-bebd-63ed2653a32e", + "path": "z://MP4\\singsongsmusic\\No.1 - Karaoke HD (In the style of Nelly).mp4", + "title": "No.1" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "No Doubt Featuring Bounty Killer", + "playlist_title": "Hey Baby", + "found_song": { + "artist": "No Doubt ft. Bounty Killer", + "disabled": false, + "favorite": false, + "guid": "6316a06b-2a4a-6390-d293-492117124536", + "path": "z://MP4\\KaraokeOnVEVO\\No Doubt ftg. Bounty Killer - Hey Baby (Karaoke).mp4", + "title": "Hey Baby" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Dig In", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "ae4a99a9-c56e-13d4-0b32-cc8321cd967b", + "path": "z://MP4\\Karaoke Sing Sing\\Lenny Kravitz - Low (Karaoke Version).mp4", + "title": "Low" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Busta Rhymes", + "playlist_title": "Break Ya Neck", + "found_song": { + "artist": "Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip", + "disabled": false, + "favorite": false, + "guid": "440a7b00-70f0-ce2b-6f05-17b45c84f9bc", + "path": "z://CDG\\Mr Entertainer\\MRH114\\Kanye West Ft Lil Wayne, Busta Rhymes & Q-Tip - Thank You.mp3", + "title": "Thank You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Faith Evans", + "playlist_title": "You Gets No Love", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "33a7b929-ca09-7a61-4b70-aa846ae0d399", + "path": "z://CDG\\Various\\Faith Hill - You Give Me Love.mp3", + "title": "You Give Me Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Petey Pablo", + "playlist_title": "Raise Up", + "found_song": { + "artist": "Petey Pablo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a94cf012-04cb-8bce-07fa-3ca1a7fff15f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF229\\Petey Pablo - Goodies - SF229 - 08.mp3", + "title": "Goodies" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Jo Dee Messina With Tim McGraw", + "playlist_title": "Bring On The Rain", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "0058da23-78e0-5e96-3678-dafd4cec422e", + "path": "z://MP4\\Let's Sing Karaoke\\Messina, Jo Dee - Bring On The Rain (Karaoke & Lyrics).mp4", + "title": "Bring On The Rain" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "R. Kelly", + "playlist_title": "The World's Greatest", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "d65bc9d0-18d9-acb1-b52a-9e17ac63c09c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\R. Kelly - The Worlds Greatest - SF189 - 15.mp3", + "title": "The Worlds Greatest" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Jagged Edge", + "playlist_title": "Goodbye", + "found_song": { + "artist": "Jason Derulo & David Guetta ft. Nicki Minaj & Willy W", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f8ff91e-2d02-2fde-6821-d07dd4ee4582", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jason Derulo & David Guetta feat Nicki Minaj & Willy W - Goodbye.mp4", + "title": "Goodbye" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Travis Tritt", + "playlist_title": "Love Of A Woman", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3eaaf5a-3d7a-552c-674e-c4b7c5284d87", + "path": "z://MP4\\ZoomKaraokeOfficial\\Travis Tritt - Honky Tonk Woman.mp4", + "title": "Honky Tonk Woman" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Joe", + "playlist_title": "Let's Stay Home Tonight", + "found_song": { + "artist": "Blunt, James", + "disabled": false, + "favorite": false, + "guid": "3cc5bdef-ae7d-04cf-dd0c-a7b4863209b7", + "path": "z://CDG\\Big Hits Karaoke\\BHK015\\BHK015-11 - Blunt, James - Stay The Night.mp3", + "title": "Stay The Night" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Jennifer Lopez Featuring Ja Rule", + "playlist_title": "Ain't It Funny", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "28463dbd-5472-b632-3204-83d89132e8e5", + "path": "z://MP4\\Let's Sing Karaoke\\Lopez, Jennifer - Ain't It Funny (Karaoke & Lyrics).mp4", + "title": "Ain't It Funny" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Glenn Lewis", + "playlist_title": "Don't You Forget It", + "found_song": { + "artist": "Simple Minds", + "disabled": false, + "favorite": false, + "guid": "10de83f2-7b26-fda0-411e-1689bb3764b2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF007\\Simple Minds - Don't You Forget About Me - SF007 - 12.mp3", + "title": "Don't You Forget About Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Mariah Carey", + "playlist_title": "Never Too Far/Hero (Medley)", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "472c0c6f-079b-5908-4715-e1c6ccf76c9f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF186\\Mariah Carey - Never Too Far - SF186 - 08.mp3", + "title": "Never Too Far" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Tyrese", + "playlist_title": "What Am I Gonna Do", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "e1e5b24a-1144-1581-892d-fbee5681ce1a", + "path": "z://CDG\\Various\\Rod Stewart - What Am I Gonna Do.mp3", + "title": "What Am I Gonna Do" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Reba", + "playlist_title": "I'm A Survivor", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "b0ac93ad-ecac-5de7-2e87-989b10599e1e", + "path": "z://CDG\\Various\\Reba McEntire - I M A Survivor.mp3", + "title": "I M A Survivor" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Babyface", + "playlist_title": "What If", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "77a85712-3f1b-0313-8696-01982016a062", + "path": "z://MP4\\Let's Sing Karaoke\\Creed - What If (Karaoke & Lyrics).mp4", + "title": "What If" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Daniel Rodriguez", + "playlist_title": "God Bless America", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "defc6d5f-3b2d-fb06-b120-62d6e6583236", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - God Bless America (Karaoke).mp4", + "title": "God Bless America" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Ja Rule Featuring Ashanti", + "title": "Always On Time", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Fat Joe Featuring R. Kelly", + "title": "We Thuggin'", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "City High Featuring Eve", + "title": "Caramel", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "title": "Son Of A Gun", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ludacris", + "title": "Roll Out (My Business)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Mr. Cheeks", + "title": "Lights, Camera, Action!", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mystikal", + "title": "Bouncin' Back (Bumpin' Me Against The Wall)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "OutKast Featuring Killer Mike", + "title": "The Whole World", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "title": "Take Away", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Fabolous", + "title": "Young'n (Holla Back)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Master P Featuring Weebie", + "title": "Ooohhhwee", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Jermaine Dupri & Ludacris", + "title": "Welcome To Atlanta", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Juvenile", + "title": "From Her Mama (Mama Got A**)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Method Man & Redman", + "title": "Part II", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bubba Sparxxx", + "title": "Ugly", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Ludacris, LL Cool J & Keith Murray", + "title": "Fatty Girl", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "R. Kelly", + "title": "Feelin' On Yo Booty", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Nas", + "title": "Got Ur Self A...", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "R.L., Snoop Dogg & Lil' Kim", + "title": "Do U Wanna Roll (Dolittle Theme)", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jonell & Method Man", + "title": "Round & Round", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "DMX", + "title": "Who We Be", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 22, + "missing_count": 24, + "needs_manual_review": 22 + } + }, + { + "playlist_title": "2000 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "SoulDecision Featuring Thrust", + "playlist_title": "Faded", + "found_song": { + "artist": "SoulDecision Featuring Thrust", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b4b4d4a-55f6-d61f-1451-2865b0898c93", + "path": "z://MP4\\KaraokeOnVEVO\\SoulDecision Featuring Thrust - Faded.mp4", + "title": "Faded" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Again", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "82d1e248-3a06-438c-1aff-428a47cfc183", + "path": "z://CDG\\Various\\Lenny Kravitz - Black.mp3", + "title": "Black" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 4, + "missing_count": 4, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2000 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Darryl Worley", + "playlist_title": "A Good Day To Run", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46836067-4735-1177-5f0c-7c657686e857", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - A Good Day To Run.mp4", + "title": "A Good Day To Run" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Alabama", + "playlist_title": "When It All Goes South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83358de3-65e9-b2fd-616a-f5f187ae7ef6", + "path": "z://CDG\\Various\\Alabama - When It All Goes South.mp3", + "title": "When It All Goes South" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Andy Griggs", + "playlist_title": "You Made Me That Way", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f5d6dca-7a0d-548a-ebca-e8b1efe4fcc5", + "path": "z://CDG\\Various\\Andy Griggs - You Made Me That Way.mp3", + "title": "You Made Me That Way" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Next Thirty Years", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Kenny Chesney", + "playlist_title": "I Lost It", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Brad Paisley", + "playlist_title": "We Danced", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "230f1448-a859-d565-9721-16cd13147589", + "path": "z://MP4\\Let's Sing Karaoke\\Brad Paisley - Water.mp4", + "title": "Water" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Kiss This", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "guid": "15e6edb2-5167-c82e-074a-05b1d8279052", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Her (Karaoke).mp4", + "title": "Her" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "SheDaisy", + "title": "Lucky 4 You (Tonight I'm Just Me)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 4, + "missing_count": 6, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2000 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "OutKast", + "playlist_title": "Ms. Jackson", + "found_song": { + "artist": "Outkast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7a4e934-2ed2-2439-6a21-d879714cd925", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Outkast - Ms Jackson - SFTPB04 - 14.mp3", + "title": "Ms Jackson" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "R. Kelly", + "playlist_title": "I Wish", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fea3d88-4410-9d5c-3421-0b8100f34a87", + "path": "z://MP4\\KaraokeOnVEVO\\R. Kelly - I Wish.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "O-Town", + "playlist_title": "Liquid Dreams", + "found_song": { + "artist": "O Town", + "disabled": false, + "favorite": false, + "guid": "4af7a5c4-864f-b30c-6491-3645e5486db1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF186\\O Town - Liquid Dreams - SF186 - 12.mp3", + "title": "Liquid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nelly", + "playlist_title": "E.I.", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a889b7a-d714-eba8-6cb2-fee0db45ea8b", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly - EI.mp4", + "title": "E.I." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "Pinch Me", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "0b6ba5d7-3551-1c94-59df-628e99a76cd7", + "path": "z://CDG\\Various\\Barenaked Ladies - Pinch Me.mp3", + "title": "Pinch Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "U2", + "playlist_title": "Beautiful Day", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "c83be262-204b-3b04-76dc-019e0b598d20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\U2 - Beautiful Day - SF172 - 07.mp3", + "title": "Beautiful Day" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Madonna", + "playlist_title": "Music", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3125831-bf55-b10c-2239-5fa7bb83160b", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Music.mp4", + "title": "Music" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fuel", + "playlist_title": "Hemorrhage (In My Hands)", + "found_song": { + "artist": "Fuel", + "disabled": false, + "favorite": false, + "guid": "0dfb7642-1dc7-3c1b-a8f6-5a1d5a2761f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hemorrhage (In My Hands) - Fuel.mp4", + "title": "Hemorrhage (In My Hands)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bent", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dab62e58-e941-66a1-7b40-c6601548731c", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Bent.mp4", + "title": "Bent" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ricky Martin", + "playlist_title": "She Bangs", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf327ed4-1810-3506-dd38-1b1150ead179", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Martin - She Bangs.mp4", + "title": "She Bangs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "My Everything", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c59a897-660b-e958-1f9d-4e83bb6ab003", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - My Everything.mp4", + "title": "My Everything" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "3 Doors Down", + "playlist_title": "Loser", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2c8b62-daa6-34ed-ad42-bb48320a2805", + "path": "z://MP4\\KaraokeOnVEVO\\3 Doors Down - Loser.mp4", + "title": "Loser" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "David Gray", + "playlist_title": "Babylon", + "found_song": { + "artist": "David Gray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a63df7f-b64b-641c-2d5e-b823b11bb304", + "path": "z://MP4\\KaraokeOnVEVO\\David Gray - Babylon.mp4", + "title": "Babylon" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Rollin'", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f57c300-7f06-253b-bf18-7af1022e1480", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limp Bizkit - Rollin.mp4", + "title": "Rollin'" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kelly Price", + "playlist_title": "You Should've Told Me", + "found_song": { + "artist": "Kelly Price", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27ffe53b-9803-1bc2-8869-08846d8ae029", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Price - You Shouldve Told Me.mp4", + "title": "You Should've Told Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Offspring", + "playlist_title": "Original Prankster", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d21a102-e7fd-366b-1b63-917072596b4e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Offspring - Original Prankster - SFMW 807 -14.mp3", + "title": "Original Prankster" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boyz II Men", + "playlist_title": "Thank You In Advance", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc89a85d-ea17-3d94-d73d-a2490c4abc01", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - Thank You In Advance.mp4", + "title": "Thank You In Advance" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "98 Degrees", + "playlist_title": "Give Me Just One Night (Una Noche)", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91caebe0-b8b7-a78d-3384-61dca5f83d28", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Give Me Just One Night (Una Noche.mp4", + "title": "Give Me Just One Night (Una Noche)" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "George Strait", + "playlist_title": "Go On", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eaad4b7-e503-7b33-80eb-96687af400d7", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Go On.mp4", + "title": "Go On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Again", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "82d1e248-3a06-438c-1aff-428a47cfc183", + "path": "z://CDG\\Various\\Lenny Kravitz - Black.mp3", + "title": "Black" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ludacris Featuring Shawna", + "playlist_title": "What's Your Fantasy", + "found_song": { + "artist": "Ludacris & Shawna", + "disabled": false, + "favorite": false, + "guid": "0bcfbcd7-4bc0-5313-472f-f0becd8a109c", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Ludacris & Shawna - What's Your Fantasy (Karaoke).mp4", + "title": "What's Your Fantasy" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Next Thirty Years", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Kenny Chesney", + "playlist_title": "I Lost It", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Brad Paisley", + "playlist_title": "We Danced", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "230f1448-a859-d565-9721-16cd13147589", + "path": "z://MP4\\Let's Sing Karaoke\\Brad Paisley - Water.mp4", + "title": "Water" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Vertical Horizon", + "playlist_title": "You're A God", + "found_song": { + "artist": "Vertical Horizon", + "disabled": false, + "favorite": false, + "guid": "56132abd-3b4a-0673-17b9-a289b30384e8", + "path": "z://MP4\\Let's Sing Karaoke\\Vertical Horizon - Everything You Want (Karaoke & Lyrics).mp4", + "title": "Everything You Want" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Carl Thomas", + "playlist_title": "Emotional", + "found_song": { + "artist": "Carla Thomas", + "disabled": false, + "favorite": false, + "guid": "9823411e-27c2-8059-7e44-810e4e46d777", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gee Whiz - Carla Thomas.mp4", + "title": "Gee Whiz" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Dave Hollister", + "playlist_title": "One Woman Man", + "found_song": { + "artist": "Fifty Shades Darker", + "disabled": false, + "favorite": false, + "guid": "cb4814e8-ce40-b978-f29e-59ec92e10127", + "path": "z://MP4\\KtvEntertainment\\Fifty Shades Darker - One Woman Man Karaoke Lyrics.mp4", + "title": "One Woman Man" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Moby Featuring Gwen Stefani", + "playlist_title": "South Side", + "found_song": { + "artist": "Moby ft. Gwen Stefani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a1a13fe-8960-76a6-f39d-d2797b6eddda", + "path": "z://MP4\\KaraokeOnVEVO\\Moby Featuring Gwen Stefani - South Side.mp4", + "title": "South Side" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Erykah Badu", + "playlist_title": "Bag Lady", + "found_song": { + "artist": "Erykah Badu", + "disabled": false, + "favorite": false, + "guid": "fca7aea2-83b8-5455-e371-bf506fd6a438", + "path": "z://MP4\\KaraokeOnVEVO\\Erykah Badu - Booty (Karaoke).mp4", + "title": "Booty" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "NewSong", + "playlist_title": "The Christmas Shoes", + "found_song": { + "artist": "Idina Menzel", + "disabled": false, + "favorite": false, + "guid": "94e05236-4fc9-4f55-6afb-4bcaed26f588", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Christmas Song - Idina Menzel.mp4", + "title": "The Christmas Song" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "BBMak", + "playlist_title": "Still On Your Side", + "found_song": { + "artist": "BBMak", + "disabled": false, + "favorite": false, + "guid": "d9734ea2-927f-a4b8-6c81-01261d4ed6b6", + "path": "z://MP4\\KaraokeOnVEVO\\BBMak - Ghost Of You And Me (Karaoke).mp4", + "title": "Ghost Of You And Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Shaggy Featuring Rayvon", + "playlist_title": "Angel", + "found_song": { + "artist": "Shaggy Ft. Rayvon", + "disabled": false, + "favorite": false, + "guid": "98bd0551-aaa1-0281-3bb8-a32d3bc60a8f", + "path": "z://MP4\\Sing King Karaoke\\Shaggy Ft. Rayvon - Angel (Karaoke Version).mp4", + "title": "Angel" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Billy Gilman", + "playlist_title": "Oklahoma", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0193dabf-234c-214e-0b7b-250708723515", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Idol - LA Woman.mp4", + "title": "L.A. Woman" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Marc Anthony", + "playlist_title": "My Baby You", + "found_song": { + "artist": "Marc Anthony", + "disabled": false, + "favorite": false, + "guid": "874f0eb6-6e2d-319f-88f8-25f197ecfe04", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Sang To Me - Marc Anthony.mp4", + "title": "You Sang To Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Kiss This", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "guid": "15e6edb2-5167-c82e-074a-05b1d8279052", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Her (Karaoke).mp4", + "title": "Her" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Sunday", + "playlist_title": "I Know", + "found_song": { + "artist": "Shift K3y", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02979b36-8661-defb-0bc5-3e4298984241", + "path": "z://CDG\\Mr Entertainer\\MRH121\\Shift K3y - I Know.mp3", + "title": "I Know" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Vince Gill", + "playlist_title": "Feels Like Love", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7338b4f0-b537-ab01-3640-f93d79798e5f", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Never Knew Lonely.mp4", + "title": "Never Knew Lonely" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jay-Z", + "title": "I Just Wanna Love U (Give It 2 Me)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ja Rule Featuring Christina Milian", + "title": "Between Me And You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Avant Featuring Ketara Wyatt", + "title": "My First Love", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Musiq", + "title": "Just Friends (Sunny)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Mystikal Featuring Nivea", + "title": "Danger (Been So Long)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "K-Ci & JoJo", + "title": "Crazy", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Mikaila", + "title": "So In Love With Two", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Bow Wow", + "title": "Bow Wow (That's My Name)", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "3LW", + "title": "No More (Baby I'ma Do Right)", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Public Announcement", + "title": "Mamacita", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Wyclef Jean Featuring Mary J. Blige", + "title": "911", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Eminem Featuring Dido", + "title": "Stan", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Vitamin C", + "title": "The Itch", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Cash Money Millionaires", + "title": "Project Chick", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jagged Edge", + "title": "Promise", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "112", + "title": "It's Over Now", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "title": "Is That Your Chick", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Profyle", + "title": "Liar", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Yolanda Adams", + "title": "Open My Heart", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Xzibit", + "title": "X", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Beenie Man Featuring Mya", + "title": "Girls Dem Sugar", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "title": "Put It On Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jaheim", + "title": "Could It Be", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Lil' Kim Featuring Sisqo", + "title": "How Many Licks?", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "title": "Oh No", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "De La Soul Featuring Chaka Khan", + "title": "All Good?", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nine Days", + "title": "If I Am", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 21, + "missing_count": 36, + "needs_manual_review": 21 + } + }, + { + "playlist_title": "1999 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gary Allan", + "playlist_title": "Smoke Rings In The Dark", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49e24614-81b7-2227-66e5-264486f13ebb", + "path": "z://CDG\\Various\\Gary Allan - Smoke Rings In The Dark.mp3", + "title": "Smoke Rings In The Dark" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mark Wills", + "playlist_title": "Back At One", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "guid": "8a4f03b4-18b9-8802-cdd8-155fb7f3cb0f", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Back At One (Karaoke).mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Because You Love Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "09806881-c17d-3a41-bdf1-5ef050cdb0a2", + "path": "z://MP4\\KaraFun Karaoke\\Because You Love Me - Jo Dee Messina Karaoke Version KaraFun.mp4", + "title": "Because You Love Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Clint Black", + "playlist_title": "When I Said I Do", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "bdf6cf0d-eaea-b314-579e-32a5b2312aea", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - Where Are You Now (Karaoke & Lyrics).mp4", + "title": "Where Are You Now" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Home To You", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "301136e5-4f56-57d4-8c63-9390187a1026", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Cool (Karaoke).mp4", + "title": "Cool" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Martina McBride", + "playlist_title": "I Love You", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "050ef2f5-1454-a791-c4b6-c70faa3a9f76", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke True Love Ways - Martina McBride.mp4", + "title": "True Love Ways" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tracy Byrd", + "title": "Put Your Hand In Mine", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Brooks & Dunn", + "title": "Beer Thirty", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "George Strait", + "title": "What Do You Say To That", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Joe Diffie", + "title": "The Quittin' Kind", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 3, + "missing_count": 5, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1999 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Brian McKnight", + "playlist_title": "Back At One", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "ee1da233-9aa1-2e7e-69ec-545f23f75bd9", + "path": "z://MP4\\Sing King Karaoke\\Brian McKnight - Back At One.mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jessica Simpson", + "playlist_title": "I Wanna Love You Forever", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "guid": "9a684988-cf6f-9021-f62d-74c6ccfed52e", + "path": "z://MP4\\KaraFun Karaoke\\I Wanna Love You Forever - Jessica Simpson Karaoke Version KaraFun.mp4", + "title": "I Wanna Love You Forever" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Savage Garden", + "playlist_title": "I Knew I Loved You", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "1d596975-c0fe-cf0e-bff2-468586de73f3", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - I Knew I Loved You (Karaoke Version).mp4", + "title": "I Knew I Loved You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "My Love Is Your Love", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "c6f17c64-c26f-b405-0a92-962502cb3242", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - My Love Is Your Love (Karaoke Version).mp4", + "title": "My Love Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Marc Anthony", + "playlist_title": "I Need To Know", + "found_song": { + "artist": "Marc Anthony", + "disabled": false, + "favorite": false, + "guid": "b8496988-a5c9-7019-b64f-b42a7f4d9868", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need To Know - Marc Anthony.mp4", + "title": "I Need To Know" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Blaque", + "playlist_title": "Bring It All To Me", + "found_song": { + "artist": "Blaque ft. N Sync", + "disabled": false, + "favorite": false, + "guid": "3043647b-de52-0f74-4240-b780f90961a4", + "path": "z://MP4\\Let's Sing Karaoke\\Blaque & N Sync - Bring It All To Me (Karaoke & Lyrics).mp4", + "title": "Bring It All To Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Waiting For Tonight", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4691016a-3bb5-be33-e9dc-8d853adf3714", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTP01\\Jennifer Lopez - Waiting For Tonight - SFTP01- 02.mp3", + "title": "Waiting For Tonight" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Christina Aguilera", + "playlist_title": "What A Girl Wants", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5291999f-3cd9-fc19-1de1-92f05783ab69", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - What A Girl Wants.mp4", + "title": "What A Girl Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Len", + "playlist_title": "Steal My Sunshine", + "found_song": { + "artist": "Len", + "disabled": false, + "favorite": false, + "guid": "9f29d6a7-a31d-d02b-8954-2a3af1a124dc", + "path": "z://MP4\\Len - Steal My Sunshine.mp4", + "title": "Steal My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eiffel 65", + "playlist_title": "Blue (Da Ba Dee)", + "found_song": { + "artist": "Eiffel 65", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c7cf8da-1f36-4a56-a5b8-2ba2bb84d1fb", + "path": "z://MP4\\Sing King Karaoke\\Eiffel 65 - Blue (Da Ba Dee).mp4", + "title": "Blue (Da Ba Dee)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lou Bega", + "playlist_title": "Mambo No. 5 (A Little Bit Of...)", + "found_song": { + "artist": "Lou Bega", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1db201e1-5a76-282d-6b89-2163c8f0d8f6", + "path": "z://MP4\\Sing King Karaoke\\Lou Bega - Mambo No 5 (A Little Bit Of).mp4", + "title": "Mambo No 5 (A Little Bit Of...)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "TLC", + "playlist_title": "Unpretty", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "803500e8-931f-b7ab-c0c2-68ef27c71040", + "path": "z://MP4\\ZoomKaraokeOfficial\\TLC - Unpretty.mp4", + "title": "Unpretty" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Train", + "playlist_title": "Meet Virginia", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "4b437d87-78ba-89de-09bc-c4fdd031db0b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Meet Virginia - Train.mp4", + "title": "Meet Virginia" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Learn To Fly", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0637364-9cbb-d3f0-175c-8930847465cc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Foo Fighters - Learn To Fly - SFMW 833 -09.mp3", + "title": "Learn To Fly" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Montell Jordan", + "playlist_title": "Get It On Tonite", + "found_song": { + "artist": "Montell Jordan", + "disabled": false, + "favorite": false, + "guid": "64a34933-d17a-531c-3372-9d3cdfa68fe5", + "path": "z://MP4\\Let's Sing Karaoke\\Jordan, Montell - Get It On Tonite (Karaoke & Lyrics).mp4", + "title": "Get It On Tonite" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Celine Dion", + "playlist_title": "That's The Way It Is", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43f0d877-e82a-62c9-c00a-15a3b58b9537", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - That's The Way It Is.mp4", + "title": "That's The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Counting Crows", + "playlist_title": "Hanginaround", + "found_song": { + "artist": "Counting Crows", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba93391-ba9d-460e-19e8-839665d7cf89", + "path": "z://MP4\\KaraokeOnVEVO\\Counting Crows - Hanginaround.mp4", + "title": "Hanginaround" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Black Balloon", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "e64da962-6c75-51aa-fe5e-6be5d535cafa", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Black Balloon (Karaoke).mp4", + "title": "Black Balloon" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Filter", + "playlist_title": "Take A Picture", + "found_song": { + "artist": "Filter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d497674-1321-6371-ad3a-d84b3b489418", + "path": "z://MP4\\KaraokeOnVEVO\\Filter - Take A Picture.mp4", + "title": "Take A Picture" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ricky Martin", + "playlist_title": "Shake Your Bon-Bon", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "guid": "7145de03-4e19-1726-af4f-711600f5fd92", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF150\\Ricky Martin - Shake Your Bon Bon - SF150 - 11.mp3", + "title": "Shake Your Bon Bon" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mint Condition", + "playlist_title": "If You Love Me", + "found_song": { + "artist": "Mint Condition", + "disabled": false, + "favorite": false, + "guid": "0db24760-18f8-b5dd-e44e-e788685e827a", + "path": "z://MP4\\Let's Sing Karaoke\\Mint Condition - If You Love Me (Karaoke & Lyrics).mp4", + "title": "If You Love Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Tal Bachman", + "playlist_title": "She's So High", + "found_song": { + "artist": "Tal Bachman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "94a99f15-d660-8809-9e3d-9dd2a697d45c", + "path": "z://MP4\\KaraokeOnVEVO\\Tal Bachman - She's So High.mp4", + "title": "She's So High" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Britney Spears", + "playlist_title": "(You Drive Me) Crazy", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "1b410e42-2654-ea6e-caf1-aaec31213daf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Drive Me) Crazy (album version) - Britney Spears.mp4", + "title": "(You Drive Me) Crazy" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Robbie Williams", + "playlist_title": "Angels", + "found_song": { + "artist": "Robbie Williams", + "disabled": false, + "favorite": false, + "guid": "7115c9f8-0f65-40b1-8e80-ac51627ed2b7", + "path": "z://MP4\\Sing King Karaoke\\Robbie Williams - Angels (Karaoke Version).mp4", + "title": "Angels" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Blink-182", + "playlist_title": "All The Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Creed", + "playlist_title": "Higher", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f719d2ac-5c17-4223-d10c-a9a27372e3d0", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - Higher.mp4", + "title": "Higher" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Deep Inside", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "1124ffec-c620-8a81-7bda-74c279008e74", + "path": "z://MP4\\singsongsmusic\\Deep Inside - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Deep Inside" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Rhythm Divine", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "518601ea-8aa1-b6b2-5a5b-d6443e1f5f19", + "path": "z://MP4\\singsongsmusic\\Rhythm Divine - Karaoke HD (In the style of Enrique Iglesias).mp4", + "title": "Rhythm Divine" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Larger Than Life", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f3ef19-2463-b72a-8168-1ab9e1693043", + "path": "z://MP4\\ZoomKaraokeOfficial\\Backstreet Boys - Larger Than Life.mp4", + "title": "Larger Than Life" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Sixpence None The Richer", + "playlist_title": "There She Goes", + "found_song": { + "artist": "Sixpence None The Richer", + "disabled": false, + "favorite": false, + "guid": "2aaf19d4-2dbb-1a09-c0f2-05cf37da59b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF146\\Sixpence None The Richer - There She Goes - SF146 - 08.mp3", + "title": "There She Goes" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "R.E.M.", + "playlist_title": "The Great Beyond", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f5d01d9-2fa4-ab0c-efd9-2aacc57d30ed", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The Great Beyond.mp4", + "title": "The Great Beyond" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Fatboy Slim", + "playlist_title": "The Rockafeller Skank", + "found_song": { + "artist": "Fatboy Slim", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b08017eb-ff29-005d-0bff-46060419e2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Fatboy Slim - The Rockafeller Skank.mp4", + "title": "The Rockafeller Skank" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Donell Jones", + "playlist_title": "U Know What's Up", + "found_song": { + "artist": "Turning Red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13dc23f5-013f-75ec-4075-daf249d36929", + "path": "z://MP4\\Sing King Karaoke\\Turning Red - U Know Whats Up.mp4", + "title": "U Know What's Up" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Kevon Edmonds", + "playlist_title": "24/7", + "found_song": { + "artist": "Kevon Edmonds", + "disabled": false, + "favorite": false, + "guid": "546415b1-b021-159e-2223-d7e24532e112", + "path": "z://MP4\\Let's Sing Karaoke\\Edmonds, Kevon - 247 (Karaoke & Lyrics).mp4", + "title": "247" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Guy", + "playlist_title": "Dancin'", + "found_song": { + "artist": "Blaque ft. N Sync", + "disabled": false, + "favorite": false, + "guid": "c1e886d6-01bd-c346-9a6a-434dc9ff46a3", + "path": "z://MP4\\Let's Sing Karaoke\\Blaque & N Sync - Dancin' (Karaoke & Lyrics).mp4", + "title": "Dancin'" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Puff Daddy Featuring R. Kelly", + "playlist_title": "Satisfy You", + "found_song": { + "artist": "Puff Daddy ft. R Kelly", + "disabled": false, + "favorite": false, + "guid": "0038f8b3-e9e9-b4dc-f780-e8dfb6443a84", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF163\\Puff Daddy Feat R Kelly - Satisfy You - SF163 - 01.mp3", + "title": "Satisfy You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Sugar Ray", + "playlist_title": "Someday", + "found_song": { + "artist": "Sugar Ray", + "disabled": false, + "favorite": false, + "guid": "d8c0ea67-f8f6-b9e0-c9df-928d790e1987", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Sugar Ray - Fly.mp3", + "title": "Fly" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "IMx", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Blunt, James", + "disabled": false, + "favorite": false, + "guid": "3cc5bdef-ae7d-04cf-dd0c-a7b4863209b7", + "path": "z://CDG\\Big Hits Karaoke\\BHK015\\BHK015-11 - Blunt, James - Stay The Night.mp3", + "title": "Stay The Night" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Clint Black", + "playlist_title": "When I Said I Do", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "bdf6cf0d-eaea-b314-579e-32a5b2312aea", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - Where Are You Now (Karaoke & Lyrics).mp4", + "title": "Where Are You Now" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Marc Nelson", + "playlist_title": "15 Minutes", + "found_song": { + "artist": "Madonna ft. Justin", + "disabled": false, + "favorite": false, + "guid": "2bbe584f-c273-dede-d33b-4594575b4bf3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF266\\Madonna & Justin - 4 Minutes - SF266 - 15.mp3", + "title": "4 Minutes" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "M2M", + "playlist_title": "Don't Say You Love Me", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "b8448f4f-54cb-4647-19d8-bb6f1a796a66", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - Don't Say You Love Me (Karaoke Version).mp4", + "title": "Don't Say You Love Me" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Christmas Song (Chestnuts Roasting On An Open Fire)", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1165bec5-f32d-6c3a-615a-4d7007531983", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Christmas Song (Chestnuts Roasting On An Open Fire) - Justin Bieber.mp4", + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Mariah Carey Featuring Joe & 98 Degrees", + "playlist_title": "Thank God I Found You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "e6a52fc9-03f9-644c-5b77-63b6eb8352b4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF155\\Mariah Carey - Thank God I Found You - SF155 - 11.mp3", + "title": "Thank God I Found You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Mariah Carey Featuring Jay-Z", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Mariah Carey ft. Jay Z", + "disabled": false, + "favorite": false, + "guid": "45ce7fe2-3e74-3a6e-ca50-602d7a8c6380", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF150\\Mariah ft Jay Z Carey - Heartbreaker - SF150 - 05.mp3", + "title": "Heartbreaker" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Will Smith Featuring K-Ci", + "playlist_title": "Will 2K", + "found_song": { + "artist": "Will Smith ft. K Ci", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e2721b3-5406-885d-c6a0-aad5ee98ff9f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Will Smith feat K Ci - Will 2K.mp4", + "title": "Will 2K" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Martina McBride", + "playlist_title": "I Love You", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "050ef2f5-1454-a791-c4b6-c70faa3a9f76", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke True Love Ways - Martina McBride.mp4", + "title": "True Love Ways" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Kelis", + "playlist_title": "Caught Out There", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "334deb70-4d81-6b9b-5204-a53b5be9ccad", + "path": "z://MP4\\singsongsmusic\\Caught Out There (I Hate You) - Karaoke HD (In the style of Kelis).mp4", + "title": "Caught Out There (I Hate You)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Eve", + "playlist_title": "Gotta Man", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "guid": "b4e97860-7175-68a9-8fe5-dd3b4a0b15c0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatta Man - En Vogue.mp4", + "title": "Whatta Man" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Home To You", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "301136e5-4f56-57d4-8c63-9390187a1026", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Cool (Karaoke).mp4", + "title": "Cool" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Destiny's Child", + "playlist_title": "Bug A Boo", + "found_song": { + "artist": "Destinys Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "992005ff-5233-b451-2d05-4ed292c4b6a3", + "path": "z://MP4\\VocalStarKaraoke\\Destinys Child - Bug A Boo.mp4", + "title": "Bug A Boo" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Deborah Cox With R.L.", + "playlist_title": "We Can't Be Friends", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "b4689213-69f2-e643-0071-704788ad6bec", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - we can't be friends (wait for your love) (Karaoke Version).mp4", + "title": "we can't be friends" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "'N Sync & Gloria Estefan", + "playlist_title": "Music Of My Heart", + "found_song": { + "artist": "N Sync & Gloria Estefan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bbc977d-69f4-928d-c68d-ca4b992efec7", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync & Gloria Estefan - Music Of My Heart.mp4", + "title": "Music Of My Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Rage Against The Machine", + "playlist_title": "Guerrilla Radio", + "found_song": { + "artist": "Rage Against The Machine", + "disabled": false, + "favorite": false, + "guid": "917814c2-7445-9de3-fd26-e5a040e84373", + "path": "z://MP4\\Let's Sing Karaoke\\Rage Against Machine - Bulls On Parade (Karaoke & Lyrics).mp4", + "title": "Bulls On Parade" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Kenny G", + "playlist_title": "Auld Lang Syne", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "4a2fd93a-3963-ab54-e38a-fb65be41b986", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Auld Lang Syne - Tony Bennett.mp4", + "title": "Auld Lang Syne" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Prince", + "playlist_title": "The Greatest Romance Ever Sold", + "found_song": { + "artist": "Sister Act", + "disabled": false, + "favorite": false, + "guid": "78783d43-28b0-04fc-1be2-7b3e33695cd2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Greatest Medley Ever Told - Sister Act.mp4", + "title": "The Greatest Medley Ever Told" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Re-arranged", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "guid": "780a9129-0c7e-ce2a-e2e8-ecfa1e0c6f5f", + "path": "z://CDG\\Various\\Limp Bizkit - Rearranged.mp3", + "title": "Rearranged" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "SheDaisy", + "playlist_title": "Deck The Halls", + "found_song": { + "artist": "Christmas Carol", + "disabled": false, + "favorite": false, + "guid": "dea3c7c4-a66c-e1bb-4c92-3fdc1af908c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Deck The Halls - Christmas Carol.mp4", + "title": "Deck The Halls" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Santana Featuring Rob Thomas", + "title": "Smooth", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "title": "Hot Boyz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "LFO", + "title": "Girl On TV", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Smash Mouth", + "title": "Then The Morning Comes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jagged Edge", + "title": "He Can't Love U", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "702", + "title": "Where My Girls At?", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sole Featuring JT Money & Kandi", + "title": "4, 5, 6", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "title": "Back That Thang Up", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Ideal", + "title": "Get Gone", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ol' Dirty Bastard Featuring Kelis", + "title": "Got Your Money", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "title": "You Can Do It", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Sisqo Featuring Make It Hot", + "title": "Got To Get It", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "title": "Bling Bling", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Amber", + "title": "Sexual (Li Da Di)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ginuwine", + "title": "None Of Ur Friends Business", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bush", + "title": "The Chemicals Between Us", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "D'Angelo Featuring Method Man And Redman", + "title": "Left & Right", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Limp Bizkit Featuring Method Man", + "title": "N 2 Gether Now", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "title": "Tha Block Is Hot", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Angie Stone", + "title": "No More Rain (In This Cloud)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "title": "Notorious B.I.G.", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Chico DeBarge", + "title": "Give You What You Want (Fa Sure)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Warren G Featuring Mack 10", + "title": "I Want It All", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "J-Shin Featuring LaTocha Scott", + "title": "One Night Stand", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Dr. Dre Featuring Snoop Dogg", + "title": "Still D.R.E.", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Beth Hart", + "title": "L.A. Song", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nas", + "title": "NAStradamus", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 25, + "missing_count": 28, + "needs_manual_review": 25 + } + }, + { + "playlist_title": "1998 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Collin Raye", + "playlist_title": "Someone You Used To Know", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "68c6e3bd-6414-7c47-42dc-7fd7ed722199", + "path": "z://MP4\\KaraokeOnVEVO\\Dolly Parton - Just Someone I Used To Know (Karaoke).mp4", + "title": "Just Someone I Used To Know" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Faith Hill", + "playlist_title": "Let Me Let Go", + "found_song": { + "artist": "Tim McGraw ft. Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bc2f15e-1019-c649-6b24-a05d7b98adee", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw & Faith Hill - Let's Make Love.mp4", + "title": "Let's Make Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Martina McBride", + "playlist_title": "Wrong Again", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "38c8bea2-55e7-c70d-7ac1-2020faeca2a5", + "path": "z://MP4\\Let's Sing Karaoke\\McBride, Martina - Broken Wing (Karaoke & Lyrics) (2).mp4", + "title": "Broken Wing" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Aaron Tippin", + "playlist_title": "For You I Will", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "68143c15-ad56-a667-7ec2-7a657ad3c99d", + "path": "z://MP4\\KaraFun Karaoke\\For You I Will - Monica Karaoke Version KaraFun.mp4", + "title": "For You I Will" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Tim McGraw", + "playlist_title": "For A Little While", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Ty Herndon", + "playlist_title": "It Must Be Love", + "found_song": { + "artist": "Madness", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7b2581a-d92e-760c-2e96-ee89089f3d4b", + "path": "z://MP4\\KaraokeOnVEVO\\Madness - It Must Be Love.mp4", + "title": "It Must Be Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Reba", + "playlist_title": "Wrong Night", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "e6628aa6-3154-7d17-3b7a-cb9f95ae7664", + "path": "z://MP4\\Let's Sing Karaoke\\McEntire, Reba - Wrong Night (Karaoke & Lyrics).mp4", + "title": "Wrong Night" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Garth Brooks", + "playlist_title": "It s Your Song", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "18386e49-fe59-2210-cfb3-fb7f6018ddb0", + "path": "z://MP4\\King of Karaoke\\Garth Brooks - All Day Long - King of Karaoke.mp4", + "title": "All Day Long" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Toby Keith", + "playlist_title": "Getcha Some", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Billy Ray Cyrus", + "playlist_title": "Busy Man", + "found_song": { + "artist": "Billy Ray Cyrus", + "disabled": false, + "favorite": false, + "guid": "349ecf36-0c72-4524-ee84-5da725d0c0b8", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ray Cyrus - Talk Some (Karaoke).mp4", + "title": "Talk Some" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 10, + "missing_count": 5, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "1998 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "R. Kelly", + "playlist_title": "I m Your Angel", + "found_song": { + "artist": "Celine Dion ft. R. Kelly", + "disabled": false, + "favorite": false, + "guid": "b557e694-cf78-b50d-b6b0-e3f901c9fbc4", + "path": "z://MP4\\Let's Sing Karaoke\\Dion, Celine & R. Kelly - I'm Your Angel (Karaoke & Lyrics) (2).mp4", + "title": "I'm Your Angel" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Deborah Cox", + "playlist_title": "Nobody s Supposed To Be Here", + "found_song": { + "artist": "Deborah Cox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a4997e-6060-9ec4-bf34-9b9089da70cf", + "path": "z://MP4\\Sing King Karaoke\\Deborah Cox - Nobody s Supposed To Be Here.mp4", + "title": "Nobody s Supposed To Be Here" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shania Twain", + "playlist_title": "From This Moment On", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "246f9d01-7488-82ef-f492-f2c39c9c7deb", + "path": "z://MP4\\KaraFun Karaoke\\From This Moment On - Shania Twain Karaoke Version KaraFun.mp4", + "title": "From This Moment On" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Britney Spears", + "playlist_title": "...Baby One More Time", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "54a2d9dd-0de0-ce76-6839-d14695ba7582", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - ...Baby One More Time (Karaoke Version).mp4", + "title": "...Baby One More Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "98 Degrees", + "playlist_title": "Because Of You", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "guid": "9587183e-6e80-4b1b-ae7f-a6acf4c943a5", + "path": "z://MP4\\KaraokeOnVEVO\\98º - Because Of You (Karaoke).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lauryn Hill", + "playlist_title": "Doo Wop (That Thing)", + "found_song": { + "artist": "Lauryn Hill", + "disabled": false, + "favorite": false, + "guid": "9d5e1052-e04e-f190-685b-38e7f7ed2e37", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Doo Wop (That Thing) - Lauryn Hill.mp4", + "title": "Doo Wop (That Thing)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Spice Girls", + "playlist_title": "Goodbye", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "fd725dec-7a02-e504-93a6-657f650c1bb4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF128\\Spice Girls - Goodbye - SF128 - 01.mp3", + "title": "Goodbye" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eagle-Eye Cherry", + "playlist_title": "Save Tonight", + "found_song": { + "artist": "Eagle-Eye Cherry", + "disabled": false, + "favorite": false, + "guid": "a396330b-1c8c-177d-4902-e5e9a60584e5", + "path": "z://MP4\\Sing King Karaoke\\Eagle-Eye Cherry - Save Tonight (Karaoke Version).mp4", + "title": "Save Tonight" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Faith Hill", + "playlist_title": "This Kiss", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "8c8f7fce-6145-241d-af15-074fbcf6393d", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - This Kiss (Karaoke & Lyrics) (2).mp4", + "title": "This Kiss" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jewel", + "playlist_title": "Hands", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "657caf6b-266d-fef2-3abd-d42d6df99ce7", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Hands.mp4", + "title": "Hands" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Jumper", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "a9c232cd-780e-5176-be79-7b35214efc00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jumper - Third Eye Blind.mp4", + "title": "Jumper" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Slide", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "13f03b13-59ed-74de-41b5-98a4e262a669", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Slide - Goo Goo Dolls.mp4", + "title": "Slide" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Iris", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9dd266b2-0aaf-69b2-1f48-41710e538388", + "path": "z://MP4\\Sing King Karaoke\\Goo Goo Dolls - Iris (Karaoke Version).mp4", + "title": "Iris" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Monica", + "playlist_title": "The First Night", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4d065-cbaa-ccbd-288a-e95c7ff5072a", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - The First Night.mp4", + "title": "The First Night" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Edwin McCain", + "playlist_title": "I ll Be", + "found_song": { + "artist": "Edwin McCain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d73023-95f1-0324-bc0a-654bcdfa5e00", + "path": "z://MP4\\Sing King Karaoke\\Edwin McCain - Ill Be.mp4", + "title": "I'll Be" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "BLACKstreet", + "playlist_title": "Take Me There", + "found_song": { + "artist": "Mya ft. Mase, Blackstreet, Blinky Blink", + "disabled": false, + "favorite": false, + "guid": "cc1fd058-5fa5-a4d6-6bbe-34f825d2553c", + "path": "z://MP4\\Let's Sing Karaoke\\Mya & Mase & Blackstreet & Blinky Blink - Take Me There (Karaoke & Lyrics) (2).mp4", + "title": "Take Me There" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Alanis Morissette", + "playlist_title": "Thank U", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "guid": "e071bcb7-aa58-7d6c-b4cd-bb25ae8b301c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Thank U - Alanis Morissette.mp4", + "title": "Thank U" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "One Week", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "ba139217-00c9-a399-35ec-eb3f80bbc048", + "path": "z://MP4\\Sing King Karaoke\\Barenaked Ladies - One Week (Karaoke Version).mp4", + "title": "One Week" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Angel", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "0d61bfb2-badd-3763-9b7e-5d90cc6857de", + "path": "z://MP4\\Sing King Karaoke\\Sarah McLachlan - Angel (Karaoke Version).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aaliyah", + "playlist_title": "Are You That Somebody?", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "ec224ec0-98a1-3700-0caf-3f3b751fd0e6", + "path": "z://CDG\\Various\\Aaliyah - Are You That Somebody.mp3", + "title": "Are You That Somebody" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Will Smith", + "playlist_title": "Miami", + "found_song": { + "artist": "Will Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a23071ca-826e-a09f-6245-94e32c53af7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Will Smith - Miami.mp4", + "title": "Miami" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "N Sync", + "playlist_title": "(God Must Have Spent) A Little More Time On You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e60cf2e-f814-cbed-2695-54da47c9fd2d", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync - (God Must Have Spent A Little More Time On You.mp4", + "title": "(God Must Have Spent) A Little More Time On You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Monica", + "playlist_title": "Angel Of Mine", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "88858625-6254-4917-fe88-d014db4882f2", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - Angel Of Mine (Karaoke).mp4", + "title": "Angel Of Mine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "2Pac", + "playlist_title": "Changes", + "found_song": { + "artist": "2Pac", + "disabled": false, + "favorite": false, + "guid": "1260dca9-a170-7004-3cad-f825fac84cdf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Changes - 2Pac.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "New Radicals", + "playlist_title": "You Get What You Give", + "found_song": { + "artist": "New Radicals", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "d05e862c-3999-8644-7ea5-626465938a2a", + "path": "z://MP4\\KaraokeOnVEVO\\New Radicals - You Get What You Give.mp4", + "title": "You Get What You Give" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53099da4-bde7-30f5-bb8f-9438cf86d405", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lenny Kravitz - Fly Away.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Whitney Houston", + "playlist_title": "When You Believe", + "found_song": { + "artist": "Whitney Houston ft. Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "49ce4e5b-b543-c54f-7530-132ed4c0c354", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston (With Mariah Carey) - When You Believe (Karaoke Version).mp4", + "title": "When You Believe" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Offspring", + "playlist_title": "Pretty Fly (For A White Guy)", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "176c84a4-af34-6133-b5e6-293da9613b47", + "path": "z://MP4\\Sing King Karaoke\\Offspring - Pretty Fly For A White Guy.mp4", + "title": "Pretty Fly For A White Guy" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "U2", + "playlist_title": "Sweetest Thing", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "fe17b14c-fe42-5962-03a2-4944c51b7e95", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Sweetest Thing (Karaoke & Lyrics).mp4", + "title": "Sweetest Thing" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Aerosmith", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "47a352e5-8c45-b131-b8e6-8fffd7eab4a8", + "path": "z://MP4\\Sing King Karaoke\\Aerosmith - I Don t Want To Miss A Thing (Karaoke Version).mp4", + "title": "I Don t Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Cher", + "playlist_title": "Believe", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "8ddf02e2-c623-0327-7f43-f1067b01590b", + "path": "z://MP4\\Sing King Karaoke\\Cher - Believe (Karaoke Version).mp4", + "title": "Believe" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Everclear", + "playlist_title": "Father Of Mine", + "found_song": { + "artist": "Everclear", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "326032b7-57f4-7a29-b440-7f04d52363bd", + "path": "z://MP4\\KaraokeOnVEVO\\Everclear - Father Of Mine.mp4", + "title": "Father Of Mine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Everlast", + "playlist_title": "What It s Like", + "found_song": { + "artist": "Everlast", + "disabled": false, + "favorite": false, + "guid": "48c7dcb7-a8be-2aa1-e56a-a1307769bee1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What It s Like - Everlast.mp4", + "title": "What It s Like" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Fastball", + "playlist_title": "Fire Escape", + "found_song": { + "artist": "Fastball", + "disabled": false, + "favorite": false, + "guid": "8b2d0b2f-c2df-861f-e365-378e66e492d8", + "path": "z://MP4\\KaraokeOnVEVO\\Fastball - Fire Escape (Karaoke).mp4", + "title": "Fire Escape" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Five", + "playlist_title": "It s The Things You Do", + "found_song": { + "artist": "Five", + "disabled": false, + "favorite": false, + "guid": "d08a7e1e-1202-533d-a5ea-b8a02a8a7341", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF134\\Five - It's The Things You Do - SF134 - 13.mp3", + "title": "It's The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Hole", + "playlist_title": "Celebrity Skin", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64acf3e6-765b-7105-5aee-91cc371006bc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Celebrity Skin.mp4", + "title": "Celebrity Skin" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Mark Wills", + "playlist_title": "Don t Laugh At Me", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc852146-ecd6-1433-9b36-93e5b49bd00e", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Don t Laugh At Me.mp4", + "title": "Don t Laugh At Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Divine", + "playlist_title": "Lately", + "found_song": { + "artist": "Noah Cyrus ft. Tanner Alexander", + "disabled": false, + "favorite": false, + "guid": "96cd3a11-02ce-4475-0c2b-5ad8d20b45c8", + "path": "z://MP4\\Sing King Karaoke\\Noah Cyrus, Tanner Alexander - Lately (Karaoke Version).mp4", + "title": "Lately" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Faith Evans", + "playlist_title": "Love Like This", + "found_song": { + "artist": "ZAYN", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "968037b5-4b14-b550-e835-31e39a0f8c85", + "path": "z://MP4\\Sing King Karaoke\\ZAYN - Love Like This.mp4", + "title": "Love Like This" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Brandy", + "playlist_title": "Have You Ever?", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "594c475b-14cf-6581-8881-33967b0c1cee", + "path": "z://MP4\\KaraokeOnVEVO\\Brandy - Have You Ever.mp4", + "title": "Have You Ever?" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Shawn Mullins", + "playlist_title": "Lullaby", + "found_song": { + "artist": "Shawn Mullin", + "disabled": false, + "favorite": false, + "genre": "KARAOKE", + "guid": "85d0406b-4d32-3d4f-6876-abcc5f2cafb9", + "path": "z://CDG\\Various\\Shawn Mullin - Lullaby.mp3", + "title": "Lullaby" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Sheryl Crow", + "playlist_title": "My Favorite Mistake", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fcf087-bdb6-2420-8145-d5bce3ca1442", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - My Favourite Mistake.mp4", + "title": "My Favourite Mistake" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Eve 6", + "playlist_title": "Inside Out", + "found_song": { + "artist": "Odyssey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a0dd9da-7962-77c6-da1f-d5ab31532a58", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Odyssey - Inside Out - SF107 - 06.mp3", + "title": "Inside Out" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Next", + "playlist_title": "Too Close", + "found_song": { + "artist": "Blue", + "disabled": false, + "favorite": false, + "guid": "8f557b0d-22d6-3125-e8db-2268aa970c1d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF183\\Blue - Too Close - SF183 - 02.mp3", + "title": "Too Close" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Jay-Z", + "playlist_title": "Hard Knock Life (Ghetto Anthem)", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33e855e3-d5f4-3e3f-62fa-f979e9928f8e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jay Z - Hard Knock Life.mp4", + "title": "Hard Knock Life" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Collin Raye", + "playlist_title": "Someone You Used To Know", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "68c6e3bd-6414-7c47-42dc-7fd7ed722199", + "path": "z://MP4\\KaraokeOnVEVO\\Dolly Parton - Just Someone I Used To Know (Karaoke).mp4", + "title": "Just Someone I Used To Know" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Madonna", + "playlist_title": "The Power Of Good-Bye", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "243df586-3539-e85c-833a-ee350bee05bd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF126\\Madonna - Power Of Goodbye - SF126 - 11.mp3", + "title": "Power Of Goodbye" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Martina McBride", + "playlist_title": "Wrong Again", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "38c8bea2-55e7-c70d-7ac1-2020faeca2a5", + "path": "z://MP4\\Let's Sing Karaoke\\McBride, Martina - Broken Wing (Karaoke & Lyrics) (2).mp4", + "title": "Broken Wing" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Aaron Tippin", + "playlist_title": "For You I Will", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "68143c15-ad56-a667-7ec2-7a657ad3c99d", + "path": "z://MP4\\KaraFun Karaoke\\For You I Will - Monica Karaoke Version KaraFun.mp4", + "title": "For You I Will" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Faith Hill", + "playlist_title": "Let Me Let Go", + "found_song": { + "artist": "Tim McGraw ft. Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bc2f15e-1019-c649-6b24-a05d7b98adee", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw & Faith Hill - Let's Make Love.mp4", + "title": "Let's Make Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "OutKast", + "playlist_title": "Rosa Parks", + "found_song": { + "artist": "Outkast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04840abd-b4fe-b28a-d913-2e7105f98669", + "path": "z://MP4\\ZoomKaraokeOfficial\\Outkast - Roses.mp4", + "title": "Roses" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Tim McGraw", + "playlist_title": "For A Little While", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Ty Herndon", + "playlist_title": "It Must Be Love", + "found_song": { + "artist": "Madness", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7b2581a-d92e-760c-2e96-ee89089f3d4b", + "path": "z://MP4\\KaraokeOnVEVO\\Madness - It Must Be Love.mp4", + "title": "It Must Be Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "R. Kelly Featuring Keith Murray", + "playlist_title": "Home Alone", + "found_song": { + "artist": "R. Kelly ft. Keith Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad937fe0-5968-1806-8cdb-ab3f6c87b250", + "path": "z://MP4\\KaraokeOnVEVO\\R. Kelly Featuring Keith Murray - Home Alone.mp4", + "title": "Home Alone" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Reba", + "playlist_title": "Wrong Night", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "e6628aa6-3154-7d17-3b7a-cb9f95ae7664", + "path": "z://MP4\\Let's Sing Karaoke\\McEntire, Reba - Wrong Night (Karaoke & Lyrics).mp4", + "title": "Wrong Night" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "It s All Been Done", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "8b016b3d-74d9-6027-0526-1bca98ae3743", + "path": "z://CDG\\Various\\Barenaked Ladies - Its All Been Done.mp3", + "title": "Its All Been Done" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "R. Kelly", + "playlist_title": "When A Woman s Fed Up", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "090ea035-9580-039d-0b17-295f18e82874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Woman Loves - R. Kelly.mp4", + "title": "When A Woman Loves" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Cake", + "playlist_title": "Never There", + "found_song": { + "artist": "Mary J Blige ft. Drake", + "disabled": false, + "favorite": false, + "guid": "1230fab8-be4f-96fe-4c6f-b485508fc451", + "path": "z://MP4\\Let's Sing Karaoke\\Mary J Blige & Drake - One, The (Karaoke & Lyrics).mp4", + "title": "One, The" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Whitney Houston Feat. Faith Evans", + "playlist_title": "Heartbreak Hotel", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c69439b3-00d4-bd74-7d20-bf0908a922c1", + "path": "z://MP4\\KaraokeOnVEVO\\Whitney Houston - Heartbreak Hotel.mp4", + "title": "Heartbreak Hotel" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "matchbox 20", + "playlist_title": "Back 2 Good", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "c9097356-7ca0-1569-7f9c-617a4c830740", + "path": "z://MP4\\Let's Sing Karaoke\\Matchbox Twenty - Back To Good (Karaoke & Lyrics) (2).mp4", + "title": "Back To Good" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Xscape", + "playlist_title": "My Little Secret", + "found_song": { + "artist": "Smash", + "disabled": false, + "favorite": false, + "guid": "3fee2d6d-65a3-a5f3-d927-d60f5fd247a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Our Little Secret - Smash.mp4", + "title": "Our Little Secret" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Garth Brooks", + "playlist_title": "It s Your Song", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "18386e49-fe59-2210-cfb3-fb7f6018ddb0", + "path": "z://MP4\\King of Karaoke\\Garth Brooks - All Day Long - King of Karaoke.mp4", + "title": "All Day Long" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "A Little Past Little Rock", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "1b35cc99-ce09-c30a-71ec-190d1f8ee709", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Last Call (Karaoke).mp4", + "title": "Last Call" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Alabama", + "playlist_title": "How Do You Fall In Love", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "412eb8d9-d6a3-f762-10b5-a84cc1c60cd9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lady Down on Love - Alabama.mp4", + "title": "Lady Down on Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Total Featuring Missy Elliott", + "title": "Trippin", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "title": "Can I Get A...", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "112 Featuring Mase", + "title": "Love Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Dru Hill Featuring Redman", + "title": "How Deep Is Your Love", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Monifah", + "title": "Touch It", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "These Are The Times", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mr. Short Khop", + "title": "Pushin Weight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Brian McKnight Featuring Tone", + "title": "Hold Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Aaron Hall", + "title": "All The Places (I Will Kiss You)", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "title": "Ghetto Cowboy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "TQ", + "title": "Westside", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Keith Sweat Featuring Snoop Dogg", + "title": "Come And Get With Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Voices Of Theory", + "title": "Wherever You Go", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brandy", + "title": "Angel In Disguise", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Shaggy Featuring Janet", + "title": "Luv Me, Luv Me", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Case", + "title": "Faded Pictures", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Everything", + "title": "Hooch", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "title": "Lean On Me", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Willie Max Featuring Raphael Saadiq", + "title": "Can t Get Enough", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "title": "Here We Come", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Travis Tritt", + "title": "If I Lost You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 27, + "missing_count": 26, + "needs_manual_review": 27 + } + }, + { + "playlist_title": "1997 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Martina McBride", + "playlist_title": "A Broken Wing", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "2da3ac67-df89-7d00-5890-f83404e28899", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Broken Wing - Martina McBride.mp4", + "title": "A Broken Wing" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alan Jackson", + "playlist_title": "Between The Devil And Me", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b2dc9d5-4af9-999f-75bd-d956b0dabca1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Between The Devil And Me.mp4", + "title": "Between The Devil And Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Tim McGraw", + "playlist_title": "Just To See You Smile", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "a7e7074a-8c61-fb5e-75a3-f1b1665f0d55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just To See You Smile - Tim McGraw.mp4", + "title": "Just To See You Smile" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Imagine That", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e79eca0a-dd37-c078-ec8b-a7b6eee7b5b6", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Imagine That.mp4", + "title": "Imagine That" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "You've Got To Talk To Me", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ffb7642-a640-b09c-dfb0-91ec891cd76e", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Youve Got To Talk To Me.mp4", + "title": "You've Got To Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Alabama", + "playlist_title": "Of Course I'm Alright", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba66ed64-58d9-4329-58b1-b494c2b140db", + "path": "z://CDG\\Various\\Alabama - Of Course I'm Alright.mp3", + "title": "Of Course I'm Alright" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Chance", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11d4f381-243a-70f0-013e-d0a2c87baba6", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Chance.mp4", + "title": "A Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Garth Brooks", + "playlist_title": "Longneck Bottle", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d83dca3-8405-cbd4-4bb5-1ed03bafdd46", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - Dance.mp4", + "title": "Dance" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Michael Peterson", + "playlist_title": "From Here To Eternity", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "ba21d90a-ec7c-2d27-3179-a3d4de626649", + "path": "z://CDG\\Various\\Frank Sinatra - From Here To Eternity.mp3", + "title": "From Here To Eternity" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Trace Adkins", + "playlist_title": "The Rest Of Mine", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db940c6c-be07-8136-e87a-427e6f5651b4", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Chrome.mp4", + "title": "Chrome" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Angel In My Eyes", + "found_song": { + "artist": "Bill Engvall, John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "2863e387-3d0e-f0f7-1e14-036f07223a53", + "path": "z://MP4\\KaraokeOnVEVO\\Bill Engvall, John Michael Montgomery - Warning Signs (Karaoke).mp4", + "title": "Warning Signs" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "He's Got You", + "found_song": { + "artist": "Brooks n Dunn", + "disabled": false, + "favorite": false, + "guid": "d00b6494-b6a0-2886-8485-b0dc85374dd4", + "path": "z://MP4\\KtvEntertainment\\Brooks n Dunn - Neon Moon Karaoke Lyrics.mp4", + "title": "Neon Moon" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "On The Side Of Angels", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "c09a1cfe-afe4-3c6d-f2bb-f42b5a2e2bb6", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Ten Thousand Angels Cried (Karaoke).mp4", + "title": "Ten Thousand Angels Cried" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Lonestar", + "playlist_title": "You Walked In", + "found_song": { + "artist": "Thunder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3195e862-da1b-3f79-a89f-5226fa131dd0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thunder - Love Walked In.mp4", + "title": "Love Walked In" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Lila McCann", + "playlist_title": "I Wanna Fall In Love", + "found_song": { + "artist": "Jane Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b35096cc-b213-e119-bad4-e62ed19339fe", + "path": "z://MP4\\VocalStarKaraoke\\Jane Child - I Dont Wanna Fall In Love.mp4", + "title": "I Dont Wanna Fall In Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "George Strait", + "playlist_title": "Today My World Slipped Away", + "found_song": { + "artist": "Vern Gosdin", + "disabled": false, + "favorite": false, + "guid": "97aab77f-4956-40a4-4a8b-fdda26e4c9c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Today My World Slipped Away - Vern Gosdin.mp4", + "title": "Today My World Slipped Away" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Clint Black", + "playlist_title": "Something That We Do", + "found_song": { + "artist": "Cilla Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a2702f8-b9d2-8a45-117b-48225a8676b0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cilla Black - Something Tells Me.mp4", + "title": "Something Tells Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Pam Tillis", + "title": "Land Of The Living", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Patty Loveless", + "title": "You Don't Seem To Miss Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Ty Herndon", + "title": "I Have To Surrender", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Anita Cochran (Duet With Steve Wariner)", + "title": "What If I Said", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 10, + "missing_count": 4, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "1997 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "How Do I Live", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "12d23c44-3998-1567-f7b9-2ebd95261028", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - How Do I Live (Karaoke Version).mp4", + "title": "How Do I Live" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Usher", + "playlist_title": "You Make Me Wanna...", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "30ef8c11-d226-eeb8-7b7c-528b068d372e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Wanna - Usher.mp4", + "title": "You Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Robyn", + "playlist_title": "Show Me Love", + "found_song": { + "artist": "Robyn", + "disabled": false, + "favorite": false, + "guid": "f80b7421-8dfd-9175-0585-5def9010f6fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show Me Love - Robyn.mp4", + "title": "Show Me Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Savage Garden", + "playlist_title": "Truly Madly Deeply", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "27cc5736-483c-57a4-adfe-b86fe488dd6a", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - Truly Madly Deeply (Karaoke Version).mp4", + "title": "Truly Madly Deeply" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chumbawamba", + "playlist_title": "Tubthumping", + "found_song": { + "artist": "Chumbawamba", + "disabled": false, + "favorite": false, + "guid": "1629101c-927d-4f89-bfcd-61bd5843744a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tubthumping - Chumbawamba.mp4", + "title": "Tubthumping" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Boyz II Men", + "playlist_title": "A Song For Mama", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "697090d4-7846-6aff-0b46-ab4bb2dffc43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Song For Mama - Boyz II Men.mp4", + "title": "A Song For Mama" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Hanson", + "playlist_title": "I Will Come To You", + "found_song": { + "artist": "Hanson", + "disabled": false, + "favorite": false, + "guid": "2dc9df59-d5ab-ef94-61cb-cb403a974b74", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF116\\Hanson - I Will Come To You - SF116 - 09.mp3", + "title": "I Will Come To You" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paula Cole", + "playlist_title": "I Don't Want To Wait", + "found_song": { + "artist": "Paula Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a487d985-c18a-0676-b831-be10c6f17c3a", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Cole - I Dont Want To Wait.mp4", + "title": "I Don't Want To Wait" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Spice Girls", + "playlist_title": "Spice Up Your Life", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "36d77336-8e65-027a-9cba-0d3b05fc8955", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spice Up Your Life - Spice Girls.mp4", + "title": "Spice Up Your Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Boyz II Men", + "playlist_title": "4 Seasons Of Loneliness", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71c322c6-23b6-6ea3-78d0-bdf5a5ae5893", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - 4 Seasons Of Loneliness.mp4", + "title": "4 Seasons Of Loneliness" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Semi-Charmed Life", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "0144ba36-690c-9ef3-e041-1b22258d6ead", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - Semi-Charmed Life (Karaoke).mp4", + "title": "Semi-Charmed Life" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Quit Playing Games (With My Heart)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "ba3a1065-3a20-d608-eb91-077f12abafe0", + "path": "z://CDG\\Sunfly Collection\\Sunfly 90s\\SF90-05\\SFD9015-03 - Backstreet Boys - Quit Playing Games With My Heart.mp3", + "title": "Quit Playing Games With My Heart" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Third Eye Blind", + "playlist_title": "How's It Going To Be", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "d4ac8b68-c270-54da-338c-5ac7221b69a5", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - How's It Going To Be (Karaoke).mp4", + "title": "How's It Going To Be" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aqua", + "playlist_title": "Lollipop (Candyman)", + "found_song": { + "artist": "Aqua", + "disabled": false, + "favorite": false, + "guid": "b2e351ac-f412-7c71-31e0-897089184752", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lollipop (Candyman) - Aqua.mp4", + "title": "Lollipop (Candyman)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sister Hazel", + "playlist_title": "All For You", + "found_song": { + "artist": "Sister Hazel", + "disabled": false, + "favorite": false, + "guid": "dd6dc0d4-af93-0ff4-a0e5-fac514a99149", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All For You - Sister Hazel.mp4", + "title": "All For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Destiny's Child", + "playlist_title": "No, No, No", + "found_song": { + "artist": "Destiny's Child & Wyclef Jean", + "disabled": false, + "favorite": false, + "guid": "4b2c3cb2-4bb4-d1dc-1cdf-335c96f639b3", + "path": "z://CDG\\Various\\Destiny's Child & Wyclef Jean - No, No, No.mp3", + "title": "No, No, No" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Building A Mystery", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "df47fb01-ab02-be3d-1b84-d919304dcdce", + "path": "z://MP4\\KtvEntertainment\\Sarah McLachlan - Building A Mystery (Karaoke without Vocal).mp4", + "title": "Building A Mystery" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Honey", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "0fbb398a-4556-2024-e433-798be7767306", + "path": "z://CDG\\Various\\Mariah Carey - Honey.mp3", + "title": "Honey" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "Invisible Man", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "380e23f1-ee75-f60d-4f1c-6299b0c0fdf4", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Invisible Man.mp4", + "title": "Invisible Man" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Spice Girls", + "playlist_title": "2 Become 1", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "7ce8bb9b-0ff9-2fda-b76d-2120c39b1868", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - 2 Become 1 (Karaoke Version).mp4", + "title": "2 Become 1" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Everything", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36bfd2b8-fd25-3be7-a5ec-e77b2e156f0e", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Everything.mp4", + "title": "Everything" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Myers", + "playlist_title": "Kiss The Rain", + "found_song": { + "artist": "Billie Myers", + "disabled": false, + "favorite": false, + "guid": "305f2989-f5cd-d8c1-05dc-5566f3860ca1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF120\\Billie Myers - Kiss The Rain - SF120 - 08.mp3", + "title": "Kiss The Rain" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "d3c68631-b543-14aa-10ce-320bec9d542f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Light Up My Life - LeAnn Rimes.mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Reba McEntire", + "playlist_title": "What If", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70b78014-e839-779e-9e43-d0df767cb8bd", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What If.mp4", + "title": "What If" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "En Vogue", + "playlist_title": "Too Gone, Too Long", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ae06bb5-595b-2eb2-deb9-3c7f4b3ec6f2", + "path": "z://CDG\\Various\\En Vogue - Too Gone, Too Long.mp3", + "title": "Too Gone, Too Long" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Prodigy", + "playlist_title": "Smack My Bitch Up", + "found_song": { + "artist": "Prodigy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49899d7d-4600-6229-8e09-5fcf56064a87", + "path": "z://CDG\\SBI\\SBI-01\\SB07120 - Prodigy - Smack My Bitch Up.mp3", + "title": "Smack My Bitch Up" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Deana Carter", + "playlist_title": "Did I Shave My Legs For This?", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c495cdfc-3e5c-6a4b-eeb8-2a17b5430480", + "path": "z://MP4\\VocalStarKaraoke\\Deana Carter - Did I Shave My Legs For This.mp4", + "title": "Did I Shave My Legs For This" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Elton John", + "playlist_title": "Candle In The Wind 1997/Something About The Way You Look Tonight", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "141c298c-52b3-db4c-d645-6386e66aba02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Something About The Way You Look Tonight - Elton John.mp4", + "title": "Something About The Way You Look Tonight" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Janet", + "playlist_title": "Together Again", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "1ab0c72c-0d3b-843b-2497-e98484fab0e9", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Janet - Together Again (Karaoke & Lyrics) (2).mp4", + "title": "Together Again" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Mase", + "playlist_title": "Feel So Good", + "found_song": { + "artist": "Mel B", + "disabled": false, + "favorite": false, + "guid": "99c61fbc-f0ae-3283-37f9-c577f4262379", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF176\\Mel B - Feel So Good - SF176 - 08.mp3", + "title": "Feel So Good" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Dru Hill", + "playlist_title": "We're Not Making Love No More", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "7a6f3070-c541-f0e4-3e31-03909a417317", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - We're Not Making Love Anymore - SFG042 - 03.mp3", + "title": "We're Not Making Love Anymore" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Jewel", + "playlist_title": "Foolish Games/You Were Meant For Me", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16e2301a-2baf-36ac-84e9-8dbd7958ba9a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jewel - You Were Meant For Me.mp4", + "title": "You Were Meant For Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Lisa Loeb", + "playlist_title": "I Do", + "found_song": { + "artist": "Lisa Loeb", + "disabled": false, + "favorite": false, + "guid": "042aa008-c0af-7377-75c7-53e63874d38b", + "path": "z://MP4\\KaraokeOnVEVO\\Lisa Loeb - Underdog (Karaoke).mp4", + "title": "Underdog" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Total", + "playlist_title": "What About Us", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "guid": "341c2a6a-c172-67c0-bb1f-729d18c2d313", + "path": "z://MP4\\Let's Sing Karaoke\\Brandy - What About Us (Karaoke & Lyrics) (2).mp4", + "title": "What About Us" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "playlist_title": "Mo Money Mo Problems", + "found_song": { + "artist": "The Notorious B.I.G.", + "disabled": false, + "favorite": false, + "guid": "b0f6da98-e1c6-a5a3-f5f7-3e27b84bc915", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mo Money Mo Problems - The Notorious B.I.G..mp4", + "title": "Mo Money Mo Problems" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "She Moves", + "playlist_title": "Breaking All The Rules", + "found_song": { + "artist": "Emeli Sandé", + "disabled": false, + "favorite": false, + "guid": "a8220cd7-f3aa-e7da-ba49-6775ade6da14", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breaking The Law - Emeli Sandé.mp4", + "title": "Breaking The Law" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Nu Flavor", + "playlist_title": "Heaven", + "found_song": { + "artist": "Calum Scott, Lyodra", + "disabled": false, + "favorite": false, + "guid": "c061c8ca-c535-31ce-9610-26ab6f83b95f", + "path": "z://MP4\\Sing King Karaoke\\Calum Scott, Lyodra - Heaven (Karaoke Version).mp4", + "title": "Heaven" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "The Notorious B.I.G.", + "playlist_title": "Going Back To Cali", + "found_song": { + "artist": "The Notorious B.I.G.", + "disabled": false, + "favorite": false, + "guid": "89d77834-e0cd-a3af-08b9-bfec5276a740", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Big Poppa - The Notorious B.I.G..mp4", + "title": "Big Poppa" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Bone Thugs-N-Harmony", + "playlist_title": "If I Could Teach The World", + "found_song": { + "artist": "Bone Thugs-N-Harmony", + "disabled": false, + "favorite": false, + "guid": "32a68771-5d4c-7565-4c59-66913f88d8e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Crossroads - Bone Thugs-N-Harmony.mp4", + "title": "The Crossroads" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Puff Daddy & Faith Evans Featuring 112", + "playlist_title": "I'll Be Missing You", + "found_song": { + "artist": "Diddy, Faith Evans, 112", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e9cd7e8-f7bb-a924-c046-2f84c5e38da6", + "path": "z://MP4\\Sing King Karaoke\\Diddy, Faith Evans, 112 - Ill Be Missing You.mp4", + "title": "I'll Be Missing You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Metallica", + "playlist_title": "The Memory Remains", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "7eb0cde4-545c-1166-86d1-60905de6d2dc", + "path": "z://MP4\\KaraFun Karaoke\\The Unforgiven - Metallica Karaoke Version KaraFun.mp4", + "title": "The Unforgiven" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Gary Barlow", + "playlist_title": "So Help Me Girl", + "found_song": { + "artist": "Gary Barlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "886d6d73-3304-f0f3-001d-29d03b39068b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gary Barlow - Let Me Go.mp4", + "title": "Let Me Go" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Davina", + "playlist_title": "So Good", + "found_song": { + "artist": "Zara Larsson ft. Ty Dolla $ign", + "disabled": false, + "favorite": false, + "guid": "650a433b-24d0-1aff-750d-128b3a0384e9", + "path": "z://MP4\\Sing King Karaoke\\Zara Larsson ft. Ty Dolla $ign - So Good (Karaoke Version).mp4", + "title": "So Good" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Olive", + "playlist_title": "You're Not Alone", + "found_song": { + "artist": "Joe & Jake", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "46229df1-b368-5dc0-55fd-e9740f4ca428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF363\\Joe & Jake - You're Not Alone - SF363 - 03.mp3", + "title": "You're Not Alone" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "David Bowie", + "playlist_title": "I'm Afraid Of Americans", + "found_song": { + "artist": "Bowie, David", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13670ac3-4535-f03d-26b6-64e133d67c57", + "path": "z://CDG\\SBI\\SBI-04\\SB15358 - David Bowie - I'm Afraid Of Americans.mp3", + "title": "I'm Afraid Of Americans" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Amber", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Playa", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8be9d539-f39e-aa38-0c2d-51587b936171", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna - Don't Stop The Music.mp4", + "title": "Don't Stop The Music" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Martina McBride With Jim Brickman", + "playlist_title": "Valentine", + "found_song": { + "artist": "Jim Brickman, Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5482f9d-6549-9a16-5adc-0423a7c8014b", + "path": "z://MP4\\Sing King Karaoke\\Jim Brickman, Martina McBride - Valentine.mp4", + "title": "Valentine" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Clint Black", + "playlist_title": "Something That We Do", + "found_song": { + "artist": "Cilla Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a2702f8-b9d2-8a45-117b-48225a8676b0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cilla Black - Something Tells Me.mp4", + "title": "Something Tells Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Daft Punk", + "playlist_title": "Around The World", + "found_song": { + "artist": "A T C", + "disabled": false, + "favorite": false, + "guid": "8c4245b2-a07f-50ae-df77-1827abb1c77d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF196\\A T C - Around The World - SF196 - 08.mp3", + "title": "Around The World" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Trace Adkins", + "playlist_title": "The Rest Of Mine", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db940c6c-be07-8136-e87a-427e6f5651b4", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Chrome.mp4", + "title": "Chrome" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Ultra Nate", + "playlist_title": "Free", + "found_song": { + "artist": "Ultra Naté", + "disabled": false, + "favorite": false, + "guid": "bc380b81-faec-98df-773e-f2671ba370a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free - Ultra Naté.mp4", + "title": "Free" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Sublime", + "playlist_title": "Doin' Time", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "guid": "ee7274b7-49a8-253c-58fe-8a6814d546fd", + "path": "z://MP4\\Karaoke Sing Sing\\Blondie - Long Time (Karaoke Version).mp4", + "title": "Long Time" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "Brian Wilson", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "ba139217-00c9-a399-35ec-eb3f80bbc048", + "path": "z://MP4\\Sing King Karaoke\\Barenaked Ladies - One Week (Karaoke Version).mp4", + "title": "One Week" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "title": "Been Around The World", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "LSG", + "title": "My Body", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Somethin' For The People Featuring Trina & Tamara", + "title": "My Love Is The Shhh!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Aaliyah", + "title": "The One I Gave My Heart To", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Allure Featuring 112", + "title": "All Cried Out", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Next", + "title": "Butta Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Uncle Sam", + "title": "I Don't Ever Want To See You Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "title": "Sock It 2 Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "H-Town", + "title": "They Like It Slow", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Los Umbrellos", + "title": "No Tengo Dinero", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Shawn Colvin", + "title": "Sunny Came Home", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Milestone", + "title": "I Care 'Bout You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Richard Marx & Donna Lewis", + "title": "At The Beginning", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Imani Coppola", + "title": "Legend Of A Cowgirl", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Master P Featuring Pimp C And The Shocker", + "title": "I Miss My Homies", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Alana Davis", + "title": "32 Flavors", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bee Gees", + "title": "Still Waters (Run Deep)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "WC From Westside Connection", + "title": "Just Clownin'", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mack 10", + "title": "Backyard Boogie", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Big Punisher", + "title": "I'm Not A Player", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Sting & The Police", + "title": "Roxanne `97 - Puff Daddy Remix", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Insane Clown Posse", + "title": "Santa's A Fat Bitch", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kimberly Scott", + "title": "Tuck Me In", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brian McKnight Featuring Mase", + "title": "You Should Be Mine (Don't Waste Your Time)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "K-Ci & JoJo", + "title": "Last Night's Letter", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Diana King", + "title": "L-L-Lies", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "title": "4, 3, 2, 1", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Naughty By Nature", + "title": "Mourn You Til I Join You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "KAI", + "title": "Say You'll Stay", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "2Pac", + "title": "I Wonder If Heaven Got A Ghetto", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Lord Tariq & Peter Gunz", + "title": "Deja Vu [Uptown Baby]", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "BeBe Winans", + "title": "In Harm's Way", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "4.0", + "title": "Have A Little Mercy", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "K.P. & Envyi", + "title": "Swing My Way", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Changing Faces (Featuring Jay-Z)", + "title": "All Of My Days", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gang Starr", + "title": "You Know My Steez", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Queen Pen Featuring Teddy Riley", + "title": "Man Behind The Music", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "LL Cool J", + "title": "Phenomenon", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Le Click Featuring Kayo", + "title": "Don't Go", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Yvette Michele", + "title": "DJ Keep Playin' (Get Your Music On)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Billy Lawrence", + "title": "Up & Down", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 32, + "fuzzy_match_count": 27, + "missing_count": 41, + "needs_manual_review": 27 + } + }, + { + "playlist_title": "1996 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kevin Sharp", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "Kevin Sharp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a565f7d1-cbe3-a14a-4cdc-fefe8e6f8954", + "path": "z://MP4\\KaraokeOnVEVO\\Kevin Sharp - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Her Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "guid": "3131e475-e422-d82f-4807-7e3d6bbfca61", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Her Man (Karaoke).mp4", + "title": "Her Man" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "Is That A Tear", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "541f880c-ac8b-c853-0820-fa9a9faa609a", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Lawrence - Is That A Tear.mp4", + "title": "Is That A Tear" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "It's A Little Too Late", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9ccb9b41-81e3-106f-7249-9984b7ff90ae", + "path": "z://CDG\\Various\\Mark Chesnutt - It's A Little Too Late.mp3", + "title": "It's A Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Vince Gill", + "playlist_title": "Pretty Little Adriana", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "1de9187e-28b2-908f-4c89-36c89b8ee5a2", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Pretty Little Adriana (Karaoke).mp4", + "title": "Pretty Little Adriana" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "David Kersh", + "playlist_title": "Goodnight Sweetheart", + "found_song": { + "artist": "David Kersh", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a7812d-fe47-6929-629e-7543b0e7619e", + "path": "z://MP4\\KaraokeOnVEVO\\David Kersh - Goodnight Sweetheart.mp4", + "title": "Goodnight Sweetheart" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Deana Carter", + "playlist_title": "Strawberry Wine", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "guid": "b52ed86c-e90e-ba60-67ba-a749a36526ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Strawberry Wine - Deana Carter.mp4", + "title": "Strawberry Wine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "One Way Ticket (Because I Can)", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "c0298340-3461-3e7d-5c97-05efc7127f40", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - One Way Ticket (Because I Can) (Karaoke & Lyrics) (2).mp4", + "title": "One Way Ticket" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Reba McEntire", + "playlist_title": "The Fear Of Being Alone", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "4ae4cc67-66bc-92fd-ac37-57137eec7803", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Blue - Reba McEntire.mp4", + "title": "How Blue" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Garth Brooks", + "playlist_title": "That Ol' Wind", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8685ae60-9022-d8cc-e146-0500a41dc6c4", + "path": "z://CDG\\Various\\Garth Brooks - Right Now.mp3", + "title": "Right Now" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Big Love", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Mary Chapin Carpenter", + "playlist_title": "Let Me Into Your Heart", + "found_song": { + "artist": "Mary Chapin Carpenter", + "disabled": false, + "favorite": false, + "guid": "8c5cfc20-cf0e-758e-dd10-f0610b03ab4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He Thinks He ll Keep Her - Mary Chapin Carpenter.mp4", + "title": "He Thinks He ll Keep Her" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "Everybody Knows", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "8bf2431a-4d05-8703-23c4-bacd6e8545fd", + "path": "z://CDG\\Various\\Trisha Yearwood - Georgia Rain.mp3", + "title": "Georgia Rain" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Faith Hill", + "playlist_title": "I Can't Do That Anymore", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "265825ec-10d1-4574-109b-e0bd21542dff", + "path": "z://CDG\\Various\\Faith Hill - You Can't Lose Me.mp3", + "title": "You Can't Lose Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "A Man This Lonely", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "7ee8f668-dcb0-5d07-2d77-c235e9d2bdc4", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - A Man This Lonely (Karaoke).mp4", + "title": "A Man This Lonely" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "Tim McGraw", + "title": "Maybe We Should Just Sleep On It", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Clint Black", + "title": "Half Way Up", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bryan White", + "title": "That's Another Song", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rick Trevino", + "title": "Running Out Of Reasons To Run", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Daryle Singletary", + "title": "Amen Kind Of Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "title": "Maybe He'll Notice Her Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Randy Travis", + "title": "Would I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 8, + "missing_count": 7, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "1996 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Toni Braxton", + "playlist_title": "Un-Break My Heart", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "b13cec29-c219-4437-ce8a-f767b3994ab0", + "path": "z://MP4\\Sing King Karaoke\\Toni Braxton - Un-Break My Heart (Karaoke Version).mp4", + "title": "Un-Break My Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Merril Bainbridge", + "playlist_title": "Mouth", + "found_song": { + "artist": "Merril Bainbridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e160e516-184c-0699-82b2-965052be65b6", + "path": "z://MP4\\KaraokeOnVEVO\\Merril Bainbridge - Mouth.mp4", + "title": "Mouth" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Celine Dion", + "playlist_title": "It's All Coming Back To Me Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "397029ef-df5d-a935-fe32-4ebdd887a356", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - It's All Coming Back To Me Now.mp4", + "title": "It's All Coming Back To Me Now" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ginuwine", + "playlist_title": "Pony", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "guid": "1147893c-bc8e-798e-868b-ca57b06c1ee5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pony - Ginuwine.mp4", + "title": "Pony" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "No Mercy", + "playlist_title": "Where Do You Go", + "found_song": { + "artist": "No Mercy", + "disabled": false, + "favorite": false, + "guid": "3a8bd746-e6cd-c215-112f-521ba05036cd", + "path": "z://MP4\\Let's Sing Karaoke\\No Mercy - Where Do You Go (Karaoke & Lyrics).mp4", + "title": "Where Do You Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "When You Love A Woman", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f083763-cf14-49fc-bd5e-8b8199f98bc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Journey - When You Love A Woman.mp4", + "title": "When You Love A Woman" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Donna Lewis", + "playlist_title": "I Love You Always Forever", + "found_song": { + "artist": "Donna Lewis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1df6787c-f598-4ba9-d89c-70f41bb42cc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Lewis - I Love You Always Forever.mp4", + "title": "I Love You Always Forever" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Dishwalla", + "playlist_title": "Counting Blue Cars", + "found_song": { + "artist": "Dishwalla", + "disabled": false, + "favorite": false, + "guid": "4317b5dd-4103-0a2e-b976-6fefadffc742", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Counting Blue Cars - Dishwalla.mp4", + "title": "Counting Blue Cars" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Gina G", + "playlist_title": "Ooh Aah... Just A Little Bit", + "found_song": { + "artist": "Gina G", + "disabled": false, + "favorite": false, + "guid": "912ef8d9-fc1c-d24f-452e-aa5ddd389760", + "path": "z://MP4\\Sing King Karaoke\\Gina G - Ooh Aah... Just A Little Bit (Karaoke Version).mp4", + "title": "Ooh Aah... Just A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "John Mellencamp", + "playlist_title": "Key West Intermezzo (I Saw You First)", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4807906f-7552-88ad-fd13-6d331eceb78a", + "path": "z://MP4\\KaraokeOnVEVO\\John Mellencamp - Key West Intermezzo (I Saw You First.mp4", + "title": "Key West Intermezzo (I Saw You First)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Alanis Morissette", + "playlist_title": "You Learn/You Oughta Know", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a538df5-f46f-d1b0-d0f8-b4331380a82f", + "path": "z://MP4\\Sing King Karaoke\\Alanis Morissette - You LearnYou Oughta Know.mp4", + "title": "You Learn/You Oughta Know" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bryan Adams", + "playlist_title": "Let's Make A Night To Remember", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "654b25c4-1c1c-2b06-4e74-82b8ec29dbc9", + "path": "z://CDG\\Various\\Bryan Adams - Let's Make A Night To Remember.mp3", + "title": "Let's Make A Night To Remember" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Give Me One Reason", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "eac4f7a3-b806-d448-d0c7-024b384eb490", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Give Me One Reason (Karaoke Version).mp4", + "title": "Give Me One Reason" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Duncan Sheik", + "playlist_title": "Barely Breathing", + "found_song": { + "artist": "Duncan Sheik", + "disabled": false, + "favorite": false, + "guid": "56ea11d4-ba6c-c4ef-3d76-8739f04bf24f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Barely Breathing - Duncan Sheik.mp4", + "title": "Barely Breathing" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Better Than Ezra", + "playlist_title": "Desperately Wanting", + "found_song": { + "artist": "Better Than Ezra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe915c16-71c1-6089-f77c-3ba4444f8862", + "path": "z://MP4\\KaraokeOnVEVO\\Better Than Ezra - Desperately Wanting.mp4", + "title": "Desperately Wanting" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Metallica", + "playlist_title": "Hero Of The Day", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "b723db9c-a417-3eb5-6834-1fdf9558ae8d", + "path": "z://CDG\\Various\\Metallica - Hero Of The Day.mp3", + "title": "Hero Of The Day" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shania Twain", + "playlist_title": "God Bless The Child", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "20feffd6-307d-6775-1e67-2a415a9353a2", + "path": "z://CDG\\Various\\Shania Twain - God Bless The Child.mp3", + "title": "God Bless The Child" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Phil Collins", + "playlist_title": "Dance Into The Light", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b624256-73f5-e760-8d76-ca1dae51dd75", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Dance Into The Light.mp4", + "title": "Dance Into The Light" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Elton John", + "playlist_title": "You Can Make History (Young Again)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf915e43-f651-a124-af45-24bdf24a632e", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - You Can Make History (Young Again.mp4", + "title": "You Can Make History (Young Again)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Johnny Gill", + "playlist_title": "Let's Get The Mood Right", + "found_song": { + "artist": "Johnny Gill", + "disabled": false, + "favorite": false, + "guid": "b97f95df-e8f2-25ea-5734-e7185af4480e", + "path": "z://MP4\\Stingray Karaoke\\Let's Get The Mood Right in the style of Johnny Gill karaoke video.mp4", + "title": "Let's Get The Mood Right" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "R. Kelly", + "playlist_title": "I Believe I Can Fly (From \"Space Jam\")", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "881c4305-d189-4355-5227-d39037387161", + "path": "z://MP4\\Sing King Karaoke\\R Kelly - I Believe I Can Fly (Karaoke Version).mp4", + "title": "I Believe I Can Fly" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "En Vogue", + "playlist_title": "Don't Let Go (Love) (From \"Set It Off\")", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e6a86e8-4540-5b1a-70cb-c91258f43be5", + "path": "z://MP4\\ZoomKaraokeOfficial\\En Vogue - Dont Let Go (Love).mp4", + "title": "Don't Let Go (Love)" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "BLACKstreet (Featuring Dr. Dre)", + "playlist_title": "No Diggity", + "found_song": { + "artist": "Blackstreet, Dr Dre, Queen Pen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f060db59-8f3f-ce4a-4083-bfb650d70b3d", + "path": "z://MP4\\Sing King Karaoke\\Blackstreet, Dr Dre, Queen Pen - No Diggity.mp4", + "title": "No Diggity" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Believe In You And Me (From \"The Preacher's Wife\")", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6609a19-00a0-0eab-cbc6-db68953080a0", + "path": "z://MP4\\VocalStarKaraoke\\Whitney Houston - I Believe In You And Me.mp4", + "title": "I Believe In You And Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "New Edition", + "playlist_title": "I'm Still In Love With You", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "efa0f67c-ca06-ab29-7389-99d225fd13c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Still In Love With You - Al Green.mp4", + "title": "I m Still In Love With You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Los Del Rio", + "playlist_title": "Macarena (Bayside Boys Mix)", + "found_song": { + "artist": "Los Del Rio", + "disabled": false, + "favorite": false, + "guid": "38577c12-4ef6-04cd-b51b-ad1ef2a3172d", + "path": "z://MP4\\Sing King Karaoke\\Los Del Rio - Macarena (Karaoke Version).mp4", + "title": "Macarena" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Montell Jordan", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Keith Sweat", + "playlist_title": "Twisted", + "found_song": { + "artist": "Keith Sweat, Athena Cage", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87770788-5d82-0482-2384-244f915a7a3f", + "path": "z://MP4\\Sing King Karaoke\\Keith Sweat, Athena Cage - Nobody.mp4", + "title": "Nobody" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Dru Hill", + "playlist_title": "Tell Me (From \"Eddie\")", + "found_song": { + "artist": "Dru Hill", + "disabled": false, + "favorite": false, + "guid": "1d770308-e9f9-588c-2da6-4cf285f18786", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Dru - Tell Me (Karaoke & Lyrics).mp4", + "title": "Tell Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Eric Clapton", + "playlist_title": "Change The World (From \"Phenomenon\")", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "guid": "e29f4352-3606-f5ed-0712-b4e3b754e380", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Change The World - Eric Clapton.mp4", + "title": "Change The World" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Amber", + "playlist_title": "This Is Your Night", + "found_song": { + "artist": "Standard", + "disabled": false, + "favorite": false, + "guid": "c452b3d2-3e0f-f209-ce4e-6d7ff6cb4079", + "path": "z://MP4\\Let's Sing Karaoke\\Standard - This Land Is Your Land (Karaoke & Lyrics).mp4", + "title": "This Land Is Your Land" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Nas", + "playlist_title": "Street Dreams", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bbad07f-33c9-f35a-a0b1-e885b5b67418", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Madonna", + "playlist_title": "You Must Love Me (From \"Evita\")", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "f79ebdea-840d-49df-be42-31cd15b1544d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Must Love Me - Madonna.mp4", + "title": "You Must Love Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Toni Braxton", + "playlist_title": "You're Makin' Me High/Let It Flow", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a981e357-0e1a-7499-97ef-28bc3b26b804", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF060\\Toni Braxton - You're Making Me High - SF060 - 09.mp3", + "title": "You're Making Me High" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Jewel", + "playlist_title": "Foolish Games/You Were Meant For Me", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16e2301a-2baf-36ac-84e9-8dbd7958ba9a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jewel - You Were Meant For Me.mp4", + "title": "You Were Meant For Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "OutKast", + "playlist_title": "ATLiens", + "found_song": { + "artist": "Outkast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04840abd-b4fe-b28a-d913-2e7105f98669", + "path": "z://MP4\\ZoomKaraokeOfficial\\Outkast - Roses.mp4", + "title": "Roses" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Cranberries", + "playlist_title": "When You're Gone/Free To Decide", + "found_song": { + "artist": "The Cranberries", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f7b8e11-a7df-fbf0-95a9-16de02e42673", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Cranberries - When Youre Gone.mp4", + "title": "When You're Gone" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Smashing Pumpkins", + "playlist_title": "Thirty-Three", + "found_song": { + "artist": "The Smashing Pumpkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe0a5021-88c7-37ab-4904-f7fa84620ad5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Smashing Pumpkins - 1979.mp4", + "title": "1979" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Donell Jones", + "playlist_title": "Knocks Me Off My Feet", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "e06198b2-db8a-c676-6426-34f519ed5ed3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Knocks Me Off My Feet - Stevie Wonder.mp4", + "title": "Knocks Me Off My Feet" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Donna Lewis", + "playlist_title": "Without Love", + "found_song": { + "artist": "Nick Lowe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "253c8208-49ab-a429-4800-9a8822b85479", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nick Lowe - Without Love.mp4", + "title": "Without Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Rod Stewart", + "playlist_title": "If We Fall In Love Tonight", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "f89fb38b-c0f5-036f-8bec-87d0e03d205d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way You Look Tonight - Rod Stewart.mp4", + "title": "The Way You Look Tonight" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Gloria Estefan", + "playlist_title": "I'm Not Giving You Up", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "0e6a7366-7f37-e18d-8127-821292fedf09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anything For You - Gloria Estefan.mp4", + "title": "Anything For You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "The Blackout Allstars", + "playlist_title": "I Like It", + "found_song": { + "artist": "Gerry & The Pacemakers", + "disabled": false, + "favorite": false, + "guid": "926281c8-8405-62b8-dd5b-c24127f05265", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Like It - Gerry & The Pacemakers.mp4", + "title": "I Like It" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Rockell", + "playlist_title": "I Fell In Love", + "found_song": { + "artist": "Andrea Bocelli", + "disabled": false, + "favorite": false, + "guid": "82e61219-7b73-069b-b7ad-1e6cdd33fede", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I Fall in Love - Andrea Bocelli.mp4", + "title": "When I Fall in Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Los Del Rio", + "playlist_title": "Macarena Christmas", + "found_song": { + "artist": "Los Del Rio", + "disabled": false, + "favorite": false, + "guid": "38577c12-4ef6-04cd-b51b-ad1ef2a3172d", + "path": "z://MP4\\Sing King Karaoke\\Los Del Rio - Macarena (Karaoke Version).mp4", + "title": "Macarena" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Da Brat", + "playlist_title": "Sittin' On Top Of The World", + "found_song": { + "artist": "Delta Goodrem", + "disabled": false, + "favorite": false, + "guid": "e4c9775b-aef0-9a20-1607-ea563958b356", + "path": "z://CDG\\Big Hits Karaoke\\BHK031\\BHK031-05 - Delta Goodrem - Sitting On Top Of The World.mp3", + "title": "Sitting On Top Of The World" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "The Braids", + "playlist_title": "Bohemian Rhapsody (From \"High School High\")", + "found_song": { + "artist": "The Braids", + "disabled": false, + "favorite": false, + "guid": "c9733e93-79ab-5058-eb53-b75c6a4664a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bohemian Rhapsody - The Braids.mp4", + "title": "Bohemian Rhapsody" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Kenny G", + "playlist_title": "The Moment", + "found_song": { + "artist": "Kenny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa27672b-3db4-86ee-7127-b28f74409d99", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny - The Bump.mp4", + "title": "The Bump" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "R.E.M.", + "playlist_title": "Bittersweet Me", + "found_song": { + "artist": "Fuel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d60f815-5105-b3eb-6201-16bf2a62f519", + "path": "z://MP4\\KaraokeOnVEVO\\Fuel - Bittersweet.mp4", + "title": "Bittersweet" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "The Original", + "playlist_title": "I Luv U Baby", + "found_song": { + "artist": "Rosie ft. The Originals", + "disabled": false, + "favorite": false, + "guid": "c9236cc2-6e87-6ee9-9256-59f3c86bf3f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angel Baby - Rosie & The Originals.mp4", + "title": "Angel Baby" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Le Click", + "playlist_title": "Tonight Is The Night", + "found_song": { + "artist": "Outasight", + "disabled": false, + "favorite": false, + "guid": "52edc9ce-31cb-afba-0100-27d7b1c0b541", + "path": "z://CDG\\Big Hits Karaoke\\BHK031\\BHK031-03 - Outasight - Tonight Is The Night.mp3", + "title": "Tonight Is The Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Melissa Etheridge", + "playlist_title": "Nowhere To Go", + "found_song": { + "artist": "Melissa Etheridge", + "disabled": false, + "favorite": false, + "guid": "098d39c4-0c89-4727-db74-1c6285b440de", + "path": "z://MP4\\KaraokeOnVEVO\\Melissa Etheridge - Come To My Window (Karaoke).mp4", + "title": "Come To My Window" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Susanna Hoffs", + "playlist_title": "All I Want", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2b5d93a-b225-fa84-31e6-a8f0cf32c451", + "path": "z://MP4\\KaraokeOnVEVO\\Kansas - All I Wanted.mp4", + "title": "All I Wanted" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "The Wonders", + "playlist_title": "That Thing You Do! (From \"That Thing You Do!\")", + "found_song": { + "artist": "The Wonders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c28cf477-71e6-ad76-328b-f75a6792c56a", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Wonders - All My Only Dreams (from That Thing You Do).mp4", + "title": "All My Only Dreams (from That Thing You Do)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "New Edition", + "playlist_title": "Hit Me Off", + "found_song": { + "artist": "New Edition", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9dcd1472-3cbd-b3a3-42bd-a7d013fd7f1e", + "path": "z://CDG\\SBI\\SBI-03\\SB23442 - New Edition - Cool It Now.mp3", + "title": "Cool It Now" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "The Tony Rich Project", + "playlist_title": "Leavin'", + "found_song": { + "artist": "The Tony Rich Project", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ac69b78-f15a-3ede-66ed-ccad9cc046bc", + "path": "z://MP4\\KaraokeOnVEVO\\The Tony Rich Project - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "SWV", + "playlist_title": "Use Your Heart", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "814332ac-e0ca-6683-1510-271d46c4e146", + "path": "z://MP4\\KtvEntertainment\\Miranda Lambert - Use My Heart Karaoke Lyrics.mp4", + "title": "Use My Heart" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Angelina", + "playlist_title": "I Don't Need Your Love", + "found_song": { + "artist": "Calvin Harris ft. Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "1ff9789e-db15-5e58-2802-825063640e8f", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris and Ellie Goulding - I Need Your Love (Karaoke Version).mp4", + "title": "I Need Your Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Keith Sweat Featuring Athena Cage", + "title": "Nobody", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Barbra Streisand & Bryan Adams", + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Az Yet", + "title": "Last Night (From \"The Nutty Professor\")", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seal", + "title": "Fly Like An Eagle (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mint Condition", + "title": "What Kind Of Man Would I Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lil' Kim Featuring Puff Daddy", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "title": "This Is For The Lover In You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "dc Talk", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "MC Lyte", + "title": "Cold Rock A Party", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "702", + "title": "Steelo", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Ghost Town DJ's", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "112", + "title": "Come See Me", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "title": "Never Leave Me Alone", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "LL Cool J", + "title": "Loungin", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Westside Connection", + "title": "Bow Down", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Quad City DJ's", + "title": "C'mon N' Ride It (The Train)", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mack 10 & Tha Dogg Pound", + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jocelyn Enriquez", + "title": "Do You Miss Me", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Aaliyah", + "title": "If Your Girl Only Knew", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "title": "Missing You (From \"Set It Off\")", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Quad City DJ's", + "title": "Space Jam (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "K-Ci & JoJo", + "title": "How Could You (From \"Bulletproof\")", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Total", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Johnny Gill Featuring Roger Troutman", + "title": "It's Your Body", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Crush", + "title": "Jellyhead", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Richie Rich", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Isley Brothers Featuring Angela Winbush", + "title": "Floatin' On Your Love", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Goodfellaz", + "title": "Sugar Honey Ice Tea", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Luscious Jackson", + "title": "Naked Eye", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Wild Orchid", + "title": "At Night I Pray", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Luther Vandross", + "title": "I Can Make It Better", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Robert Miles Featuring Maria Nayler", + "title": "One And One", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Warren G Featuring Adina Howard", + "title": "What's Love Got To Do With It (From \"Supercop\")", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amanda Marshall", + "title": "Birmingham", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Redman Featuring K-Solo", + "title": "That's How It Is (It's Like That)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "dog's eye view", + "title": "Everything Falls Apart/Small Wonders", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "LL Cool J", + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lost Boyz", + "title": "Music Makes Me High", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 38, + "missing_count": 38, + "needs_manual_review": 38 + } + }, + { + "playlist_title": "1995 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Can't Be Really Gone", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c209f4b7-1664-74c1-0102-8e59cd1c1b3a", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Can't Be Really Gone (Karaoke).mp4", + "title": "Can't Be Really Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Tall, Tall Trees", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "6ab964a1-0d02-ef42-e5cf-13e139baa428", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tall Tall Trees - Alan Jackson.mp4", + "title": "Tall Tall Trees" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "George Strait", + "playlist_title": "Check Yes Or No", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fc3779e-a7a0-bb09-0023-b128a02d4eaf", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Check Yes Or No.mp4", + "title": "Check Yes Or No" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Cowboy Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6392670-92c1-dbac-5caf-65d6a23bd580", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Cowboy Love.mp4", + "title": "Cowboy Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lee Roy Parnell", + "playlist_title": "When A Woman Loves A Man", + "found_song": { + "artist": "Lee Roy Parnell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c06013bf-436b-6e9f-9ad4-b8ecd289ed02", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Roy Parnell - When A Woman Loves A Man.mp4", + "title": "When A Woman Loves A Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "In Pictures", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "644ea82d-7aba-5c83-ff6b-8d76edc4b6f9", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - In Pictures (Karaoke).mp4", + "title": "In Pictures" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Nothing", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "c511b036-4654-c7b6-b3df-32be0eb9c383", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Nothing (Karaoke).mp4", + "title": "Nothing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Collin Raye", + "playlist_title": "Not That Different", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7440bbb5-236a-6fbc-f077-ddc2524c4f6c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Collin Raye - Not That Different.mp4", + "title": "Not That Different" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wade Hayes", + "playlist_title": "What I Meant To Say", + "found_song": { + "artist": "Wade Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f72c0596-82a6-67b2-33e5-6d00da53ebb1", + "path": "z://MP4\\KaraokeOnVEVO\\Wade Hayes - What I Meant To Say.mp4", + "title": "What I Meant To Say" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Clay Walker", + "playlist_title": "Who Needs You Baby", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11fe398c-9d36-4000-319f-8af0b1621e95", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Who Needs You Baby.mp4", + "title": "Who Needs You Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Clint Black", + "playlist_title": "Life Gets Away", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "0f01c4fc-8306-24dc-aeb6-2bf3c825090a", + "path": "z://CDG\\Various\\Clint Black - Like The Rain.mp3", + "title": "Like The Rain" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Pam Tillis", + "playlist_title": "Deep Down", + "found_song": { + "artist": "Pam Tillis", + "disabled": false, + "favorite": false, + "guid": "86843bd4-cbaa-bc0b-9ea1-5661eab60b10", + "path": "z://MP4\\KaraokeOnVEVO\\Pam Tillis - So Wrong (Karaoke).mp4", + "title": "So Wrong" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Doug Stone", + "playlist_title": "Born In The Dark", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "guid": "e6f38802-6432-a330-a41c-04f847c0902d", + "path": "z://MP4\\Let's Sing Karaoke\\Stone, Doug - Fourteen Minutes Old (Karaoke & Lyrics).mp4", + "title": "Fourteen Minutes Old" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Joe Diffie", + "playlist_title": "Bigger Than The Beatles", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "f1e62a78-5243-7169-2c6c-5d57d44f7e41", + "path": "z://MP4\\Let's Sing Karaoke\\Diffie, Joe - Tougher Than Nails (Karaoke & Lyrics).mp4", + "title": "Tougher Than Nails" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Aaron Tippin", + "title": "That's As Close As I'll Get To Loving You", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Bryan White", + "title": "Rebecca Lynn", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jeff Carson", + "title": "The Car", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tracy Byrd", + "title": "Love Lessons", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Terri Clark", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Reba McEntire", + "title": "Ring On Her Finger, Time On Her Hands", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Doug Supernaw", + "title": "Not Enough Hours In The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Blackhawk", + "title": "Like There Ain't No Yesterday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "John Berry", + "title": "If I Had Any Pride Left At All", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 4, + "missing_count": 9, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1995 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "TLC", + "playlist_title": "Diggin' On You", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "9ba3ad2b-5c91-911b-70e0-a52859fef1ac", + "path": "z://CDG\\Various\\TLC - Diggin' On You.mp3", + "title": "Diggin' On You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Fantasy", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "863cb54f-defd-fb71-8123-bdeaf2ddd4c3", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Fantasy (Karaoke & Lyrics).mp4", + "title": "Fantasy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Deep Blue Something", + "playlist_title": "Breakfast At Tiffany's", + "found_song": { + "artist": "Deep Blue Something", + "disabled": false, + "favorite": false, + "guid": "6f00bfc8-0fff-2da6-3c9d-893cf11a76e6", + "path": "z://MP4\\Sing King Karaoke\\Deep Blue Something - Breakfast At Tiffany's (Karaoke Version).mp4", + "title": "Breakfast At Tiffany's" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Name", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9309e091-e2de-0f8c-8706-87242a74b023", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Name (Karaoke).mp4", + "title": "Name" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beatles", + "playlist_title": "Free As A Bird", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a79e30a7-e9fb-f23b-04dd-dca02ad67f46", + "path": "z://MP4\\KaraokeOnVEVO\\The Beatles - Free As A Bird (Karaoke).mp4", + "title": "Free As A Bird" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Madonna", + "playlist_title": "You'll See", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "c3583064-7769-bce4-b42a-437b435f9dc4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Madonna - You'll See - SF041 - 13.mp3", + "title": "You'll See" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Everything But The Girl", + "playlist_title": "Missing", + "found_song": { + "artist": "Everything But The Girl", + "disabled": false, + "favorite": false, + "guid": "35a867ac-8ee3-b8aa-64f0-c37c44400008", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Everything But The Girl - Missing - SF041 - 09.mp3", + "title": "Missing" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Janet Jackson", + "playlist_title": "Runaway", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6feb492-bf75-7102-f5a7-f49df958b570", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Runaway.mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Joan Osborne", + "playlist_title": "One Of Us", + "found_song": { + "artist": "Joan Osborne", + "disabled": false, + "favorite": false, + "guid": "49f80660-2b05-1221-7e4e-0987ce381f81", + "path": "z://MP4\\Sing King Karaoke\\Joan Osborne - One Of Us (Karaoke Version).mp4", + "title": "One Of Us" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ace Of Base", + "playlist_title": "Beautiful Life", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "044cb132-5730-773e-da90-405f45fd8903", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Beautiful Life - Ace Of Base.mp4", + "title": "Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Take That", + "playlist_title": "Back For Good", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "guid": "71f8e652-5027-da20-71f7-186f93fb0689", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Back For Good - Take That.mp4", + "title": "Back For Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "3T", + "playlist_title": "Anything", + "found_song": { + "artist": "3T", + "disabled": false, + "favorite": false, + "guid": "c2b097a8-1e6c-b03d-93f0-20969c2adf94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF049\\3t - Anything - SF049 - 02.mp3", + "title": "Anything" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Smashing Pumpkins", + "playlist_title": "Bullet With Butterfly Wings", + "found_song": { + "artist": "The Smashing Pumpkins", + "disabled": false, + "favorite": false, + "guid": "5cc6f681-ce9c-a035-4b69-4e4f1b0cfaee", + "path": "z://MP4\\KaraFun Karaoke\\Bullet with Butterfly Wings - The Smashing Pumpkins Karaoke Version KaraFun.mp4", + "title": "Bullet with Butterfly Wings" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Carnival", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "2e9a044d-9a41-0ab2-145a-641b9d6723a2", + "path": "z://MP4\\TheKARAOKEChannel\\Carnival in the Style of Natalie Merchant karaoke video with lyrics (no lead vocal).mp4", + "title": "Carnival" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Selena", + "playlist_title": "Dreaming Of You", + "found_song": { + "artist": "Selena", + "disabled": false, + "favorite": false, + "guid": "61b89b48-0f85-f916-254a-0c1af61e6683", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dreaming Of You - Selena.mp4", + "title": "Dreaming Of You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Del Amitri", + "playlist_title": "Roll To Me", + "found_song": { + "artist": "Del Amitri", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43e0c557-febd-c42e-02e3-f51b50496103", + "path": "z://MP4\\KaraokeOnVEVO\\Del Amitri - Roll To Me.mp4", + "title": "Roll To Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coolio", + "playlist_title": "Too Hot", + "found_song": { + "artist": "Coolio", + "disabled": false, + "favorite": false, + "guid": "acc9f7ee-2c18-1fcb-67d5-4db2f94278ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Coolio - Too Hot - SF034 - 15.mp3", + "title": "Too Hot" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Blues Traveler", + "playlist_title": "Run-Around", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "guid": "6c954706-738f-f6ff-0685-b44d03377a93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run-around - Blues Traveler.mp4", + "title": "Run-around" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Lie For You (And That's The Truth)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046e2639-6999-2b3e-6911-6b5ecf74a2ba", + "path": "z://MP4\\ZoomKaraokeOfficial\\Meat Loaf - Id Lie For You (And Thats The Truth).mp4", + "title": "I'd Lie For You (And That's The Truth)" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Elton John", + "playlist_title": "Blessed", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007c8824-8fe9-4b1c-9ddb-1ec0ec430c02", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Blues Traveler", + "playlist_title": "Hook", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61ce564-03a5-c5e8-bb41-0040c328e352", + "path": "z://MP4\\KaraokeOnVEVO\\Blues Traveler - Hook.mp4", + "title": "Hook" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Collective Soul", + "playlist_title": "The World I Know", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "64832aca-7520-2495-ff9e-2f61276b34c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The World I Know - Collective Soul.mp4", + "title": "The World I Know" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Wonder", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "8266ef4f-e02c-7ea7-1f1a-5c410428bfdc", + "path": "z://CDG\\Sound Choice Karaoke\\SC2089\\SC2089-05 - Merchant, Natalie - Wonder.mp3", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Collective Soul", + "playlist_title": "December", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "52e81675-7392-f61f-abe9-fead7853a3d6", + "path": "z://MP4\\KaraFun Karaoke\\December - Collective Soul Karaoke Version KaraFun.mp4", + "title": "December" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "All-4-One", + "playlist_title": "I Can Love You Like That", + "found_song": { + "artist": "All-4-One", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d32e590-8cf2-9af5-d08f-254c3972dd49", + "path": "z://MP4\\KaraokeOnVEVO\\All-4-One - I Can Love You Like That.mp4", + "title": "I Can Love You Like That" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Tony Rich Project", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "The Tony Rich Project", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ac69b78-f15a-3ede-66ed-ccad9cc046bc", + "path": "z://MP4\\KaraokeOnVEVO\\The Tony Rich Project - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Are Not Alone", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "dc6447ff-39a6-5f29-93c9-10b1a01815b6", + "path": "z://MP4\\KaraFun Karaoke\\You Are Not Alone - Michael Jackson Karaoke Version KaraFun.mp4", + "title": "You Are Not Alone" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Bush", + "playlist_title": "Comedown", + "found_song": { + "artist": "Bush", + "disabled": false, + "favorite": false, + "guid": "cbe30b9a-279e-272a-c1f8-22c304538807", + "path": "z://MP4\\Let's Sing Karaoke\\Bush - Comedown (Karaoke & Lyrics).mp4", + "title": "Comedown" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tim McGraw", + "playlist_title": "I Like It, I Love It", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdff30fc-19e9-6238-4541-c9ada3bf373c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - I Like It, I Love It.mp4", + "title": "I Like It, I Love It" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "No Doubt", + "playlist_title": "Just A Girl", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf6eb26f-e3ab-0246-23fb-9cd8ad2cbff1", + "path": "z://MP4\\Sing King Karaoke\\No Doubt - Just A Girl.mp4", + "title": "Just A Girl" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "The Outhere Brothers", + "playlist_title": "Boom Boom Boom", + "found_song": { + "artist": "The Outhere Brothers", + "disabled": false, + "favorite": false, + "guid": "b4d5b49f-3eed-9c2e-5baa-3a735e848180", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF029\\The Outhere Brothers - Boom Boom Boom - SF029 - 07.mp3", + "title": "Boom Boom Boom" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Edwin McCain", + "playlist_title": "Solitude", + "found_song": { + "artist": "Edwin McCain & Darius Ruckner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79d8166a-5ae3-a6fe-bfea-9ac880d2683b", + "path": "z://CDG\\Various\\Edwin McCain & Darius Ruckner - Solitude.mp3", + "title": "Solitude" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Prince", + "playlist_title": "Gold", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "4fc2f665-a7eb-d5e6-bd8f-8a186570de45", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Prince - Gold - SF034 - 01.mp3", + "title": "Gold" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey & Boyz II Men", + "playlist_title": "One Sweet Day", + "found_song": { + "artist": "Boyz II Men ft. Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "d41dcb40-fefd-5630-2199-ffca41258cd4", + "path": "z://MP4\\Let's Sing Karaoke\\Boyz II Men & Mariah Carey - One Sweet Day (Karaoke & Lyrics).mp4", + "title": "One Sweet Day" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Whitney Houston", + "playlist_title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "6b333f4a-89f3-1212-b0b1-ab56fed7ac1d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Exhale (Shoop Shoop) - Whitney Houston.mp4", + "title": "Exhale (Shoop Shoop)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "LL Cool J", + "playlist_title": "Hey Lover", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "d2c985ba-ed08-28cb-dd2d-0f5b5c6c8499", + "path": "z://MP4\\KtvEntertainment\\LL Cool J - I Need Love Karaoke Lyrics.mp4", + "title": "I Need Love" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Pearl Jam", + "playlist_title": "I Got Id/Long Road", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "guid": "2401441b-591b-26c3-507c-98070b65101e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Pearl Jam - I Got I.d. - SF034 - 08.mp3", + "title": "I Got I.d." + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Hootie & The Blowfish", + "playlist_title": "Only Wanna Be With You", + "found_song": { + "artist": "Hootie And The Blowfish", + "disabled": false, + "favorite": false, + "guid": "c755e064-3d0c-6e01-c556-7ad2fb83abdb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Wanna Be With You - Hootie And The Blowfish.mp4", + "title": "Only Wanna Be With You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Hootie & The Blowfish", + "playlist_title": "Time", + "found_song": { + "artist": "Hootie & The Blowfish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4492d5fe-2e8c-b1bb-ae9a-5f74c071ed38", + "path": "z://MP4\\KaraokeOnVEVO\\Hootie & The Blowfish - Time.mp4", + "title": "Time" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "La Bouche", + "playlist_title": "Be My Lover", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fda7bdf3-3d6e-c7fe-8e3c-1bbd9de8f5a0", + "path": "z://CDG\\Various\\Alice Cooper - Be My Lover.mp3", + "title": "Be My Lover" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Big Mountain", + "playlist_title": "Get Together", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "820a3836-53c2-77dd-421f-e98bb0258ee0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF243\\Madonna - Get Together - SF243 - 03.mp3", + "title": "Get Together" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Jon B", + "playlist_title": "Pretty Girl", + "found_song": { + "artist": "Clairo", + "disabled": false, + "favorite": false, + "guid": "68b9800b-8312-c531-5437-66bbb237f5dc", + "path": "z://MP4\\Sing King Karaoke\\Clairo - Pretty Girl (Karaoke Version).mp4", + "title": "Pretty Girl" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Terry Ellis", + "playlist_title": "Where Ever You Are", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "facb08e0-38c0-d5ab-986d-d319cfd12080", + "path": "z://MP4\\Karaoke Studio\\Scotty McCreery - Wherever You Are (Karaoke Version).mp4", + "title": "Wherever You Are" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Boyz II Men", + "playlist_title": "I Remember", + "found_song": { + "artist": "Boyz Ii Men", + "disabled": false, + "favorite": false, + "guid": "424a55a2-be9e-3cab-c969-4bad72552db8", + "path": "z://MP4\\Let's Sing Karaoke\\Boyz Ii Men - Song For Mama (Karaoke & Lyrics).mp4", + "title": "Song For Mama" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Rembrandts", + "playlist_title": "I'll Be There For You/This House Is Not A Home", + "found_song": { + "artist": "The Rembrandts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db74a5f2-ad17-d9b3-05cf-1b951ee6442f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rembrandts - Ill Be There For You (Friends TV Theme).mp4", + "title": "I'll Be There For You ('Friends' TV Theme)" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Def Leppard", + "playlist_title": "When Love & Hate Collide", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "cf8bedcb-2137-cdab-3bb9-18372f03a5a3", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - When Love And Hate Collide (Karaoke).mp4", + "title": "When Love And Hate Collide" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Brandy", + "playlist_title": "Brokenhearted", + "found_song": { + "artist": "Karmin", + "disabled": false, + "favorite": false, + "guid": "c535d91b-8d5d-84ca-dab9-5a356cac8b60", + "path": "z://MP4\\Sing King Karaoke\\Karmin - Brokenhearted (Karaoke Version).mp4", + "title": "Brokenhearted" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Shai", + "playlist_title": "Come With Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a8c76fb-a044-d46f-2bbf-b4ba278ba7c5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Dance With Me.mp4", + "title": "Dance With Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "I Will Remember You (Live)", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "ad42eb37-891c-25e4-fa62-70345e0ebc4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Remember You - Sarah McLachlan.mp4", + "title": "I Will Remember You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Los Del Rio", + "playlist_title": "Macarena (Bayside Boys Mix)", + "found_song": { + "artist": "Los Del Rio", + "disabled": false, + "favorite": false, + "guid": "38577c12-4ef6-04cd-b51b-ad1ef2a3172d", + "path": "z://MP4\\Sing King Karaoke\\Los Del Rio - Macarena (Karaoke Version).mp4", + "title": "Macarena" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Max-A-Million", + "playlist_title": "Sexual Healing", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "d78b429a-6b77-256d-709e-68de5bd086ab", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - Sexual Healing (Karaoke Version).mp4", + "title": "Sexual Healing" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Bone Thugs-N-Harmony", + "playlist_title": "East 1999", + "found_song": { + "artist": "Bone Thugs-N-Harmony", + "disabled": false, + "favorite": false, + "guid": "32a68771-5d4c-7565-4c59-66913f88d8e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Crossroads - Bone Thugs-N-Harmony.mp4", + "title": "The Crossroads" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Click", + "playlist_title": "Hurricane", + "found_song": { + "artist": "The Vamps", + "disabled": false, + "favorite": false, + "guid": "9298b160-b0b4-33cd-870d-9b8b34bce3ac", + "path": "z://MP4\\Sing King Karaoke\\The Vamps - Hurricane (Karaoke Version).mp4", + "title": "Hurricane" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Better Than Ezra", + "playlist_title": "Rosealia", + "found_song": { + "artist": "Better Than Ezra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe915c16-71c1-6089-f77c-3ba4444f8862", + "path": "z://MP4\\KaraokeOnVEVO\\Better Than Ezra - Desperately Wanting.mp4", + "title": "Desperately Wanting" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Cypress Hill", + "playlist_title": "Throw Your Set In The Air", + "found_song": { + "artist": "Cypress Hill", + "disabled": false, + "favorite": false, + "guid": "cb54f7f4-2a76-9257-13ff-dcf82a19da69", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Insane In The Brain - Cypress Hill.mp4", + "title": "Insane In The Brain" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Backstreet Boys", + "playlist_title": "We've Got It Goin' On", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "083f29e8-75ce-c7c8-c767-348bf7617f01", + "path": "z://MP4\\KaraokeOnVEVO\\Backstreet Boys - Get Down.mp4", + "title": "Get Down" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Capleton", + "playlist_title": "Wings Of The Morning", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "guid": "ce46636b-caf6-6bbd-d998-a919d81f2c3c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angel Of The Morning - Juice Newton.mp4", + "title": "Angel Of The Morning" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Bone Thugs-N-Harmony", + "playlist_title": "1st Of Tha Month", + "found_song": { + "artist": "Bone Thugs-N-Harmony", + "disabled": false, + "favorite": false, + "guid": "32a68771-5d4c-7565-4c59-66913f88d8e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Crossroads - Bone Thugs-N-Harmony.mp4", + "title": "The Crossroads" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Coolio Featuring L.V.", + "title": "Gangsta's Paradise (From \"Dangerous Minds\")", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Monica", + "title": "Before You Walk Out Of My Life/Like This And Like That", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "R. Kelly", + "title": "You Remind Me Of Something", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Groove Theory", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sophie B. Hawkins", + "title": "As I Lay Me Down", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kris Kross", + "title": "Tonite's Tha Night", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Faith Evans", + "title": "Soon As I Get Home", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Seal", + "title": "Kiss From A Rose (From \"Batman Forever\")", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Xscape", + "title": "Who Can I Run To", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jodeci", + "title": "Love U 4 Life", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Planet Soul", + "title": "Set U Free", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Folk Implosion", + "title": "Natural One (From \"Kids\")", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Total", + "title": "No One Else", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brandy", + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Eazy-E", + "title": "Just Tah Let U Know", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Goodie Mob.", + "title": "Cell Therapy", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "D'Angelo", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blahzay Blahzay", + "title": "Danger", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "L.A.D.", + "title": "Ridin' Low", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Lisa Loeb & Nine Stories", + "title": "Do You Sleep?", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Immature (Featuring Smooth)", + "title": "We Got It", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Monifah", + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "L.V.", + "title": "Throw Your Hands Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Raekwon", + "title": "Incarcerated Scarfaces/Ice Cream", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Mighty Dub Katz", + "title": "Magic Carpet Ride", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Silk", + "title": "Hooked On You", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Pharcyde", + "title": "Runnin'", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Salt-N-Pepa", + "title": "Ain't Nuthin' But A She Thing", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Kool G Rap", + "title": "Fast Life", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Deborah Cox", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Real McCoy", + "title": "Automatic Lover (Call For Love)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Fugees", + "title": "Fu-Gee-La", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Artie The 1 Man Party", + "title": "A Mover La Colita", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Frost", + "title": "East Side Rendezvous", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "P.M. Dawn", + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Genius/GZA Featuring Inspektah Deck", + "title": "Cold World", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Quincy Jones Introducing Tamia", + "title": "You Put A Move On My Heart", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Method Man", + "title": "The Riddler (From \"Batman Forever\")", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 26, + "missing_count": 39, + "needs_manual_review": 26 + } + }, + { + "playlist_title": "1994 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Faith Hill", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6ae49e1-e23b-6e33-fa8c-995ce6ff883b", + "path": "z://CDG\\Various\\Faith Hill - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Gone Country", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "15b5049e-7abf-7b76-b4d5-d81a622f5223", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gone Country - Alan Jackson.mp4", + "title": "Gone Country" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Vince Gill", + "playlist_title": "When Love Finds You", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2875b408-db16-13b8-5d82-311b1a161461", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - When Love Finds You.mp4", + "title": "When Love Finds You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Brooks", + "playlist_title": "I ll Never Forgive My Heart", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "186b0bde-9db3-b7d6-26e1-d7f1e0a6afa3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - I ll Never Forgive My Heart.mp4", + "title": "I ll Never Forgive My Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Lari White", + "playlist_title": "Now I Know", + "found_song": { + "artist": "Lari White", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "42946017-83d9-97bf-2b3d-e9b3f361896c", + "path": "z://MP4\\KaraokeOnVEVO\\Lari White - Now I Know.mp4", + "title": "Now I Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Diamond Rio", + "playlist_title": "Night Is Fallin In My Heart", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed107d9f-298c-ad41-74a3-a2da094ca145", + "path": "z://CDG\\Various\\Diamond Rio - Night Is Fallin' In My Heart.mp3", + "title": "Night Is Fallin' In My Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Collie", + "playlist_title": "Hard Lovin Woman", + "found_song": { + "artist": "Mark Collie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c55c6f8d-5d3f-54be-e7c3-a0b941c106e5", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Collie - Hard Lovin Woman.mp4", + "title": "Hard Lovin Woman" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaron Tippin", + "playlist_title": "I Got It Honest", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c16f9fe-fb3c-efeb-9038-c56e06a46fde", + "path": "z://CDG\\Various\\Aaron Tippin - I Got It Honest.mp3", + "title": "I Got It Honest" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "If You ve Got Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90a00931-ecb6-1a5c-8464-352fbcf22e05", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - If You ve Got Love.mp4", + "title": "If You ve Got Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tracy Byrd", + "playlist_title": "The First Step", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8e4fb70-63b1-0dee-727b-087933e9bef7", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - The First Step.mp4", + "title": "The First Step" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "David Ball", + "playlist_title": "When The Thought Of You Catches Up With Me", + "found_song": { + "artist": "David Ball", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "434bf91f-7c0c-4a75-cec1-4dcc16b6545d", + "path": "z://MP4\\KaraokeOnVEVO\\David Ball - When The Thought Of You Catches Up With Me.mp4", + "title": "When The Thought Of You Catches Up With Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "Goin Through The Big D", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "743cfd37-b310-618e-efb6-b681b0266842", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rollin With The Flow - Mark Chesnutt.mp4", + "title": "Rollin With The Flow" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Randy Travis", + "playlist_title": "This Is Me", + "found_song": { + "artist": "Lavato, Demi & Joe Jonas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f43aa1c-8df3-4c72-5d4c-efff691f705b", + "path": "z://CDG\\SBI\\SBI-04\\SB18461 - Demi Lavato & Joe Jonas - This Is Me.mp3", + "title": "This Is Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Sawyer Brown", + "playlist_title": "This Time", + "found_song": { + "artist": "Sawyer Brown", + "disabled": false, + "favorite": false, + "guid": "b36f2ce4-1932-63ba-e441-1fd01452f098", + "path": "z://MP4\\KaraokeOnVEVO\\Sawyer Brown - Another Side (Karaoke).mp4", + "title": "Another Side" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Doug Stone", + "playlist_title": "Little Houses", + "found_song": { + "artist": "Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcb13e7e-e994-1f1e-f207-5569a75b9223", + "path": "z://MP4\\VocalStarKaraoke\\Rolling Stones - Wild Horses.mp4", + "title": "Wild Horses" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Patty Loveless", + "playlist_title": "Here I Am", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6bd1c4c-2e06-7c6a-d804-a1af9f59a7f0", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - You Will.mp4", + "title": "You Will" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Clint Black", + "playlist_title": "Untanglin My Mind", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "59cfb2d3-86ee-1fe6-54b8-bc9959e553ee", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - State Of Mind (Karaoke & Lyrics).mp4", + "title": "State Of Mind" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Collin Raye", + "playlist_title": "My Kind Of Girl", + "found_song": { + "artist": "Matt Monroe", + "disabled": false, + "favorite": false, + "guid": "be98f44d-28dc-f6f3-a172-2d9e0d5ab7c8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF094\\Matt Monroe - My Kind Of Girl - SF094 - 03.mp3", + "title": "My Kind Of Girl" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "George Strait", + "playlist_title": "The Big One", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eaad4b7-e503-7b33-80eb-96687af400d7", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Go On.mp4", + "title": "Go On" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Tim McGraw", + "title": "Not A Moment Too Soon", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rick Trevino", + "title": "Doctor Time", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Pam Tillis", + "title": "Mi Vida Loca (My Crazy Life)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "John Berry", + "title": "You And Only You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 8, + "missing_count": 4, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "1994 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Boyz II Men", + "playlist_title": "On Bended Knee", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba0d35f-5238-84c4-4328-224e5a6849c3", + "path": "z://MP4\\Sing King Karaoke\\Boyz II Men - On Bended Knee.mp4", + "title": "On Bended Knee" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "TLC", + "playlist_title": "Creep", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "3dffe224-f27c-c83c-4d73-a7e91ba460ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Creep - TLC.mp4", + "title": "Creep" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bon Jovi", + "playlist_title": "Always", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "a286bebd-3044-a599-9d02-3dadfa146c49", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Always (Karaoke Version).mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Boyz II Men", + "playlist_title": "I ll Make Love To You", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "4f9e88f5-b7d4-1bac-75dc-2f2beb5b14c0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Make Love To You - Boyz II Men.mp4", + "title": "I ll Make Love To You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Melissa Etheridge", + "playlist_title": "I m The Only One", + "found_song": { + "artist": "Melissa Etheridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d03b615-75d9-30f4-6315-695057c273fd", + "path": "z://MP4\\KaraokeOnVEVO\\Melissa Etheridge - I m The Only One.mp4", + "title": "I m The Only One" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Madonna", + "playlist_title": "Secret", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "89e709ea-4e51-1d14-6e0a-f878f5590714", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Madonna - Secret - SF010 - 04.mp3", + "title": "Secret" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Madonna", + "playlist_title": "Take A Bow", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "bf08a025-e454-99d1-30ee-b879d367f230", + "path": "z://CDG\\Various\\Madonna - Take A Bow.mp3", + "title": "Take A Bow" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Des ree", + "playlist_title": "You Gotta Be", + "found_song": { + "artist": "Des ree", + "disabled": false, + "favorite": false, + "guid": "d0b16be8-fa3a-ad29-f5af-a7542dfc0456", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Gotta Be - Des ree.mp4", + "title": "You Gotta Be" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sheryl Crow", + "playlist_title": "All I Wanna Do", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cadb5cfc-f6dc-2654-b00e-1b19b39a6565", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - All I Wanna Do.mp4", + "title": "All I Wanna Do" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Barry White", + "playlist_title": "Practice What You Preach", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "c20cb197-f5bf-1215-80be-ba292a15bb42", + "path": "z://CDG\\Various\\Barry White - Practice What You Preach.mp3", + "title": "Practice What You Preach" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Corona", + "playlist_title": "The Rhythm Of The Night", + "found_song": { + "artist": "Corona", + "disabled": false, + "favorite": false, + "guid": "3c7d1650-a837-9e5f-469d-bd5c8bbc2893", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Rhythm Of The Night - Corona.mp4", + "title": "The Rhythm Of The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tom Petty", + "playlist_title": "You Don t Know How It Feels", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "361101ae-273c-4141-e6d3-44a0aaf1874a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty - You Dont Know How It Feels.mp4", + "title": "You Don't Know How It Feels" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Hootie", + "playlist_title": "Hold My Hand", + "found_song": { + "artist": "Hootie & The Blowfish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c09f384-448e-01f8-cbba-cd43bcae24e0", + "path": "z://MP4\\KaraokeOnVEVO\\Hootie & The Blowfish - Hold My Hand.mp4", + "title": "Hold My Hand" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Four Seasons", + "playlist_title": "December 1963 (Oh, What A Night)", + "found_song": { + "artist": "Four Seasons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e9a5618-f812-c245-e6c0-d8075f97b912", + "path": "z://CDG\\Various\\Four Seasons - December, 1963(Oh What A Night).mp3", + "title": "December, 1963(Oh What A Night)" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ace Of Base", + "playlist_title": "Living In Danger", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "b611f6a9-8191-95fe-c12d-3170d265dd58", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Ace Of Base - Living In Danger - SF010 - 12.mp3", + "title": "Living In Danger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Immature", + "playlist_title": "Never Lie", + "found_song": { + "artist": "Immature", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f83d5cd8-77db-cea3-5d6f-c172273b4f55", + "path": "z://MP4\\KaraokeOnVEVO\\Immature - Never Lie.mp4", + "title": "Never Lie" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R.E.M.", + "playlist_title": "What s The Frequency, Kenneth?", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c9b800e-bf5d-23d2-e20f-559df85632bd", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - What s The Frequency, Kenneth.mp4", + "title": "What s The Frequency, Kenneth?" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Happy", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "cc49c3d0-68bb-7f99-3248-3b22962f928c", + "path": "z://MP4\\singsongsmusic\\Be Happy - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Be Happy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Babyface", + "playlist_title": "When Can I See You", + "found_song": { + "artist": "Babyface", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "542be9a0-7da1-7821-2641-0b09c8d1eaea", + "path": "z://MP4\\KaraokeOnVEVO\\Babyface - When Can I See You.mp4", + "title": "When Can I See You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Changing Faces", + "playlist_title": "Foolin Around", + "found_song": { + "artist": "Changing Faces", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24791935-ee2b-8e10-656f-1d8970b78844", + "path": "z://MP4\\KaraokeOnVEVO\\Changing Faces - Foolin Around.mp4", + "title": "Foolin Around" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Hole", + "playlist_title": "Doll Parts", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edac1075-5d4d-b008-386a-7ff6eb62de09", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Doll Parts.mp4", + "title": "Doll Parts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "2 Unlimited", + "playlist_title": "Get Ready For This", + "found_song": { + "artist": "2 Unlimited", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90151a8b-b848-59d3-7ead-e3f248206380", + "path": "z://MP4\\ZoomKaraokeOfficial\\2 Unlimited - Get Ready For This.mp4", + "title": "Get Ready For This" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Aaliyah", + "playlist_title": "At Your Best (You Are Love)", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "b97270a1-224b-af25-09c4-5f8f2a8554e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At Your Best (You Are Love) - Aaliyah.mp4", + "title": "At Your Best (You Are Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eagles", + "playlist_title": "Get Over It", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "2749534c-664d-ac49-2c2f-b1bd0ae7e6ce", + "path": "z://CDG\\Various\\Eagles - Get Over It.mp3", + "title": "Get Over It" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Mazzy Star", + "playlist_title": "Fade Into You", + "found_song": { + "artist": "Mazzy Star", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53f05a19-df00-438c-315d-6e95a415277d", + "path": "z://MP4\\Sing King Karaoke\\Mazzy Star - Fade Into You.mp4", + "title": "Fade Into You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "The Flaming Lips", + "playlist_title": "She Don t Use Jelly", + "found_song": { + "artist": "The Flaming Lips", + "disabled": false, + "favorite": false, + "guid": "52e8f269-8faa-c55e-9574-d0ce4bc1eaf5", + "path": "z://MP4\\TheKARAOKEChannel\\She Don t Use Jelly in the style of The Flaming Lips karaoke video.mp4", + "title": "She Don t Use Jelly" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Ini Kamoze", + "playlist_title": "Here Comes The Hotstepper (From \"Ready To Wear\")", + "found_song": { + "artist": "Ini Kamoze", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f547c25-4ac5-27a6-3d09-963c2e087892", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ini Kamoze - Here Comes The Hotstepper.mp4", + "title": "Here Comes The Hotstepper" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Real McCoy", + "playlist_title": "Another Night", + "found_song": { + "artist": "Neal McCoy", + "disabled": false, + "favorite": false, + "guid": "4d2a1ffb-9776-11f5-c239-6a183e337485", + "path": "z://MP4\\KaraokeOnVEVO\\Neal McCoy - The Shake (Karaoke).mp4", + "title": "The Shake" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "BLACKstreet", + "playlist_title": "Before I Let You Go", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "46c47cee-5f84-96f1-029e-4c8fae5ce210", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Before I Met You (Karaoke).mp4", + "title": "Before I Met You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Janet Jackson", + "playlist_title": "You Want This/70 s Love Groove", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "6ca1f3d3-59d4-8c85-f140-bdbb95d15515", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Janet - That's The Way Love Goes (Karaoke & Lyrics).mp4", + "title": "That's The Way Love Goes" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "20 Fingers Featuring Gillette", + "playlist_title": "Short Dick Man", + "found_song": { + "artist": "20 Fingers", + "disabled": false, + "favorite": false, + "guid": "a6f774cf-9bda-2a5a-e690-d53de2a93783", + "path": "z://MP4\\KtvEntertainment\\20 Fingers - Short Dick Man (Karaoke without Vocal).mp4", + "title": "Short Dick Man" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Turn The Beat Around (From \"The Specialist\")", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "4db24923-c966-1a0b-0a8e-556d7461342c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turn The Beat Around - Gloria Estefan.mp4", + "title": "Turn The Beat Around" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Pretenders", + "playlist_title": "I ll Stand By You", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6dc03a9-81b2-898d-1870-e6c7ef3d059f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Pretenders - Ill Stand By You.mp4", + "title": "I'll Stand By You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Vanessa Williams", + "playlist_title": "The Sweetest Days", + "found_song": { + "artist": "Vanessa Williams", + "disabled": false, + "favorite": false, + "guid": "2bb56925-f181-19f1-d038-d572e1534aeb", + "path": "z://MP4\\Sing King Karaoke\\Vanessa Williams - Save The Best For Last (Karaoke Version).mp4", + "title": "Save The Best For Last" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Bone Thugs-N-Harmony", + "playlist_title": "Thuggish Ruggish Bone", + "found_song": { + "artist": "Bone Thugs-N-Harmony", + "disabled": false, + "favorite": false, + "guid": "32a68771-5d4c-7565-4c59-66913f88d8e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Crossroads - Bone Thugs-N-Harmony.mp4", + "title": "The Crossroads" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Brownstone", + "playlist_title": "If You Love Me", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "042bfab2-8943-0cdb-eb3a-5dbed3f9c794", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 816\\Brenda Lee - If You Love Me - SFMW 816 -03.mp3", + "title": "If You Love Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "N II U", + "playlist_title": "I Miss You", + "found_song": { + "artist": "Clean Bandit ft. Julia Michaels", + "disabled": false, + "favorite": false, + "guid": "d15f4ff0-42e0-e773-a962-788fbe2e2497", + "path": "z://MP4\\Sing King Karaoke\\Clean Bandit ft. Julia Michaels - I Miss You (Karaoke Version).mp4", + "title": "I Miss You" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Aerosmith", + "playlist_title": "Blind Man", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a0c5c12-d9ce-6fac-58a3-08bf5264ca06", + "path": "z://MP4\\ZoomKaraokeOfficial\\Aerosmith - Pink.mp4", + "title": "Pink" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Candlebox", + "playlist_title": "Far Behind", + "found_song": { + "artist": "Candlebox", + "disabled": false, + "favorite": false, + "guid": "e9448ae9-0a65-7e78-f4f3-b80807e67a78", + "path": "z://MP4\\Let's Sing Karaoke\\Candlebox - Far Behind (Karaoke & Lyrics).mp4", + "title": "Far Behind" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Keith Murray", + "playlist_title": "The Most Beautifullest Thing In This World", + "found_song": { + "artist": "Charlie Rich", + "disabled": false, + "favorite": false, + "guid": "9d6ffc04-d0ca-0f68-886f-f56cfa2f9023", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF077\\Charlie Rich - The Most Beautiful Gil In The World - SF077 - 04.mp3", + "title": "The Most Beautiful Gil In The World" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "John Mellencamp", + "playlist_title": "Dance Naked", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "b85acf76-33a0-f61b-cc04-91921b99a226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jack And Diane - John Mellencamp.mp4", + "title": "Jack And Diane" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Elton John", + "playlist_title": "Circle Of Life (From \"The Lion King\")", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "98dfa457-7173-8d1b-8be6-066d57219b81", + "path": "z://MP4\\KaraFun Karaoke\\Circle of Life - Elton John Karaoke Version KaraFun.mp4", + "title": "Circle of Life" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Amy Grant With Vince Gill", + "playlist_title": "House Of Love", + "found_song": { + "artist": "Amy Grant ft. Vince Gill", + "disabled": false, + "favorite": false, + "guid": "dea1895b-d21a-f82d-7ac8-b5aa354b6e1f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF039\\Amy Grant & Vince Gill - House Of Love - SF039 - 11.mp3", + "title": "House Of Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Luther Vandross", + "playlist_title": "Always And Forever", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33ca9964-abef-ce43-8d53-843140f5dd48", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Always And Forever.mp4", + "title": "Always And Forever" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Heavy D", + "playlist_title": "Black Coffee", + "found_song": { + "artist": "All Saints", + "disabled": false, + "favorite": false, + "guid": "8850e9b8-d144-806d-110c-707918319d82", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF171\\All Saints - Black Coffee - SF171 - 16.mp3", + "title": "Black Coffee" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Notorious B.I.G.", + "playlist_title": "Juicy/Unbelievable", + "found_song": { + "artist": "The Notorious B.I.G.", + "disabled": false, + "favorite": false, + "guid": "61db213e-24f4-0723-9bba-82244d8aaa48", + "path": "z://MP4\\KaraFun Karaoke\\Juicy - The Notorious B.I.G. Karaoke Version KaraFun.mp4", + "title": "Juicy" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Urge Overkill", + "playlist_title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")", + "found_song": { + "artist": "Urge Overkill", + "disabled": false, + "favorite": false, + "guid": "aa99156a-d9e4-c56b-10fb-968a32a48375", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl, You ll Be a Woman Soon - Urge Overkill.mp4", + "title": "Girl, You ll Be a Woman Soon" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Luther Vandross", + "playlist_title": "Endless Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "b02c69d8-cd5e-92fe-53b0-65987dad0079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Endless Love - Luther Vandross.mp4", + "title": "Endless Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Harry Connick, Jr.", + "playlist_title": "(I Could Only) Whisper Your Name", + "found_song": { + "artist": "Harry Connick Jr.", + "disabled": false, + "favorite": false, + "guid": "96512c45-0da0-38d9-6eb7-bdcc7bf4822e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Had To Be You - Harry Connick Jr..mp4", + "title": "It Had To Be You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Craig Mack", + "playlist_title": "Get Down", + "found_song": { + "artist": "Gene Chandler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54f39ce7-14ba-eaf3-47f2-70e026ccf14a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Gene Chandler - Get Down - SF103 - 14.mp3", + "title": "Get Down" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Out Of Tears", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "75ea1c27-c8f7-65a4-058c-6a5c3a5ee228", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Route 66 - The Rolling Stones.mp4", + "title": "Route 66" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Sheryl Crow", + "playlist_title": "Strong Enough", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "967938a2-335d-e41f-1b45-2b189cc796f1", + "path": "z://MP4\\KtvEntertainment\\Cher - Strong Enough (Karaoke without Vocal).mp4", + "title": "Strong Enough" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Steve Perry", + "playlist_title": "Missing You", + "found_song": { + "artist": "Saturdays", + "disabled": false, + "favorite": false, + "guid": "5746ee07-68f2-4645-fdf2-32d1d9c87828", + "path": "z://CDG\\Mr Entertainer\\MRTC01\\MRTC01-03\\MRTC01-3-14 - Saturdays - Missing You.mp3", + "title": "Missing You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Huey Lewis", + "playlist_title": "But It s Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Anita Baker", + "playlist_title": "I Apologize", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ccff3-039f-09a9-4792-a2fb5af2967b", + "path": "z://MP4\\KaraokeOnVEVO\\Anita Baker - Sweet Love.mp4", + "title": "Sweet Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Lil Suzy", + "playlist_title": "Promise Me", + "found_song": { + "artist": "Laufey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dab53a0f-b7fd-f2c9-2fcb-a6ca7f659085", + "path": "z://MP4\\Sing King Karaoke\\Laufey - Promise.mp4", + "title": "Promise" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Jeff Foxworthy", + "playlist_title": "Redneck Stomp", + "found_song": { + "artist": "Jeff Foxworthy, Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "2f328f43-114b-5b7a-9f3f-3ef03cf435de", + "path": "z://MP4\\KaraokeOnVEVO\\Jeff Foxworthy, Alan Jackson - Redneck Games (Karaoke).mp4", + "title": "Redneck Games" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Freedy Johnston", + "playlist_title": "Bad Reputation", + "found_song": { + "artist": "Joan Jett and The Blackhearts", + "disabled": false, + "favorite": false, + "guid": "5a02d582-8026-2349-d673-78951a6fc5e4", + "path": "z://MP4\\Sing King Karaoke\\Joan Jett and The Blackhearts - Bad Reputation (Karaoke Version).mp4", + "title": "Bad Reputation" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Liz Phair", + "playlist_title": "Supernova", + "found_song": { + "artist": "aespa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c4ef4c0-f1b4-be39-2a4d-53c85d83347f", + "path": "z://MP4\\Sing King Karaoke\\aespa - Supernova.mp4", + "title": "Supernova" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "I See It Now", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "541f880c-ac8b-c853-0820-fa9a9faa609a", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Lawrence - Is That A Tear.mp4", + "title": "Is That A Tear" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Anita Baker", + "playlist_title": "Body", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "d2fb5747-dbbb-06b7-e078-a3bcec4c680d", + "path": "z://MP4\\KaraokeOnVEVO\\Anita Baker - Body & Soul (Karaoke).mp4", + "title": "Body & Soul" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Brandy", + "title": "I Wanna Be Down", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "69 Boyz", + "title": "Tootsee Roll", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "4PM", + "title": "Sukiyaki", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Crystal Waters", + "title": "100% Pure Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jade", + "title": "Every Day Of The Week", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Immature", + "title": "Constantly", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Deadeye Dick", + "title": "New Age Girl (From \"Dumb And Dumber\")", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Toni Braxton", + "title": "I Belong To You/How Many Ways", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Craig Mack", + "title": "Flava In Ya Ear", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "John Mellencamp With Me Shell Ndegeocello", + "title": "Wild Night", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Zhane", + "title": "Shame (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Scarface", + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Rappin 4-Tay", + "title": "Playaz Club", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Sting", + "title": "When We Dance", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Method Man", + "title": "Bring The Pain", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jon Secada", + "title": "Mental Picture", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.M.U. (Black Men United)", + "title": "U Will Know (From \"Jason s Lyric\")", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Warren G", + "title": "Do You See", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Da Brat", + "title": "Fa All Y all", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Lucas", + "title": "Lucas With The Lid Off", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Toad The Wet Sprocket", + "title": "Something s Always Wrong", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Guns N Roses", + "title": "Sympathy For The Devil (\"Interview With The Vampire\")", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Andru Donalds", + "title": "Mishale", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "69 Boyz", + "title": "Kitty Kitty", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Keith Sweat (Featuring Kut Klose)", + "title": "Get Up On It", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Martin Page", + "title": "In The House Of Stone And Light", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Silk", + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Lords Of The Underground", + "title": "Tic Toc", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Tevin Campbell", + "title": "Don t Say Goodbye Girl", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Shaquille O Neal", + "title": "Biological Didn t Bother", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Joshua Kadison", + "title": "Picture Postcards From L.A.", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Nine", + "title": "Whutcha Want?", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Dru Down", + "title": "Pimp Of The Year", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Murmurs", + "title": "You Suck", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Fu-Schnickens", + "title": "Breakdown", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Weezer", + "title": "Undone - The Sweater Song", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Doctor Dre", + "title": "Back Up Off Me!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 35, + "missing_count": 37, + "needs_manual_review": 35 + } + }, + { + "playlist_title": "1993 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Doug Supernaw", + "playlist_title": "I Don't Call Him Daddy", + "found_song": { + "artist": "Doug Supernaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af7017bd-c406-412d-ed4d-6dc4e470890e", + "path": "z://CDG\\Various\\Doug Supernaw - I Don't Call Him Daddy.mp3", + "title": "I Don't Call Him Daddy" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Soon", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "2b5327eb-c653-8408-7c95-5b822b42ea6b", + "path": "z://CDG\\Sound Choice Karaoke\\SC2088\\SC2088-05 - Tucker, Tanya - Soon.mp3", + "title": "Soon" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "Wild One", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab51c515-3b8b-3bd9-b421-ceb8ddb81305", + "path": "z://CDG\\Various\\Faith Hill - Wild One.mp3", + "title": "Wild One" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Clay Walker", + "playlist_title": "Live Until I Die", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "guid": "97eefbe7-88e3-9067-45f3-8af4db777893", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live Until I Die (Karaoke).mp4", + "title": "Live Until I Die" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Clint Black", + "playlist_title": "State Of Mind", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "59cfb2d3-86ee-1fe6-54b8-bc9959e553ee", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - State Of Mind (Karaoke & Lyrics).mp4", + "title": "State Of Mind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Queen Of My Double Wide Trailer", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6d76d39-c906-ed72-5c14-0e4624ca3aec", + "path": "z://MP4\\KaraokeOnVEVO\\Sammy Kershaw - Queen Of My Double Wide Trailer.mp4", + "title": "Queen Of My Double Wide Trailer" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "I Swear", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "bef6414b-b7d7-83c2-5880-b4cebbb16943", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Swear - John Michael Montgomery.mp4", + "title": "I Swear" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "A Little Less Talk And A Lot More Action", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "9aeb8ad1-149d-f895-d810-04dbb1abb08c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Less Talk And A Lot More Action - Toby Keith.mp4", + "title": "A Little Less Talk And A Lot More Action" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Patty Loveless", + "playlist_title": "You Will", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6bd1c4c-2e06-7c6a-d804-a1af9f59a7f0", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - You Will.mp4", + "title": "You Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "The Call Of The Wild", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a888093c-e51a-875b-e672-6ac39b2d5af8", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - The Call Of The Wild.mp4", + "title": "The Call Of The Wild" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Garth Brooks", + "playlist_title": "American Honky-Tonk Bar Association", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8474602c-c98f-0269-63e0-8bb7b9d94fc5", + "path": "z://CDG\\Various\\Garth Brooks - American Honky Tonk Bar Association.mp3", + "title": "American Honky Tonk Bar Association" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hal Ketchum", + "playlist_title": "Someplace Far Away (Careful What You're Dreaming)", + "found_song": { + "artist": "Hal Ketchum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f9af088-b0eb-c39e-a8aa-bd0b77d829a7", + "path": "z://MP4\\KaraokeOnVEVO\\Hal Ketchum - Someplace Far Away (Careful What Youre Dreaming.mp4", + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Billy Dean", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f09b8573-7c1b-15a8-4fb0-09344eaafa17", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Dean - We Just Disagree.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Sawyer Brown", + "playlist_title": "The Boys & Me", + "found_song": { + "artist": "Sawyer Brown", + "disabled": false, + "favorite": false, + "guid": "b36f2ce4-1932-63ba-e441-1fd01452f098", + "path": "z://MP4\\KaraokeOnVEVO\\Sawyer Brown - Another Side (Karaoke).mp4", + "title": "Another Side" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Doug Stone", + "playlist_title": "I Never Knew Love", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "guid": "8e5b4e6f-4eea-48f0-3544-22ffe1b3791a", + "path": "z://MP4\\KaraokeOnVEVO\\Doug Stone - Make Up In Love (Karaoke).mp4", + "title": "Make Up In Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Wynonna", + "playlist_title": "Is It Over Yet", + "found_song": { + "artist": "Klaxons", + "disabled": false, + "favorite": false, + "guid": "ae97c329-8eb3-0b8c-2f8d-7cf9511422bd", + "path": "z://MP4\\singsongsmusic\\It s not Over Yet - Karaoke HD (In the style of Klaxons).mp4", + "title": "It s not Over Yet" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Billy Ray Cyrus", + "playlist_title": "Somebody New", + "found_song": { + "artist": "Billy Ray Cyrus", + "disabled": false, + "favorite": false, + "guid": "349ecf36-0c72-4524-ee84-5da725d0c0b8", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ray Cyrus - Talk Some (Karaoke).mp4", + "title": "Talk Some" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Shenandoah", + "playlist_title": "I Want To Be Loved Like That", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a702f33-63a0-913a-400b-dabd2ecbec41", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - I Want To Be Loved Like That.mp4", + "title": "I Want To Be Loved Like That" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "My Second Home", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "guid": "5c3c276f-d546-10a0-fc07-dd5d6b527b02", + "path": "z://MP4\\Let's Sing Karaoke\\Tracy Lawrence - Up To Him (Karaoke & Lyrics).mp4", + "title": "Up To Him" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "John Berry", + "playlist_title": "Kiss Me In The Car", + "found_song": { + "artist": "John Anderson", + "disabled": false, + "favorite": false, + "guid": "dfa50ff5-c7e1-6d55-d3a1-f79c9cb7483e", + "path": "z://MP4\\Let's Sing Karaoke\\Anderson, John - I Fell In The Water (Karaoke & Lyrics).mp4", + "title": "I Fell In The Water" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 18, + "artist": "Boy Howdy", + "title": "She'd Give Anything", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 7, + "missing_count": 1, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1993 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Hero", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "35a35f1e-0236-0acf-7d19-ea42dab2a184", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hero - Mariah Carey.mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Ace Of Base", + "playlist_title": "All That She Wants", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "4fa40070-bff8-fc15-3c72-6ab80ba29fa5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All That She Wants - Ace Of Base.mp4", + "title": "All That She Wants" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Do Anything For Love (But I Won't Do That)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "guid": "c3416262-ed2d-2713-d64d-5e847085dd6f", + "path": "z://MP4\\Stingray Karaoke\\I'd Do Anything For Love (But I Won't Do That) in the Style of Meat Loaf karaoke video.mp4", + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Shoop", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "0cb8dbb1-927b-81bd-1265-5d67fb39dff7", + "path": "z://MP4\\KtvEntertainment\\Salt' N' Pepa - Shoop Karaoke Lyrics.mp4", + "title": "Shoop" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Toni Braxton", + "playlist_title": "Breathe Again", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "ecf15ec8-d421-9f09-715d-e6e3e89dc922", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Toni Braxton - Breathe Again - SF006 - 02.mp3", + "title": "Breathe Again" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Michael Bolton", + "playlist_title": "Said I Loved You...But I Lied", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9698de5a-022e-b3f2-25b3-9a92c3eef12e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Bolton - Said I Loved You But I Lied.mp4", + "title": "Said I Loved You But I Lied" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bryan Adams", + "playlist_title": "Please Forgive Me", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "96d46c2e-6ad0-eff2-9c87-47fdb734ff68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Forgive Me - Bryan Adams.mp4", + "title": "Please Forgive Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tevin Campbell", + "playlist_title": "Can We Talk", + "found_song": { + "artist": "Tevin Campbell", + "disabled": false, + "favorite": false, + "guid": "fa3aba80-3f42-6616-456a-dbf5d988c622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Can We Talk - Tevin Campbell.mp4", + "title": "Can We Talk" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tag Team", + "playlist_title": "Whoomp! (There It Is)", + "found_song": { + "artist": "Tag Team", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8128085-68a8-b2ac-0f15-f40fa3e91eb2", + "path": "z://MP4\\Stingray Karaoke\\Tag Team - Whoomp! (There It Is).mp4", + "title": "Whoomp! (There It Is)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Cranberries", + "playlist_title": "Linger", + "found_song": { + "artist": "The Cranberries", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4c447f8-fbd8-0d04-8857-e8d398f036ba", + "path": "z://MP4\\Sing King Karaoke\\The Cranberries - Linger (Karaoke Version).mp4", + "title": "Linger" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Domino", + "playlist_title": "Getto Jam", + "found_song": { + "artist": "Domino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a277a16a-b945-283a-83de-859c22af6c2e", + "path": "z://CDG\\SBI\\SBI-01\\SB02780 - Domino - Getto Jam.mp3", + "title": "Getto Jam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Culture Beat", + "playlist_title": "Mr. Vain", + "found_song": { + "artist": "Culture Beat", + "disabled": false, + "favorite": false, + "guid": "bb474262-40a9-20f4-a438-5defac2758e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Vain - Culture Beat.mp4", + "title": "Mr. Vain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Haddaway", + "playlist_title": "What Is Love", + "found_song": { + "artist": "Haddaway", + "disabled": false, + "favorite": false, + "guid": "071f0c48-2e88-63ea-734f-5db828f709c5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Is Love - Haddaway.mp4", + "title": "What Is Love" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "K7", + "playlist_title": "Come Baby Come", + "found_song": { + "artist": "K7", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76aa2da4-62b4-a628-d9a3-b592bf48c179", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\K7 - Come Baby Come - SFMW 854 -02.mp3", + "title": "Come Baby Come" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mariah Carey", + "playlist_title": "Dreamlover", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "92fd0f83-b571-c065-4a41-7f68858c2460", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Dreamlover (Karaoke & Lyrics) (2).mp4", + "title": "Dreamlover" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Celine Dion", + "playlist_title": "The Power Of Love", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "1efc2e2c-b142-7e19-d5db-a4e36194510c", + "path": "z://MP4\\KtvEntertainment\\Celine Dion - The Power of Love (Karaoke without Vocal).mp4", + "title": "The Power of Love" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Billy Joel", + "playlist_title": "All About Soul", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e0de3e-ecd4-5c73-0f02-6040e3831f00", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - All About Soul.mp4", + "title": "All About Soul" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Gabrielle", + "playlist_title": "Dreams", + "found_song": { + "artist": "Gabrielle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5a76a9b-9d66-7036-4326-aa6431314f6f", + "path": "z://MP4\\Sing King Karaoke\\Gabrielle - Dreams.mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Joshua Kadison", + "playlist_title": "Jessie", + "found_song": { + "artist": "Joshua Kadison", + "disabled": false, + "favorite": false, + "guid": "690ac53e-7bde-775d-4f2d-80525edc880a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jessie - Joshua Kadison.mp4", + "title": "Jessie" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Queen Latifah", + "playlist_title": "U.N.I.T.Y.", + "found_song": { + "artist": "Queen Latifah", + "disabled": false, + "favorite": false, + "guid": "5d5125a0-9131-81bf-c241-b339a2e39fc5", + "path": "z://CDG\\Various\\Queen Latifah - U.N.I.T.Y..mp3", + "title": "U.N.I.T.Y." + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Aerosmith", + "playlist_title": "Cryin'", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "72032a97-a206-0127-c7be-9891bbad26c8", + "path": "z://MP4\\Karaoke Sing Sing\\Aerosmith - Cryin' (Karaoke Version).mp4", + "title": "Cryin'" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Phil Collins", + "playlist_title": "Both Sides Of The Story", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba6cd9e-3406-105c-bccb-f2192620ee94", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Both Sides Of The Story.mp4", + "title": "Both Sides Of The Story" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Billy Joel", + "playlist_title": "The River Of Dreams", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c83d-4029-bf35-1d15-fbc2d5de8b30", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - The River Of Dreams.mp4", + "title": "The River Of Dreams" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Inner Circle", + "playlist_title": "Sweat (A La La La La Long)", + "found_song": { + "artist": "Inner Circle", + "disabled": false, + "favorite": false, + "guid": "4b16ddc0-a2cf-c2e8-7c41-1196f1f2e657", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweat (A La La La La Long) - Inner Circle.mp4", + "title": "Sweat (A La La La La Long)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Blind Melon", + "playlist_title": "No Rain", + "found_song": { + "artist": "Blind Melon", + "disabled": false, + "favorite": false, + "guid": "b24fd06e-622c-612f-8690-3feda0220c6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No Rain - Blind Melon.mp4", + "title": "No Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Aerosmith", + "playlist_title": "Amazing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef20b54c-d18c-ba76-48be-ee0062e69259", + "path": "z://CDG\\Various\\Aerosmith - Amazing.mp3", + "title": "Amazing" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mr. Big", + "playlist_title": "Wild World", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "3c351510-eae3-7f45-5102-ecc096a10844", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Mr. Big.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "UB40", + "playlist_title": "Higher Ground", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4d5027d-9a49-f087-2345-c95cff40ad82", + "path": "z://MP4\\KaraokeOnVEVO\\UB40 - Higher Ground.mp4", + "title": "Higher Ground" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Rod Stewart", + "playlist_title": "Reason To Believe", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "52ef2d34-5230-7ad1-1871-886a0ca906a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Reason To Believe - Rod Stewart.mp4", + "title": "Reason To Believe" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Everybody Hurts", + "found_song": { + "artist": "R.E.M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "740d9b90-ae9e-82f9-555f-f5b9594bf31e", + "path": "z://MP4\\Sing King Karaoke\\R.E.M - Everybody Hurts (2.mp4", + "title": "Everybody Hurts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Mary Jane's Last Dance", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df6c15b0-6927-abba-f651-826b404f2a9a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty And The Heartbreakers - Mary Janes Last Dance.mp4", + "title": "Mary Jane's Last Dance" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Heart", + "playlist_title": "Will You Be There (In The Morning)", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "99fa898a-430e-0561-abb8-45c2c822fe21", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF026\\Heart - Will You Be There In The Morning - SF026 - 11.mp3", + "title": "Will You Be There In The Morning" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Nightcrawlers", + "playlist_title": "Push The Feeling On", + "found_song": { + "artist": "Nightcrawlers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9a33746-926b-d4bf-2a57-57d6dd55f034", + "path": "z://CDG\\SBI\\SBI-01\\SB04073 - Nightcrawlers - Push The Feeling On.mp3", + "title": "Push The Feeling On" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Clay Walker", + "playlist_title": "What's It To You", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03c9c587-dfb0-89ea-45b4-3acca3b8687f", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Whats It To You.mp4", + "title": "What's It To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Janet Jackson", + "playlist_title": "Again", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6feb492-bf75-7102-f5a7-f49df958b570", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Runaway.mp4", + "title": "Runaway" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Bryan Adams/Rod Stewart/Sting", + "playlist_title": "All For Love", + "found_song": { + "artist": "Bryan Adams & Sting & Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37765841-ded8-8805-8099-f50692593c36", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams & Sting & Rod Stewart - All For Love.mp4", + "title": "All For Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Snoop Dogg", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Snoop Doggy Dog", + "disabled": false, + "favorite": false, + "guid": "c235395b-c30e-4879-20dd-629e82fbb42c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Snoop Doggy Dog - What's My Name - SF050 - 04.mp3", + "title": "What's My Name" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "2Pac", + "playlist_title": "Keep Ya Head Up", + "found_song": { + "artist": "Sandra van Nieuwland", + "disabled": false, + "favorite": false, + "guid": "1c0b9219-039a-6d8a-c378-a58b09311e94", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Keep Your Head Up - Sandra van Nieuwland.mp4", + "title": "Keep Your Head Up" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "10,000 Maniacs", + "playlist_title": "Because The Night", + "found_song": { + "artist": "10000 Maniacs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f566c0ed-2ff7-cb13-e35c-afbe6c411ffb", + "path": "z://CDG\\Various\\10000 Maniacs - Because The Night.mp3", + "title": "Because The Night" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Jodeci", + "playlist_title": "Cry For You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "60c12227-e02e-fb7e-91a8-06f46d3622d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy For You - Adele.mp4", + "title": "Crazy For You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Jimmy Cliff", + "playlist_title": "I Can See Clearly Now (From \"Cool Runnings\")", + "found_song": { + "artist": "Jimmy Cliff", + "disabled": false, + "favorite": false, + "guid": "35a45743-d25a-f3bb-7091-0c57fe6bb7bc", + "path": "z://MP4\\KaraFun Karaoke\\Jimmy Cliff - I Can See Clearly Now.mp4", + "title": "I Can See Clearly Now" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Tony Toni Tone", + "playlist_title": "Anniversary", + "found_song": { + "artist": "Alicia Keys ft. Tony Toni Tone", + "disabled": false, + "favorite": false, + "guid": "417c8289-ee7c-52dd-19c0-18e32876f800", + "path": "z://MP4\\Let's Sing Karaoke\\Keys, Alicia & Tony Toni Tone - Diary (Karaoke & Lyrics).mp4", + "title": "Diary" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Xscape", + "playlist_title": "Understanding", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "a6fd214d-268a-13b7-42b6-ab682524442f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love And Understanding - Cher - YouTube.mp4", + "title": "Love And Understanding" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Janet Jackson", + "playlist_title": "If", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3952c8ba-e218-ea19-be21-e42791836cb7", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Nasty.mp4", + "title": "Nasty" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Gin Blossoms", + "playlist_title": "Found Out About You", + "found_song": { + "artist": "Gin Blossoms", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "32ec07d7-5279-6c06-e0f7-0622bae7252d", + "path": "z://CDG\\Various\\Gin Blossoms - Follow You Down.mp3", + "title": "Follow You Down" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Def Leppard", + "playlist_title": "Two Steps Behind (From \"Last Action Hero\")", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0e74ab0-fcf0-3526-adf7-de1c828d6132", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Two Steps Behind.mp4", + "title": "Two Steps Behind" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Boyz II Men", + "playlist_title": "Let It Snow", + "found_song": { + "artist": "Charlie Puth & Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "0f19da3c-bd0c-2018-090d-74c36403ec28", + "path": "z://MP4\\Karaoke Sing Sing\\Charlie Puth & Boyz II Men - If You Leave Me Now (Karaoke Version).mp4", + "title": "If You Leave Me Now" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "A Tribe Called Quest", + "playlist_title": "Award Tour", + "found_song": { + "artist": "A Tribe Called Quest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c4e2418-a745-d9fb-5786-174addc2700f", + "path": "z://MP4\\KaraokeOnVEVO\\A Tribe Called Quest - Can I Kick It.mp4", + "title": "Can I Kick It" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Elton John & Kiki Dee", + "playlist_title": "True Love", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "97e7c315-2d59-a453-5047-d619759998be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke True Love - Elton John.mp4", + "title": "True Love" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Def Leppard", + "playlist_title": "Miss You In A Heartbeat", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "268be81b-f41f-4a7e-1774-a09e1c44338c", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Bringin' On The Heartbreak (Karaoke).mp4", + "title": "Bringin' On The Heartbreak" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Collage", + "playlist_title": "I'll Be Loving You", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a746f20-e5cb-3a04-921b-255e701db05d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Toto - Ill Be Over You.mp4", + "title": "I'll Be Over You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Soul To Squeeze (From \"Coneheads\")", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "ca1b8ae5-370d-3bba-8865-d4d76e592858", + "path": "z://CDG\\Various\\Red Hot Chili Peppers - Soul To Squeeze.mp3", + "title": "Soul To Squeeze" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Rick Astley", + "playlist_title": "Hopelessly", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4855c6e6-6ee3-0f70-12c7-b4fddd69b62f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Astley - God Says.mp4", + "title": "God Says" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "The Lemonheads", + "playlist_title": "Into Your Arms", + "found_song": { + "artist": "The Bangles", + "disabled": false, + "favorite": false, + "guid": "90aa7021-8320-a4b9-cd02-82a810603d8d", + "path": "z://MP4\\Let's Sing Karaoke\\Bangles, The - In Your Room (Karaoke & Lyrics).mp4", + "title": "In Your Room" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "The Breeders", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Breeders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79fd0035-ec18-5a26-ddbd-46568e7c6a5a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 868\\Breeders - Cannonball - SFMW 868 -01.mp3", + "title": "Cannonball" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Shai", + "playlist_title": "Yours", + "found_song": { + "artist": "Shift K3y", + "disabled": false, + "favorite": false, + "guid": "40328a57-3c5b-1edd-0b60-62f2626141bd", + "path": "z://CDG\\Mr Entertainer\\MRH117\\Shift K3y - Touch.mp3", + "title": "Touch" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "The Goodmen", + "playlist_title": "Give It Up", + "found_song": { + "artist": "Hothouse Flowers", + "disabled": false, + "favorite": false, + "guid": "2e42dc8d-20ec-8184-fb62-8ac45c42f368", + "path": "z://MP4\\KaraFun Karaoke\\Give It Up - Hothouse Flowers Karaoke Version KaraFun.mp4", + "title": "Give It Up" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Ice Cube", + "playlist_title": "Really Doe", + "found_song": { + "artist": "Van Morrison & Michael Buble", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "899d061b-4e63-6032-72ab-d0d3ac17eed7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF350\\Van Morrison & Michael Buble - Real Real Gone - SF350 - 18.mp3", + "title": "Real Real Gone" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Send Me A Lover", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "guid": "3e0606bc-e44a-22f6-f649-6447157283cb", + "path": "z://CDG\\Various\\Taylor Dayne - I Believe In Me And You.mp3", + "title": "I Believe In Me And You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Dr. Dre", + "playlist_title": "Let Me Ride", + "found_song": { + "artist": "Dr. Dre", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec129348-1d97-4bb5-f240-da5459b65d83", + "path": "z://CDG\\SBI\\SBI-04\\SB14415 - Dr. Dre - Let's Get High.mp3", + "title": "Let's Get High" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Lisa Keith", + "playlist_title": "Better Than You", + "found_song": { + "artist": "Paloma Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39281ce9-bc9d-90c5-9c0c-2fe894541e62", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paloma Faith - Better Than This.mp4", + "title": "Better Than This" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Robin S.", + "playlist_title": "Love For Love", + "found_song": { + "artist": "Robin S", + "disabled": false, + "favorite": false, + "guid": "74d3e497-29d1-90d1-6f9e-8a8e46960408", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF009\\Robin S - Show Me Love - SF009 - 02.mp3", + "title": "Show Me Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Kris Kross", + "playlist_title": "I'm Real", + "found_song": { + "artist": "Kris Kross", + "disabled": false, + "favorite": false, + "guid": "9cd8e030-551f-b31a-2049-3945064077b4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Kris Kross - Jump - SF050 - 06.mp3", + "title": "Jump" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "RAab", + "playlist_title": "Foreplay", + "found_song": { + "artist": "Zendaya", + "disabled": false, + "favorite": false, + "guid": "f6f3f2e7-3e70-4b94-35c5-7e4c21a29e08", + "path": "z://MP4\\Sing King Karaoke\\Zendaya - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Inner Circle", + "playlist_title": "Rock With You", + "found_song": { + "artist": "Inner Circle", + "disabled": false, + "favorite": false, + "guid": "4b4b9dc2-a239-838f-eb2b-d1b42cc3f4ed", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF005\\Inner Circle - Sweat - SF005 - 11.mp3", + "title": "Sweat" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "DRS", + "title": "Gangsta Lean", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Xscape", + "title": "Just Kickin' It", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Zhane", + "title": "Hey Mr. D.J.", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface", + "title": "Never Keeping Secrets", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "R. Kelly", + "title": "Sex Me (Parts I & II)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hi-Five", + "title": "Never Should've Let You Go (From \"Sister Act 2\")", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Color Me Badd", + "title": "Time And Chance", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Shaquille O'Neal", + "title": "(I Know I Got) Skillz", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Zapp & Roger", + "title": "Slow And Easy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Toni Braxton", + "title": "Another Sad Love Song", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Eazy-E", + "title": "Real Muthaphuckkin G's", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "US 3", + "title": "Cantaloop (Flip Fantasia)", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Intro", + "title": "Come Inside", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Lisette Melendez", + "title": "Goody Goody", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Das EFX", + "title": "Freakit", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "U2", + "title": "Stay (Faraway, So Close!)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Expose", + "title": "As Long As I Can Dream", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Kenny G", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Mista Grimm", + "title": "Indo Smoke (From \"Poetic Justice\")", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Wu-Tang Clan", + "title": "Method Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jade", + "title": "Looking For Mr. Do Right", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Souls Of Mischief", + "title": "93 'Til Infinity", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jazzy Jeff & The Fresh Prince", + "title": "I'm Looking For The One (To Be With Me)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Haddaway", + "title": "Life (Everybody Needs Somebody To Love)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Chantay Savage", + "title": "Betcha'll Never Find", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kate Bush", + "title": "Rubberband Girl", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rozalla", + "title": "I Love Music (From \"Carlito's Way\")", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Reality", + "title": "Yolanda", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bell Biv Devoe", + "title": "Something In Your Eyes", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lords Of The Underground", + "title": "Here Come The Lords", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "MC Ren", + "title": "Same Ol' Shit", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 31, + "missing_count": 31, + "needs_manual_review": 31 + } + }, + { + "playlist_title": "1992 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Vince Gill", + "playlist_title": "Don t Let Our Love Start Slippin Away", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "5a3b90f6-5ae6-ae29-81f4-dc3c76ce1656", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Don't Let Our Love Start Slippin' Away (Karaoke).mp4", + "title": "Don't Let Our Love Start Slippin' Away" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "She s Got The Rhythm (And I Got The Blues)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a98fe2-b794-3063-dede-77911d9ade7a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Shes Got The Rhythm And I Got The Blues.mp4", + "title": "She's Got The Rhythm And I Got The Blues" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Garth Brooks", + "playlist_title": "Somewhere Other Than The Night", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "ea66fbea-054d-a2b0-9655-3906f7c07f3f", + "path": "z://MP4\\Let's Sing Karaoke\\Brooks, Garth - Somewhere Other Than The Night (Karaoke & Lyrics).mp4", + "title": "Somewhere Other Than The Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "George Strait", + "playlist_title": "I Cross My Heart", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "56918e08-f952-8c5d-9e6b-0b7c923dcf74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Cross My Heart - George Strait.mp4", + "title": "I Cross My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "Walkaway Joe", + "found_song": { + "artist": "Trisha Yearwood & Don Henley", + "disabled": false, + "favorite": false, + "guid": "7bdb89a8-5b46-4d29-e494-9da26072cb7c", + "path": "z://MP4\\Let's Sing Karaoke\\Yearwood, Trisha & Don Henley - Walkaway Joe (Karaoke & Lyrics).mp4", + "title": "Walkaway Joe" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Brooks", + "playlist_title": "Lost And Found", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3730cfdb-a689-62a5-f965-ccacba93ad0d", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Lost And Found.mp4", + "title": "Lost And Found" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Take It Back", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "438b0561-c140-6807-3dd4-22739af40f01", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Take It Back.mp4", + "title": "Take It Back" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Life s A Dance", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ec716a7-58de-806d-5df9-2cf590de74c8", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Life s A Dance.mp4", + "title": "Life s A Dance" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Two Sparrows In A Hurricane", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "98f385e7-131d-e0e8-9c82-dcb53ccfb990", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Sparrows in a Hurricane - Tanya Tucker.mp4", + "title": "Two Sparrows in a Hurricane" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "I m In A Hurry (And Don t Know Why)", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "56f5d759-8696-2ec2-ed15-d386cfe31a6e", + "path": "z://CDG\\Various\\Alabama - I'm In A Hurry And Don't Know Why.mp3", + "title": "I'm In A Hurry And Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Diamond Rio", + "playlist_title": "In A Week Or Two", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "16427e48-79da-fa21-4209-e7d598d8608c", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - In A Week Or Two (Karaoke & Lyrics).mp4", + "title": "In A Week Or Two" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Clint Black", + "playlist_title": "Burn One Down", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "ed40d111-3869-9ed1-2c93-133d9e49f686", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - BURN IT DOWN (Karaoke Version).mp4", + "title": "BURN IT DOWN" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Lee Roy Parnell", + "playlist_title": "Love Without Mercy", + "found_song": { + "artist": "Lee Roy Parnell", + "disabled": false, + "favorite": false, + "guid": "9bd9fea2-b00d-905a-9fc2-5195bedcebc8", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Roy Parnell - Crocodile Tears (Karaoke).mp4", + "title": "Crocodile Tears" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Anywhere But Here", + "found_song": { + "artist": "Sammy Kershaw ft. Lorrie Morgan", + "disabled": false, + "favorite": false, + "guid": "e90a5e73-0819-2d5b-f4ba-6fd9154aac41", + "path": "z://MP4\\KaraokeOnVEVO\\Sammy Kershaw & Lorrie Morgan - Maybe Not Tonight (Karaoke).mp4", + "title": "Maybe Not Tonight" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Ricky Van Shelton", + "playlist_title": "Wild Man", + "found_song": { + "artist": "Dolly Parton ft. Ricky Van Shelton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "596b5acb-dc1a-7b97-588a-86fbc630bd9a", + "path": "z://MP4\\KaraokeOnVEVO\\Dolly Parton & Ricky Van Shelton - Rockin Years.mp4", + "title": "Rockin' Years" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Doug Stone", + "playlist_title": "Too Busy Being In Love", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "guid": "8e5b4e6f-4eea-48f0-3544-22ffe1b3791a", + "path": "z://MP4\\KaraokeOnVEVO\\Doug Stone - Make Up In Love (Karaoke).mp4", + "title": "Make Up In Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Little Texas", + "playlist_title": "What Were You Thinkin", + "found_song": { + "artist": "Mike Denver", + "disabled": false, + "favorite": false, + "guid": "1c1f4b80-9a4f-6079-2425-03f552768d09", + "path": "z://MP4\\King of Karaoke\\Mike Denver - Who Were You Thinking Of - King of Karaoke.mp4", + "title": "Who Were You Thinking Of" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "John Anderson", + "playlist_title": "Let Go Of The Stone", + "found_song": { + "artist": "John Anderson", + "disabled": false, + "favorite": false, + "guid": "dfa50ff5-c7e1-6d55-d3a1-f79c9cb7483e", + "path": "z://MP4\\Let's Sing Karaoke\\Anderson, John - I Fell In The Water (Karaoke & Lyrics).mp4", + "title": "I Fell In The Water" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Hal Ketchum", + "title": "Sure Love", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Tracy Lawrence", + "title": "Somebody Paints The Wall", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Travis", + "title": "Look Heart, No Hands", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Travis Tritt", + "title": "Can I Trust You With My Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chris LeDoux", + "title": "Cadillac Ranch", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Wynonna", + "title": "My Strongest Weakness", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 7, + "missing_count": 6, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1992 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Wreckx-N-Effect", + "playlist_title": "Rump Shaker", + "found_song": { + "artist": "Wreckx 'N Effect", + "disabled": false, + "favorite": false, + "guid": "88c2d602-ad49-9320-8e32-4dd61ed159d1", + "path": "z://MP4\\Let's Sing Karaoke\\Wreckx 'N Effect - Rump Shaker (Karaoke & Lyrics).mp4", + "title": "Rump Shaker" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Snap", + "playlist_title": "Rhythm Is A Dancer", + "found_song": { + "artist": "Snap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "facc8ac1-2ea9-b145-817c-42c6a450df35", + "path": "z://MP4\\VocalStarKaraoke\\Snap - Rhythm Is A Dancer.mp4", + "title": "Rhythm Is A Dancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "TLC", + "playlist_title": "What About Your Friends", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "592e06e2-d164-63f8-d462-e81f30616bf2", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - TLC - What About Your Friends.mp3", + "title": "What About Your Friends" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Michael Bolton", + "playlist_title": "To Love Somebody", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "4d3909dc-b7d9-e60c-2a80-10f1cfadbfeb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Love Somebody - Michael Bolton.mp4", + "title": "To Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Deeper And Deeper", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "41be10f5-5f83-d11b-558f-af95055b3bfc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD010 - Madonna\\Madonna - Deeper And Deeper - SFG010 - 09.mp3", + "title": "Deeper And Deeper" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eric Clapton", + "playlist_title": "Layla", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb205888-a385-590a-f60f-963df1ea89ce", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eric Clapton - Layla.mp4", + "title": "Layla" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Spin Doctors", + "playlist_title": "Little Miss Can t Be Wrong", + "found_song": { + "artist": "Spin Doctors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b7de7ab-36ac-1f9d-1c2d-3e00e4640468", + "path": "z://MP4\\KaraokeOnVEVO\\Spin Doctors - Little Miss Can t Be Wrong.mp4", + "title": "Little Miss Can t Be Wrong" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Go West", + "playlist_title": "Faithful", + "found_song": { + "artist": "Go West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b323a1ed-74e5-f3e7-33ce-7d5480c88348", + "path": "z://MP4\\ZoomKaraokeOfficial\\Go West - Faithful.mp4", + "title": "Faithful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Annie Lennox", + "playlist_title": "Walking On Broken Glass", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "b771529e-8c8a-c87b-dc0d-3f91be0efcf1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Annie Lennox - Walking On Broken Glass - SF006 - 06.mp3", + "title": "Walking On Broken Glass" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Charles", + "playlist_title": "Would I Lie To You?", + "found_song": { + "artist": "Charles & Eddie", + "disabled": false, + "favorite": false, + "guid": "4c1c7663-2a8e-04d1-31d0-1bbc5498e2bf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Would I Lie To You - Charles & Eddie.mp4", + "title": "Would I Lie To You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "R.E.M.", + "playlist_title": "Drive", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d78e6fb1-7221-6de6-ea92-626842f26161", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - Drive.mp4", + "title": "Drive" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Patty Smyth", + "playlist_title": "Sometimes Love Just Ain t Enough", + "found_song": { + "artist": "Patty Smyth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "822e2cf1-ef7f-bb99-44fc-164dba5c3636", + "path": "z://MP4\\Sing King Karaoke\\Patty Smyth - Sometimes Love Just Ain t Enough.mp4", + "title": "Sometimes Love Just Ain t Enough" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "House Of Pain", + "playlist_title": "Jump Around", + "found_song": { + "artist": "House Of Pain", + "disabled": false, + "favorite": false, + "guid": "b6871e6b-8f0b-c950-9da2-9eb673e3acd9", + "path": "z://MP4\\Let's Sing Karaoke\\House Of Pain - Jump Around (Karaoke & Lyrics).mp4", + "title": "Jump Around" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "U2", + "playlist_title": "Who s Gonna Ride Your Wild Horses", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "bd80dcfd-cb58-1144-173b-15c2486bea3f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - Who's Gonna Ride Your Wild Horses - SFG009 - 13.mp3", + "title": "Who's Gonna Ride Your Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Arrested Development", + "playlist_title": "People Everyday", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f319549-3ac0-6df6-4110-84aef54fdedf", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Arrested Development - People Everyday - SFMW 865 -08.mp3", + "title": "People Everyday" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bon Jovi", + "playlist_title": "Keep The Faith", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "c4be7397-fa85-673a-b9d8-ca334b0310be", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF004\\Bon Jovi - Keep The Faith - SF004 - 04.mp3", + "title": "Keep The Faith" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "En Vogue", + "playlist_title": "Free Your Mind", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "guid": "1e5522c2-5c11-7a52-11ea-bea006cbd1fa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free Your Mind - En Vogue.mp4", + "title": "Free Your Mind" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Jon Secada", + "playlist_title": "Just Another Day", + "found_song": { + "artist": "Jon Secada", + "disabled": false, + "favorite": false, + "guid": "e95b7c10-ee2b-8e78-bff0-109d7f4d4078", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Another Day - Jon Secada.mp4", + "title": "Just Another Day" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Celine Dion", + "playlist_title": "Love Can Move Mountains", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c16b7c48-e093-4398-20f8-fd85a95bd4e7", + "path": "z://MP4\\KaraokeOnVEVO\\Celine Dion - Love Can Move Mountains.mp4", + "title": "Love Can Move Mountains" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Def Leppard", + "playlist_title": "Have You Ever Needed Someone So Bad", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "290ea997-7f18-0121-3f89-e5a828b4d833", + "path": "z://CDG\\SBI\\SBI-04\\SB18222 - Def Leppard - Have You Ever Needed Someone So Bad.mp3", + "title": "Have You Ever Needed Someone So Bad" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dan Baird", + "playlist_title": "I Love You Period", + "found_song": { + "artist": "Dan Baird", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bfe16e5-27d8-834d-f55d-c2cc2000016a", + "path": "z://MP4\\KaraokeOnVEVO\\Dan Baird - I Love You Period.mp4", + "title": "I Love You Period" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Michael Jackson", + "playlist_title": "Heal The World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "83afff40-1864-22b7-505d-d8e85258467e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heal The World - Michael Jackson.mp4", + "title": "Heal The World" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Madonna", + "playlist_title": "Erotica", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6e50d12-54c1-fccb-0a86-932e62437a94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 824\\Madonna - Erotica - SFMW 824 -01.mp3", + "title": "Erotica" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Def Leppard", + "playlist_title": "Stand Up (Kick Love Into Motion)", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5384dce-1efb-8b24-728c-e84bae3cc4d2", + "path": "z://CDG\\SBI\\SBI-01\\SB02159 - Def Leppard - Stand Up (Kick Love Into Motion).mp3", + "title": "Stand Up (Kick Love Into Motion)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Steam", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "193171f8-b557-3b62-30ce-b869c9b98bea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steam - Peter Gabriel.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Positive K", + "playlist_title": "I Got A Man", + "found_song": { + "artist": "Positive K", + "disabled": false, + "favorite": false, + "guid": "2cc07c50-4c69-b0ad-9a3e-091595c760ec", + "path": "z://CDG\\Various\\Positive K - I Got A Man.mp3", + "title": "I Got A Man" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Jade", + "playlist_title": "Don t Walk Away", + "found_song": { + "artist": "Jade", + "disabled": false, + "favorite": false, + "guid": "11daf9a4-ea95-edff-7853-928a72a507e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Walk Away - Jade.mp4", + "title": "Don t Walk Away" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Megadeth", + "playlist_title": "Symphony Of Destruction", + "found_song": { + "artist": "Megadeth", + "disabled": false, + "favorite": false, + "guid": "384942e0-36ac-a861-414a-0a156a5fe6c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Symphony Of Destruction - Megadeth.mp4", + "title": "Symphony Of Destruction" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Guns N Roses", + "playlist_title": "Yesterdays", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "22ebe8a2-e7f6-130c-7216-18c7b1c4d97c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yesterdays - Guns N Roses.mp4", + "title": "Yesterdays" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Will Always Love You (From \"The Bodyguard\")", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "f3ac1990-dfb0-c529-038a-776ed280d1df", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Always Love You (The Bodyguard) - Whitney Houston.mp4", + "title": "I Will Always Love You (The Bodyguard)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Shai", + "playlist_title": "If I Ever Fall In Love", + "found_song": { + "artist": "Kenny Rogers, Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5eac2d32-bf6e-d8d7-f7a3-53bcc3beaaec", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers, Anne Murray - If I Ever Fall in Love Again.mp4", + "title": "If I Ever Fall in Love Again" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Bobby Brown", + "playlist_title": "Good Enough", + "found_song": { + "artist": "Dodgy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24019758-e285-24d2-9f45-500a9e4c3506", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dodgy - Good Enough.mp4", + "title": "Good Enough" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Real Love", + "found_song": { + "artist": "Musiq Soulchild ft. Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "20b1dc63-df7c-8df1-ff8c-7d8cfbe3c6de", + "path": "z://MP4\\Let's Sing Karaoke\\Musiq Soulchild & Mary J Blige - Ifuleave (Karaoke & Lyrics).mp4", + "title": "Ifuleave" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Boyz II Men", + "playlist_title": "End Of The Road (From \"Boomerang\")", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "7b7e83a4-6509-8b36-4046-305fd1096f12", + "path": "z://MP4\\Sing King Karaoke\\Boyz II Men - End Of The Road (Karaoke Version).mp4", + "title": "End Of The Road" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "N2Deep", + "playlist_title": "Back To The Hotel", + "found_song": { + "artist": "N2 Deep", + "disabled": false, + "favorite": false, + "guid": "da1f52a5-420e-e31d-80f5-a0a65bd6f102", + "path": "z://CDG\\Various\\N2 Deep - Back To The Hotel.mp3", + "title": "Back To The Hotel" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Elton John", + "playlist_title": "The Last Song", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "b84d9235-5a06-5a5e-bd94-270219a66909", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The One - Elton John.mp4", + "title": "The One" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Portrait", + "playlist_title": "Here We Go Again!", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "3612aecb-e578-7a52-8713-0db5690e78aa", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF233\\Mario - Here I Go Again - SF233 - 08.mp3", + "title": "Here I Go Again" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Expose", + "playlist_title": "I Wish The Phone Would Ring", + "found_song": { + "artist": "Temptations", + "disabled": false, + "favorite": false, + "guid": "bc7486ae-d1b6-16cf-4fc6-15def2ba6e4e", + "path": "z://CDG\\Various\\Temptations - I Wish It Would Rain.mp3", + "title": "I Wish It Would Rain" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Bell Biv Devoe", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Bell Biv Devoe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eb5ff32-c233-73de-4f12-dce1d62ca30e", + "path": "z://MP4\\Sing King Karaoke\\Bell Biv Devoe - Poison.mp4", + "title": "Poison" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Peabo Bryson", + "playlist_title": "A Whole New World (Aladdin s Theme)", + "found_song": { + "artist": "Peabo Bryson N", + "disabled": false, + "favorite": false, + "guid": "7948c36f-4c5a-0e3c-0be2-680eabe69d63", + "path": "z://CDG\\Various\\Peabo Bryson N - A Whole New World.mp3", + "title": "A Whole New World" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Sade", + "playlist_title": "No Ordinary Love", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "guid": "4307d99f-cfee-ccfe-5501-f4529a9ec036", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Sade - Soldier Of Love - SF290 - 15.mp3", + "title": "Soldier Of Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Arrested Development", + "playlist_title": "Mr. Wendal", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "guid": "28e5bf97-d22b-57c0-3ea7-2c501bc96e12", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Arrested Development - Mr. Wendel - SF050 - 13.mp3", + "title": "Mr. Wendel" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Reminisce", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "eb0f0533-a1b1-579a-c94a-ae6867258074", + "path": "z://CDG\\Various\\Mary J. Blige - Deep Inside.mp3", + "title": "Deep Inside" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Shakespear s Sister", + "playlist_title": "I Don t Care", + "found_song": { + "artist": "Shakespears Sister", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e6c818f-2ef4-a263-3cc1-a1ea7ebe8cc6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Shakespears Sister - Stay.mp4", + "title": "Stay" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Father M.C.", + "playlist_title": "Everything s Gonna Be Alright", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "7ca580a5-0c7f-ae3e-e976-e4781bd84054", + "path": "z://MP4\\King of Karaoke\\Kenny Chesney - Everything's Gonna Be Alright - King of Karaoke.mp4", + "title": "Everything's Gonna Be Alright" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Michael W. Smith", + "playlist_title": "I Will Be Here For You", + "found_song": { + "artist": "Jessica Andrews", + "disabled": false, + "favorite": false, + "guid": "5b2a3f15-4d73-2f97-1675-b14dadbfaa2c", + "path": "z://MP4\\Let's Sing Karaoke\\Andrews, Jessica - I Will Be There For You (Karaoke & Lyrics).mp4", + "title": "I Will Be There For You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "10,000 Maniacs", + "playlist_title": "These Are Days", + "found_song": { + "artist": "10000 Maniacs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fff96a1c-5970-a409-9f60-079fd16446b9", + "path": "z://CDG\\Various\\10000 Maniacs - Like The Weather.mp3", + "title": "Like The Weather" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Chuckii Booker", + "playlist_title": "Games", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "b769ea63-0254-ed4c-ff8e-d349779a0370", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Chuck Berry - Memphis - SF086 - 12.mp3", + "title": "Memphis" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Firehouse", + "playlist_title": "When I Look Into Your Eyes", + "found_song": { + "artist": "Cyrus, Miley", + "disabled": false, + "favorite": false, + "guid": "a42abd26-6d8e-5ae1-4010-1601c8c31c6d", + "path": "z://CDG\\Big Hits Karaoke\\BHK007\\BHK007-02 - Cyrus, Miley - When I Look At You.mp3", + "title": "When I Look At You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "George LaMond", + "playlist_title": "Baby, I Believe In You", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "8dd6f516-19cc-b930-b735-16700ac77539", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Believe In You - Don Williams.mp4", + "title": "I Believe In You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Goddess", + "playlist_title": "Sexual", + "found_song": { + "artist": "Neiked ft. Dyo", + "disabled": false, + "favorite": false, + "guid": "318fc322-112f-3f0b-7537-2a2d8357f652", + "path": "z://MP4\\Sing King Karaoke\\Neiked feat. Dyo - Sexual (Karaoke Version).mp4", + "title": "Sexual" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Al B. Sure!", + "playlist_title": "Right Now", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "9e8f92d2-1201-d7de-6dc1-59bf524fc2fb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF346\\Mary J. Blige - Right Now - SF346 - 11.mp3", + "title": "Right Now" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Kenny G", + "playlist_title": "Forever In Love", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "guid": "50247e77-1a4c-e386-1a9d-6e322dbd63f6", + "path": "z://MP4\\Stingray Karaoke\\Forever Kenny Loggins Karaoke with Lyrics.mp4", + "title": "Forever" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Bad Company", + "playlist_title": "This Could Be The One", + "found_song": { + "artist": "Avicii ft. Nicky Romero", + "disabled": false, + "favorite": false, + "guid": "3b81dad6-32db-d531-3c09-6cffa3af8775", + "path": "z://MP4\\Sing King Karaoke\\I Could Be The One (in the Style of Avicii and Nicky Romero).mp4", + "title": "I Could Be The One" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Billy Ray Cyrus", + "playlist_title": "Could ve Been Me", + "found_song": { + "artist": "Lil Nas X ft. Billy Ray Cyrus", + "disabled": false, + "favorite": false, + "guid": "f541dbf3-1887-db6f-efde-06343021227f", + "path": "z://MP4\\Stingray Karaoke\\Old Town Road Lil Nas X feat. Billy Ray Cyrus Karaoke with Lyrics.mp4", + "title": "Old Town Road" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Cathy Dennis", + "playlist_title": "Irresistible", + "found_song": { + "artist": "The Corrs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ed0e62a-19dc-90d1-1e08-d089c06a9051", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Corrs - Irresistible.mp4", + "title": "Irresistible" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Chante Moore", + "playlist_title": "Love s Taken Over", + "found_song": { + "artist": "Chanté Moore", + "disabled": false, + "favorite": false, + "guid": "efa0c4a4-f3b4-1106-3e5b-c313f38e4a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love s Taken Over - Chanté Moore.mp4", + "title": "Love s Taken Over" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Firehouse", + "playlist_title": "Sleeping With You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "CeCe Peniston", + "playlist_title": "Crazy Love", + "found_song": { + "artist": "CeCe Peniston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67a82eed-0009-8ffc-bce6-052fc3bcc71d", + "path": "z://MP4\\KaraokeOnVEVO\\CeCe Peniston - Finally.mp4", + "title": "Finally" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Tevin Campbell", + "playlist_title": "Alone With You", + "found_song": { + "artist": "Tevin Campbell", + "disabled": false, + "favorite": false, + "guid": "fa3aba80-3f42-6616-456a-dbf5d988c622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Can We Talk - Tevin Campbell.mp4", + "title": "Can We Talk" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Boyz II Men", + "title": "In The Still Of The Nite (From \"The Jacksons\")", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "P.M. Dawn", + "title": "I d Die Without You (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Shanice", + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Heights", + "title": "How Do You Talk To An Angel", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Saigon Kick", + "title": "Love Is On The Way", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jon Secada", + "title": "Do You Believe In Us", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mad Cobra", + "title": "Flex", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Damn Yankees", + "title": "Where You Goin Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Genesis", + "title": "Never A Time", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Prince And The New Power Generation", + "title": "7", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Toad The Wet Sprocket", + "title": "Walk On The Ocean", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "En Vogue", + "title": "Give It Up, Turn It Loose", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lo-Key?", + "title": "I Got A Thang 4 Ya!", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "title": "It s Gonna Be A Lovely Day", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "TLC", + "title": "Baby-Baby-Baby", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "title": "Slow And Sexy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Toni Braxton", + "title": "Love Shoulda Brought You Home (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Lorenz", + "title": "Someone To Hold", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "After 7", + "title": "Baby I m For Real/Natural High", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Hi-Five", + "title": "Quality Time", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Paperboy", + "title": "Ditty", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Color Me Badd", + "title": "Forever Love (From \"Mo Money\")", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "House Of Pain", + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lighter Shade Of Brown", + "title": "Homies", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Soup Dragons", + "title": "Pleasure", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Classic Example", + "title": "It s Alright (From \"South Central\")", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Richard Marx", + "title": "Chains Around My Heart", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jeremy Jordan", + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kris Kross", + "title": "I Missed The Bus", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Ice Cube", + "title": "Wicked", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Smart E s", + "title": "Sesame s Treet", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wynonna", + "title": "No One Else On Earth", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Sound Factory", + "title": "Understand This Groove", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Home Team", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patty Smyth", + "title": "No Mistakes", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "R. Kelly", + "title": "Slow Dance (Hey Mr. DJ)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Grand Puba", + "title": "360 Degrees (What Goes Around)", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "AB Logic", + "title": "Get Up (Move Boy Move)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Arrested Development", + "title": "Revolution (From \"Malcolm X\")", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 31, + "missing_count": 39, + "needs_manual_review": 31 + } + }, + { + "playlist_title": "1991 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Brooks", + "playlist_title": "My Next Broken Heart", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "4a6d02af-1cd1-8d0d-32ab-83b56de7f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Next Broken Heart - Brooks & Dunn.mp4", + "title": "My Next Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Collin Raye", + "playlist_title": "Love, Me", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "guid": "c70bc872-45e9-c64c-b5cf-b472bc1a8fa3", + "path": "z://CDG\\Various\\Collin Raye - Love Me.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Restless Heart", + "playlist_title": "You Can Depend On Me", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "guid": "8a378155-4c63-4fc8-bd25-3f4a0a0c3f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - You Can Depend On Me (Karaoke).mp4", + "title": "You Can Depend On Me" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Vince Gill", + "playlist_title": "Look At Us", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "e81fad00-71d2-2b2c-e444-4e79c40a9e84", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Look At Us (Karaoke).mp4", + "title": "Look At Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "(Without You) What Do I Do With Me", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36f5a79-c851-a9e1-df13-068cf988efe4", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - (Without You What Do I Do With Me.mp4", + "title": "(Without You) What Do I Do With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "Shameless", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "979533e8-fc8b-422f-a3b6-962ee6f397db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shameless - Garth Brooks.mp4", + "title": "Shameless" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Alabama", + "playlist_title": "Then Again", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "cdab64af-a1ca-0b47-b9c8-3dee782bac4e", + "path": "z://CDG\\Various\\Alabama - Then Again.mp3", + "title": "Then Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Travis Tritt", + "playlist_title": "Anymore", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "guid": "8fad3c15-e706-e2c4-3f08-b3be156e9a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anymore - Travis Tritt.mp4", + "title": "Anymore" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Reba McEntire", + "playlist_title": "For My Broken Heart", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "19605922-2071-369c-d3a6-9fa39263b734", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - On My Own (Karaoke).mp4", + "title": "On My Own" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "George Strait", + "playlist_title": "The Chill Of An Early Fall", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "0f761362-7a83-18b5-c06a-0b080f9a1dc7", + "path": "z://CDG\\Various\\George Strait - Chill Of An Early Fall.mp3", + "title": "Chill Of An Early Fall" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Steve Wariner", + "playlist_title": "Leave Him Out Of This", + "found_song": { + "artist": "Steve Wariner", + "disabled": false, + "favorite": false, + "guid": "b46e9f03-14ea-f7b6-e2fb-bebd8157d539", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Wariner - Precious Thing (Karaoke).mp4", + "title": "Precious Thing" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "Sticks And Stones", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "541f880c-ac8b-c853-0820-fa9a9faa609a", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Lawrence - Is That A Tear.mp4", + "title": "Is That A Tear" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Cadillac Style", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79f8e437-fa08-2a8a-746d-c2181cde4c6c", + "path": "z://MP4\\KaraokeOnVEVO\\Sammy Kershaw - Yard Sale.mp4", + "title": "Yard Sale" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Little Texas", + "playlist_title": "Some Guys Have All The Love", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "2cce6d7c-8758-7932-5395-290cc87a8252", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Some Guys Have All The Luck - Rod Stewart.mp4", + "title": "Some Guys Have All The Luck" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "The Remingtons", + "playlist_title": "A Long Time Ago", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "8d66199a-5c5f-b6d0-620b-0e84f006cf26", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking The Dog - The Rolling Stones.mp4", + "title": "Walking The Dog" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Randy Travis", + "playlist_title": "Forever Together", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "guid": "fe19bbe6-bf82-59f9-d08a-9ee5d3dbcb0f", + "path": "z://CDG\\Various\\Randy Travis - Forever Together.mp3", + "title": "Forever Together" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Mary Chapin Carpenter", + "playlist_title": "Going Out Tonight", + "found_song": { + "artist": "Mary Chapin Carpenter", + "disabled": false, + "favorite": false, + "guid": "d2fc4d12-17d0-dcac-674a-9a3c3ddc30ca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Grow Old With Me - Mary Chapin Carpenter.mp4", + "title": "Grow Old With Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Hal Ketchum", + "playlist_title": "I Know Where Love Lives", + "found_song": { + "artist": "Hal Ketchum", + "disabled": false, + "favorite": false, + "guid": "128c2259-1544-e792-92c1-6eaa0293e401", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Saw The Light - Hal Ketchum.mp4", + "title": "I Saw The Light" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Sawyer Brown", + "playlist_title": "The Dirt Road", + "found_song": { + "artist": "Sawyer Brown", + "disabled": false, + "favorite": false, + "guid": "dc911ed9-4bdc-ed2f-0054-4a543a071119", + "path": "z://CDG\\Various\\Sawyer Brown - They Don't Understand.mp3", + "title": "They Don't Understand" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Travis Tritt With Marty Stuart", + "playlist_title": "The Whiskey Ain t Workin", + "found_song": { + "artist": "Marty Stuart ft. Travis Tritt", + "disabled": false, + "favorite": false, + "guid": "171fce1c-17b7-f2c2-d297-c5754abbabaf", + "path": "z://CDG\\Various\\Marty Stuart & Travis Tritt - Whiskey Ain't Workin'.mp3", + "title": "Whiskey Ain't Workin'" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Billy Dean", + "title": "You Don t Count The Cost", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doug Stone", + "title": "A Jukebox With A Country Song", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Suzy Bogguss", + "title": "Someday Soon", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mark Chesnutt", + "title": "Broken Promise Land", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rob Crosby", + "title": "Still Burnin For You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 12, + "missing_count": 5, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "1991 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Michael Jackson", + "playlist_title": "Black Or White", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "4e301e2b-81ed-c936-5f9d-cd6432a451e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Or White - Michael Jackson.mp4", + "title": "Black Or White" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Boyz II Men", + "playlist_title": "It s So Hard To Say Goodbye To Yesterday", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "b3b65daf-f7cb-7ac6-2297-f3368992b7c5", + "path": "z://MP4\\KaraFun Karaoke\\It's So Hard To Say Goodbye To Yesterday - Boyz II Men Karaoke Version KaraFun.mp4", + "title": "It's So Hard To Say Goodbye To Yesterday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Michael Bolton", + "playlist_title": "When A Man Loves A Woman", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "6b24303a-3ec2-bff5-e565-c5229a53c661", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Man Loves A Woman - Michael Bolton.mp4", + "title": "When A Man Loves A Woman" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Can t Let Go", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f8b2222d-9f7a-fd8f-54df-43d07d5ad022", + "path": "z://CDG\\Various\\Mariah Carey - Can't Let Go.mp3", + "title": "Can't Let Go" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Paula Abdul", + "playlist_title": "Blowing Kisses In The Wind", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09f25902-a9ed-f29f-2a8a-0994c2b475ec", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Blowing Kisses In The Wind.mp4", + "title": "Blowing Kisses In The Wind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "CeCe Peniston", + "playlist_title": "Finally", + "found_song": { + "artist": "CeCe Peniston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67a82eed-0009-8ffc-bce6-052fc3bcc71d", + "path": "z://MP4\\KaraokeOnVEVO\\CeCe Peniston - Finally.mp4", + "title": "Finally" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Richard Marx", + "playlist_title": "Keep Coming Back", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "guid": "6604820d-42a6-d56d-d7e5-a49b8425e7d0", + "path": "z://CDG\\Various\\Richard Marx - Keep Coming Back.mp3", + "title": "Keep Coming Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "No Son Of Mine", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "531f696c-bebe-ae1d-b81a-cd9a67adbaf3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - No Son Of Mine.mp4", + "title": "No Son Of Mine" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Naughty By Nature", + "playlist_title": "O.P.P.", + "found_song": { + "artist": "Naughty By Nature", + "disabled": false, + "favorite": false, + "guid": "85c4be82-9d0f-b08f-a38d-245b80b85d8b", + "path": "z://MP4\\Let's Sing Karaoke\\Naughty By Nature - O.P.P (Karaoke & Lyrics).mp4", + "title": "O.P.P" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Let s Talk About Sex", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87f50625-5f4b-3b08-58bc-685816430d31", + "path": "z://MP4\\ZoomKaraokeOfficial\\Salt n Pepa - Lets Talk About Sex.mp4", + "title": "Let's Talk About Sex" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Nirvana", + "playlist_title": "Smells Like Teen Spirit", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "acc840f4-07cb-8e99-9f54-c922c493d6d3", + "path": "z://MP4\\Sing King Karaoke\\Nirvana - Smells Like Teen Spirit (Karaoke Version).mp4", + "title": "Smells Like Teen Spirit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Guns N Roses", + "playlist_title": "Don t Cry", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "87c6dfee-f4a6-f9c2-e5f0-cc606fdce00c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Cry - Guns N Roses.mp4", + "title": "Don t Cry" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bryan Adams", + "playlist_title": "Can t Stop This Thing We Started", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "686df297-f16c-7f93-fded-adfbe4a0429f", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams - Can't Stop This Thing We Started (Karaoke).mp4", + "title": "Can't Stop This Thing We Started" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Shanice", + "playlist_title": "I Love Your Smile", + "found_song": { + "artist": "Shanice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27c630b2-9cd5-da86-05eb-d9d224885750", + "path": "z://MP4\\ZoomKaraokeOfficial\\Shanice - I Love Your Smile.mp4", + "title": "I Love Your Smile" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "U2", + "playlist_title": "Mysterious Ways", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a6ba09d-dce4-12e6-1e87-65ccae7cc08c", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Mysterious Ways.mp4", + "title": "Mysterious Ways" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jodeci", + "playlist_title": "Forever My Lady", + "found_song": { + "artist": "Jodeci", + "disabled": false, + "favorite": false, + "guid": "c26ea9f7-ba97-107b-f50a-a5cadd49aac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Forever My Lady - Jodeci.mp4", + "title": "Forever My Lady" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lisa Stansfield", + "playlist_title": "Change", + "found_song": { + "artist": "Lisa Stansfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329f88d1-0583-05fe-eafc-2f3b3a38e516", + "path": "z://MP4\\KaraokeOnVEVO\\Lisa Stansfield - Change.mp4", + "title": "Change" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Roxette", + "playlist_title": "Spending My Time", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "guid": "a189317a-b84c-c848-3a99-674164acc76a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spending My Time - Roxette.mp4", + "title": "Spending My Time" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Mariah Carey", + "playlist_title": "Emotions", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "ff6aed0f-7ec2-01d5-e520-c272cb5ff280", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Emotions - Mariah Carey.mp4", + "title": "Emotions" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Keith Sweat", + "playlist_title": "Keep It Comin", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "0e9cf55f-32c0-3eb2-0b7c-8796e0c650bf", + "path": "z://MP4\\Let's Sing Karaoke\\Sweat, Keith - Keep It Comin' (Karaoke & Lyrics).mp4", + "title": "Keep It Comin'" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Motley Crue", + "playlist_title": "Home Sweet Home", + "found_song": { + "artist": "Motley Crue", + "disabled": false, + "favorite": false, + "guid": "61b1d137-e467-e8e2-a419-a5494db61450", + "path": "z://MP4\\KtvEntertainment\\Motley Crue - Home Sweet Home Karaoke Lyrics.mp4", + "title": "Home Sweet Home" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Curtis Stigers", + "playlist_title": "I Wonder Why", + "found_song": { + "artist": "Curtis Stigers", + "disabled": false, + "favorite": false, + "guid": "e5347889-a083-bee8-c176-0c9b398703cf", + "path": "z://MP4\\KaraFun Karaoke\\I Wonder Why - Curtis Stigers Karaoke Version KaraFun.mp4", + "title": "I Wonder Why" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Metallica", + "playlist_title": "Enter Sandman", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "97a2ae64-b529-b42f-47fc-8de58b7d4932", + "path": "z://MP4\\Sing King Karaoke\\Metallica - Enter Sandman (Karaoke Version).mp4", + "title": "Enter Sandman" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Kym Sims", + "playlist_title": "Too Blind To See It", + "found_song": { + "artist": "Kym Sims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e890ba5b-cd1c-c186-3cda-1a72f8b19d1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 837\\Kym Sims - Too Blind To See It - SFMW 837 -02.mp3", + "title": "Too Blind To See It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Metallica", + "playlist_title": "The Unforgiven", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "7eb0cde4-545c-1166-86d1-60905de6d2dc", + "path": "z://MP4\\KaraFun Karaoke\\The Unforgiven - Metallica Karaoke Version KaraFun.mp4", + "title": "The Unforgiven" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bonnie Raitt", + "playlist_title": "I Can t Make You Love Me", + "found_song": { + "artist": "Bonnie Raitt", + "disabled": false, + "favorite": false, + "guid": "2ee5f490-acc2-4ff1-fdd3-cf735b03f2a7", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Raitt - I Can't Make You Love Me (Karaoke Version).mp4", + "title": "I Can't Make You Love Me" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Right Said Fred", + "playlist_title": "I m Too Sexy", + "found_song": { + "artist": "Right Said Fred", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edafdc0d-d957-025e-4a62-0332a79d4eef", + "path": "z://MP4\\KaraokeOnVEVO\\Right Said Fred - I m Too Sexy.mp4", + "title": "I m Too Sexy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Mr. Big", + "playlist_title": "To Be With You", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "7239c35f-70f0-47ec-892a-839d36dccea5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be With You - Mr. Big.mp4", + "title": "To Be With You" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Jesus Jones", + "playlist_title": "Real Real Real", + "found_song": { + "artist": "Jesus Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a868484-036b-1f4b-549c-939d0211163f", + "path": "z://MP4\\KaraokeOnVEVO\\Jesus Jones - Real Real Real.mp4", + "title": "Real Real Real" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Give It Away", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "e49b0343-7cb3-283b-9e13-9721a1ccb37c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Away - Red Hot Chili Peppers.mp4", + "title": "Give It Away" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "UB40", + "playlist_title": "Groovin", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "496543d8-c2b4-89bc-4739-ff1311ec7a74", + "path": "z://MP4\\ZoomKaraokeOfficial\\UB40 - Groovin.mp4", + "title": "Groovin'" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "P.M. Dawn", + "playlist_title": "Set Adrift On Memory Bliss", + "found_song": { + "artist": "PM Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ea2f5cd0-8c61-f722-db78-d96006cb10e3", + "path": "z://MP4\\ZoomKaraokeOfficial\\PM Dawn - Set Adrift On Memory Bliss.mp4", + "title": "Set Adrift On Memory Bliss" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Marky Mark", + "playlist_title": "Wildside", + "found_song": { + "artist": "Motley Crue", + "disabled": false, + "favorite": false, + "guid": "6a78a352-d7fe-3546-f573-ebd8546edd21", + "path": "z://CDG\\Various\\Motley Crue - Wildside.mp3", + "title": "Wildside" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Amy Grant", + "playlist_title": "That s What Love Is For", + "found_song": { + "artist": "Amy Grant", + "disabled": false, + "favorite": false, + "guid": "358c4275-ab1c-a800-f35d-2e36d0aad514", + "path": "z://MP4\\KaraokeOnVEVO\\Amy Grant - What About The Love (Karaoke).mp4", + "title": "What About The Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "George Michael/Elton John", + "playlist_title": "Don t Let The Sun Go Down On Me", + "found_song": { + "artist": "George Michael & Elton John", + "disabled": false, + "favorite": false, + "guid": "15a17820-f6f0-d83b-e542-c52a84305191", + "path": "z://CDG\\Various\\George Michael & Elton John - Don't Let The Sun Go Down On Me.mp3", + "title": "Don't Let The Sun Go Down On Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "M.C. Hammer", + "playlist_title": "Addams Groove", + "found_song": { + "artist": "MC Hammer", + "disabled": false, + "favorite": false, + "guid": "ab0352d1-15e0-a630-8fc8-3459c5a33487", + "path": "z://MP4\\KaraFun Karaoke\\Addams Groove - MC Hammer Karaoke Version KaraFun.mp4", + "title": "Addams Groove" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Live For Loving You", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "0e6a7366-7f37-e18d-8127-821292fedf09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anything For You - Gloria Estefan.mp4", + "title": "Anything For You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Roberta Flack With Maxi Priest", + "playlist_title": "Set The Night To Music", + "found_song": { + "artist": "Roberta Flack ft. Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65fef1c6-eef4-7eed-dc30-4cbc3def269c", + "path": "z://MP4\\KaraokeOnVEVO\\Roberta Flack With Maxi Priest - Set The Night To Music.mp4", + "title": "Set The Night To Music" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Rod Stewart", + "playlist_title": "Broken Arrow", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "367905a3-d489-434e-6911-542bafb0da4d", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Stewart, Rod - Moonglow.mp3", + "title": "Moonglow" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Karyn White", + "playlist_title": "Romantic", + "found_song": { + "artist": "Karyn White", + "disabled": false, + "favorite": false, + "guid": "3879eadf-299b-2e2f-6cf2-630676c53ead", + "path": "z://MP4\\Let's Sing Karaoke\\White, Karyn - Superwoman (Karaoke & Lyrics).mp4", + "title": "Superwoman" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Prince And The N.P.G.", + "playlist_title": "Diamonds And Pearls", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "84c8cd1a-6315-9167-ea8a-ed9cdc860123", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD022 - Prince\\Prince - Diamonds & Pearls - SFG022 - 08.mp3", + "title": "Diamonds & Pearls" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Nia Peeples", + "playlist_title": "Street Of Dreams", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "571fae16-592f-d539-e64a-32054c0a2e30", + "path": "z://CDG\\Various\\Fiona Apple - Sleep To Dream.mp3", + "title": "Sleep To Dream" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Karyn White", + "playlist_title": "The Way I Feel About You", + "found_song": { + "artist": "Keane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59b91bd0-e9e1-5bb6-d4ce-4bb65a8a617c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Keane - The Way I Feel.mp4", + "title": "The Way I Feel" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Angelica", + "playlist_title": "Angel Baby", + "found_song": { + "artist": "Rosie ft. The Originals", + "disabled": false, + "favorite": false, + "guid": "c9236cc2-6e87-6ee9-9256-59f3c86bf3f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angel Baby - Rosie & The Originals.mp4", + "title": "Angel Baby" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Cher", + "playlist_title": "Save Up All Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Van Halen", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Brandy & Mase", + "disabled": false, + "favorite": false, + "guid": "b1ef0828-7daf-40aa-c423-bd41a4e8886d", + "path": "z://MP4\\Let's Sing Karaoke\\Brandy & Mase - Top Of The World (Karaoke & Lyrics).mp4", + "title": "Top Of The World" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "D.J. Jazzy Jeff", + "playlist_title": "Ring My Bell", + "found_song": { + "artist": "DJ Jazzy Jeff & The Fresh Prince", + "disabled": false, + "favorite": false, + "guid": "5fb49c11-1830-3e48-71bc-d75eee3a9b56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Summertime - DJ Jazzy Jeff & The Fresh Prince.mp4", + "title": "Summertime" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Lita Ford", + "playlist_title": "Shot Of Poison", + "found_song": { + "artist": "Rita Ora", + "disabled": false, + "favorite": false, + "guid": "7e4aab15-c564-3edd-4af4-fb63ee645985", + "path": "z://MP4\\Sing King Karaoke\\Rita Ora - Poison (Karaoke Version).mp4", + "title": "Poison" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "The Party", + "playlist_title": "In My Dreams", + "found_song": { + "artist": "Steps", + "disabled": false, + "favorite": false, + "guid": "7dd25856-e751-dee3-b60f-6d996e10e097", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD016 - Steps & S Club 7\\Steps - Only In My Dreams - SFG016 - 08.mp3", + "title": "Only In My Dreams" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Scorpions", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "The Scorpions", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3bc15e6-8168-0504-beb1-4bdfc4b62cc5", + "path": "z://MP4\\KaraokeOnVEVO\\Scorpions - Send Me An Angel.mp4", + "title": "Send Me An Angel" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Icy Blu", + "playlist_title": "I Wanna Be Your Girl", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "guid": "0dbafe3b-efe8-9200-deba-642cad5eb728", + "path": "z://MP4\\Sing King Karaoke\\girl in red - i wanna be your girlfriend (Karaoke Version).mp4", + "title": "i wanna be your girlfriend" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Digital Underground", + "playlist_title": "Kiss You Back", + "found_song": { + "artist": "Digital Underground", + "disabled": false, + "favorite": false, + "guid": "d0db19b1-2404-16d4-952b-bb1da5eacd4f", + "path": "z://MP4\\Let's Sing Karaoke\\Digital Underground - Humpty Dance (Karaoke & Lyrics).mp4", + "title": "Humpty Dance" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "C+C Music Factory Presents Zelma Davis", + "playlist_title": "Just A Touch Of Love", + "found_song": { + "artist": "C & C Music Factory", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "423e34fd-28c4-6463-36b5-7ed7737cc449", + "path": "z://MP4\\ZoomKaraokeOfficial\\C & C Music Factory - Just A Touch Of Love.mp4", + "title": "Just A Touch Of Love" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "The Farm", + "playlist_title": "Groovy Train", + "found_song": { + "artist": "The O Jays", + "disabled": false, + "favorite": false, + "guid": "81ca6694-1116-e881-830e-169928195218", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Train - The O Jays.mp4", + "title": "Love Train" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Vanessa Williams", + "playlist_title": "The Comfort Zone", + "found_song": { + "artist": "Vanessa Williams", + "disabled": false, + "favorite": false, + "guid": "01948be8-b119-ea39-2a42-e60cdf6ebc1d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Colors Of The Wind - Vanessa Williams.mp4", + "title": "Colors Of The Wind" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Jody Watley", + "playlist_title": "I Want You", + "found_song": { + "artist": "Bob Dylan", + "disabled": false, + "favorite": false, + "guid": "55666ebd-10aa-35c3-0a82-ea7f57c58a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Want You - Bob Dylan.mp4", + "title": "I Want You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "No More Tears", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "guid": "ed5e9322-ea8e-9c26-6a3d-5362f683be3d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dreamer - Ozzy Osbourne.mp4", + "title": "Dreamer" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Atlantic Starr", + "playlist_title": "Love Crazy", + "found_song": { + "artist": "Atlantic Starr", + "disabled": false, + "favorite": false, + "guid": "3da5110b-cea2-bd33-f86e-19643e31599f", + "path": "z://MP4\\Sing King Karaoke\\Atlantic Starr - Always (Karaoke Version).mp4", + "title": "Always" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Voyce", + "playlist_title": "Within My Heart", + "found_song": { + "artist": "Cocker, Joe", + "disabled": false, + "favorite": false, + "guid": "f165afba-b0d4-9cc7-ac40-d6bf2740714c", + "path": "z://CDG\\Sound Choice Karaoke\\SC2086\\SC2086-15 - Cocker, Joe - Unchain My Heart.mp3", + "title": "Unchain My Heart" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Boyz II Men", + "playlist_title": "Uhh Ahh", + "found_song": { + "artist": "Justin Bieber & Boys II Men", + "disabled": false, + "favorite": false, + "guid": "06f8a46c-45e5-7aa6-ea7f-0fb8c5fc5b82", + "path": "z://MP4\\singsongsmusic\\Fa La La - Karaoke HD (In the style of Justin Bieber & Boys II Men).mp4", + "title": "Fa La La" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "John Mellencamp", + "playlist_title": "Get A Leg Up", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "5ebdf907-f26d-bb09-6e12-df35d98261b0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hurts So Good - John Mellencamp.mp4", + "title": "Hurts So Good" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Tone-Loc", + "playlist_title": "All Through The Night", + "found_song": { + "artist": "Christmas Carol", + "disabled": false, + "favorite": false, + "guid": "72f4c0d4-ea2a-16ae-2285-c0f383917f01", + "path": "z://MP4\\KaraFun Karaoke\\All Through The Night - Christmas Carol Karaoke Version KaraFun.mp4", + "title": "All Through The Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Eddie Money", + "playlist_title": "I ll Get By", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3c0323c-9cd6-268c-9b90-e63238c536f0", + "path": "z://CDG\\Various\\Eddie Money - I Wanna Go Back.mp3", + "title": "I Wanna Go Back" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "The Shamen", + "playlist_title": "Move Any Mountain", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "9a693a1a-68ae-4810-932c-355398a22ce1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF269\\Usher - Moving Mountains - SF269 - 14.mp3", + "title": "Moving Mountains" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "U2", + "playlist_title": "The Fly", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "331be6ec-61e3-5e3b-48d7-6f31aeb4dfbe", + "path": "z://CDG\\Various\\U2 - Fly.mp3", + "title": "Fly" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Simply Red", + "playlist_title": "Something Got Me Started", + "found_song": { + "artist": "Simply Red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22c1baab-4d49-f80f-81dd-3fb5fe744681", + "path": "z://MP4\\ZoomKaraokeOfficial\\Simply Red - Come To My Aid.mp4", + "title": "Come To My Aid" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Guns N Roses", + "playlist_title": "Live And Let Die", + "found_song": { + "artist": "Wings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef8b468f-5cdd-ea13-d488-db5ab3d1d00f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wings - Live And Let Die.mp4", + "title": "Live And Let Die" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Cathy Dennis", + "playlist_title": "Everybody Move", + "found_song": { + "artist": "Cathy Dennis", + "disabled": false, + "favorite": false, + "guid": "7ab5661c-f3ec-e704-44e0-8356ef9a291f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF036\\Cathy Dennis - Touch Me - SF036 - 05.mp3", + "title": "Touch Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "EMF", + "playlist_title": "Lies", + "found_song": { + "artist": "McFly", + "disabled": false, + "favorite": false, + "guid": "a4398de6-1fbf-148f-6dc9-f4d8b7d3eccf", + "path": "z://MP4\\KaraokeOnVEVO\\McFly - Lies (Karaoke).mp4", + "title": "Lies" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Blue Train", + "playlist_title": "All I Need Is You", + "found_song": { + "artist": "Sonny & Cher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d0fc0e-2e3a-d47d-37af-f971d7766f6f", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny & Cher - All I Ever Need Is You.mp4", + "title": "All I Ever Need Is You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Color Me Badd", + "title": "All 4 Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "M.C. Hammer", + "title": "2 Legit 2 Quit", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Prince And The N.P.G.", + "title": "Cream", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Natural Selection", + "title": "Do Anything", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tevin Campbell", + "title": "Tell Me What You Want Me To Do", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stacy Earl", + "title": "Love Me All Up", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Geto Boys", + "title": "Mind Playing Tricks On Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Tracie Spencer", + "title": "Tender Kisses", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Vanessa Williams", + "title": "Running Back To You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Storm", + "title": "I ve Got A Lot To Learn About Love", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Shabba Ranks/Maxi Priest", + "title": "Housecall", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Heavy D", + "title": "Is It Good To You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Public Enemy", + "title": "Can t Truss It", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Natural Selection", + "title": "Hearts Don t Think (They Feel)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Firehouse", + "title": "All She Wrote", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kid N Play", + "title": "Ain t Gonna Hurt Nobody", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Lighter Shade Of Brown", + "title": "On A Sunday Afternoon", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lisette Melendez", + "title": "A Day In My Life (Without You)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "M.C. Breed", + "title": "Ain t No Future In Yo Fronting", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The 2 Live Crew", + "title": "Pop That Coochie", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Corina", + "title": "Whispers", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Laissez Faire", + "title": "In Paradise", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kenny Loggins", + "title": "Conviction Of The Heart", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Big Audio", + "title": "Rush", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bette Midler", + "title": "Every Road Leads Back To You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bryan Adams", + "title": "There Will Never Be Another Tonight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Prince And The N.P.G.", + "title": "Insatiable", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Damian Dame", + "title": "Right Down To It", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The KLF", + "title": "What Time Is Love?", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Hi-Five", + "title": "Just Another Girlfriend", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 39, + "missing_count": 30, + "needs_manual_review": 39 + } + }, + { + "playlist_title": "1990 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "I ve Come To Expect It From You", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7171ebad-890c-1e5c-ac25-6b3a83c8bedc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I ve Come To Expect It From You.mp4", + "title": "I ve Come To Expect It From You" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Garth Brooks", + "playlist_title": "Unanswered Prayers", + "found_song": { + "artist": "Garth-Brooks", + "disabled": false, + "favorite": false, + "guid": "85d9afa3-4463-457c-5ed2-f71602529edb", + "path": "z://MP4\\Garth-Brooks - Unanswered Prayers.mp4", + "title": "Unanswered Prayers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vince Gill", + "playlist_title": "Never Knew Lonely", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7338b4f0-b537-ab01-3640-f93d79798e5f", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Never Knew Lonely.mp4", + "title": "Never Knew Lonely" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alan Jackson", + "playlist_title": "Chasin That Neon Rainbow", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "1f4d757b-ec54-88fd-f03d-41da67d548bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chasin That Neon Rainbow - Alan Jackson.mp4", + "title": "Chasin That Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Clint Black", + "playlist_title": "Put Yourself In My Shoes", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b54e0f62-c936-0492-0916-1d70204dcf07", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Put Yourself In My Shoes.mp4", + "title": "Put Yourself In My Shoes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alabama", + "playlist_title": "Forever s As Far As I ll Go", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7331ad34-7684-60cc-0cc7-4be3d96dc6a8", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Forever s As Far As I ll Go.mp4", + "title": "Forever s As Far As I ll Go" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "Crazy In Love", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23aaeedd-5628-5f88-240d-a284024ff0eb", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Crazy In Love.mp4", + "title": "Crazy In Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carlene Carter", + "playlist_title": "Come On Back", + "found_song": { + "artist": "Carlene Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de1c080a-408e-eb85-3eaf-5927177c2791", + "path": "z://MP4\\KaraokeOnVEVO\\Carlene Carter - Come On Back.mp4", + "title": "Come On Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Rumor Has It", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67ef65ba-e1f1-d297-283a-2d1a4d551b84", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Rumor Has It.mp4", + "title": "Rumor Has It" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paul Overstreet", + "playlist_title": "Daddy s Come Around", + "found_song": { + "artist": "Paul Overstreet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ffff8c62-b0b5-3c0d-a159-33c03eedc4e1", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Overstreet - Daddy s Come Around.mp4", + "title": "Daddy s Come Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kathy Mattea", + "playlist_title": "A Few Good Things Remain", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efc0c893-ac6b-c34d-42a6-48f5036867a5", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - A Few Good Things Remain.mp4", + "title": "A Few Good Things Remain" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Turn It On, Turn It Up, Turn Me Loose", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "da1650dd-17cd-c70a-693d-77c02a9eea3d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turn It On, Turn It Up, Turn Me Loose - Dwight Yoakam.mp4", + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mary Chapin Carpenter", + "playlist_title": "You Win Again", + "found_song": { + "artist": "Mary Chapin Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de29ae80-7768-60c6-2281-43c68f98af22", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Chapin Carpenter - You Win Again.mp4", + "title": "You Win Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "Brother Jukebox", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9a38dce4-0a1a-8410-aa38-089a4cfedc98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brother Jukebox - Mark Chesnutt.mp4", + "title": "Brother Jukebox" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Joe Diffie", + "playlist_title": "Home", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16b97bca-38eb-c147-549e-5c60fab53c52", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Diffie - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Doug Stone", + "playlist_title": "These Lips Don t Know How To Say Goodbye", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b6f266d-8466-8d58-43ce-bf013b52aad7", + "path": "z://MP4\\KaraokeOnVEVO\\Doug Stone - These Lips Don t Know How To Say Goodbye.mp4", + "title": "These Lips Don t Know How To Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lee Greenwood", + "playlist_title": "We ve Got It Made", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40750c64-ccfe-efa6-bbbf-f9bf4d03faa3", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - We ve Got It Made.mp4", + "title": "We ve Got It Made" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Shenandoah", + "playlist_title": "Ghost In This House", + "found_song": { + "artist": "Lauren Duski", + "disabled": false, + "favorite": false, + "guid": "e72c4d71-75aa-a225-aff0-bb43014b6443", + "path": "z://MP4\\KtvEntertainment\\Lauren Duski - Ghost In This House Karaoke.mp4", + "title": "Ghost In This House" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Ricky Van Shelton", + "playlist_title": "Life s Little Ups And Downs", + "found_song": { + "artist": "Ricky Van Shelton", + "disabled": false, + "favorite": false, + "guid": "78ea94f2-ac83-907e-22ca-26642eb8e8db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Life Turned Her That Way - Ricky Van Shelton.mp4", + "title": "Life Turned Her That Way" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Tanya Tucker", + "playlist_title": "It Won t Be Me", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "ca5af3b8-454c-632f-4a2d-a70776b0cfca", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - Call On Me (Karaoke).mp4", + "title": "Call On Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Don Williams", + "playlist_title": "Back In My Younger Days", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "e317352c-9f52-5bad-127a-d6224afb7615", + "path": "z://MP4\\KaraokeOnVEVO\\Don Williams - Stay Young (Karaoke).mp4", + "title": "Stay Young" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "K.T. Oslin", + "title": "Come Next Monday", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Holly Dunn", + "title": "You Really Had Me Going", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rodney Crowell", + "title": "Now That We re Alone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Highway 101", + "title": "Someone Else s Trouble Now", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 4, + "missing_count": 4, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1990 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Madonna", + "playlist_title": "Justify My Love", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "027a9080-c23c-4af1-49fd-ebdf02ca6a1d", + "path": "z://CDG\\Various\\Madonna - Justify My Love.mp3", + "title": "Justify My Love" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bette Midler", + "playlist_title": "From A Distance", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "971de806-b070-b373-30ce-fc3defc13194", + "path": "z://MP4\\Sing King Karaoke\\Bette Midler - From A Distance.mp4", + "title": "From A Distance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Damn Yankees", + "playlist_title": "High Enough", + "found_song": { + "artist": "Damn Yankees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1fea1177-67b3-0780-245e-d14ab7ab9d6d", + "path": "z://MP4\\KaraokeOnVEVO\\Damn Yankees - High Enough.mp4", + "title": "High Enough" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Whitney Houston", + "playlist_title": "I m Your Baby Tonight", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "969aea33-8b24-da72-42ca-b042d429c1a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Your Baby Tonight - Whitney Houston.mp4", + "title": "I m Your Baby Tonight" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "George Michael", + "playlist_title": "Freedom", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "a2751f93-c22f-3774-7f92-07fca42db542", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Freedom! (Karaoke Version).mp4", + "title": "Freedom!" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "UB40", + "playlist_title": "The Way You Do The Things You Do", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "f97c55d2-758f-ae52-5eb7-e12f0c13b8a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way You Do The Things You Do - UB40.mp4", + "title": "The Way You Do The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Janet Jackson", + "playlist_title": "Love Will Never Do (Without You)", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "251b34a9-44d2-8773-8553-047b7e1da66f", + "path": "z://MP4\\TheKARAOKEChannel\\Love Will Never Do (Without You) in the Style of Janet Jackson with lyrics (no lead vocal).mp4", + "title": "Love Will Never Do (Without You)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Poison", + "playlist_title": "Something To Believe In", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78fefc5e-1ce9-20df-e7ec-70b3fc95b711", + "path": "z://MP4\\KaraokeOnVEVO\\Poison - Something To Believe In.mp4", + "title": "Something To Believe In" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "Love Takes Time", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "351212cb-054f-e1be-c23d-e2a93c6df695", + "path": "z://CDG\\Various\\Mariah Carey - Love Takes Time.mp3", + "title": "Love Takes Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Deee-Lite", + "playlist_title": "Groove Is In The Heart", + "found_song": { + "artist": "Deee-Lite", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9947fed-be89-b209-24bb-e15de90d1150", + "path": "z://MP4\\ZoomKaraokeOfficial\\Deee-Lite - Groove Is In The Heart.mp4", + "title": "Groove Is In The Heart" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Winger", + "playlist_title": "Miles Away", + "found_song": { + "artist": "Winger", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0b8442-d996-b273-6e79-3a2ab336ca71", + "path": "z://MP4\\KaraokeOnVEVO\\Winger - Miles Away.mp4", + "title": "Miles Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "C+C Music Factory", + "playlist_title": "Gonna Make You Sweat", + "found_song": { + "artist": "C+C Music Factory", + "disabled": false, + "favorite": false, + "guid": "98203f13-37df-0c6a-9023-ac84ea2a1f67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gonna Make You Sweat - C+C Music Factory.mp4", + "title": "Gonna Make You Sweat" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tony Toni Tone", + "playlist_title": "Feels Good", + "found_song": { + "artist": "Tony! Toni! Tone!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fc77353-14b6-c1e1-a746-6547cdbbceed", + "path": "z://MP4\\KaraokeOnVEVO\\Tony Toni Tone - Feels Good.mp4", + "title": "Feels Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cathy Dennis", + "playlist_title": "Just Another Dream", + "found_song": { + "artist": "Cathy Dennis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73a19ec-d659-e99f-f1be-2b2e290ffa6e", + "path": "z://MP4\\KaraokeOnVEVO\\Cathy Dennis - Just Another Dream.mp4", + "title": "Just Another Dream" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Heart", + "playlist_title": "Stranded", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "a4f68878-b6b2-04f4-82c9-6c86c3848781", + "path": "z://CDG\\Various\\Heart - Stranded.mp3", + "title": "Stranded" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Vanilla Ice", + "playlist_title": "Ice Ice Baby", + "found_song": { + "artist": "Vanilla Ice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13790e7e-e1df-0c18-73b9-ab8afb3f33cc", + "path": "z://MP4\\Sing King Karaoke\\Vanilla Ice - Ice Ice Baby.mp4", + "title": "Ice Ice Baby" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Keith Sweat", + "playlist_title": "I ll Give All My Love To You", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "838309b4-f814-6852-5aec-cf023efac09e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Give All My Love To You - Keith Sweat.mp4", + "title": "I ll Give All My Love To You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "INXS", + "playlist_title": "Disappear", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "0e411e68-daed-393b-6afd-8e8b75fa7289", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Disappear - INXS.mp4", + "title": "Disappear" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Don Henley", + "playlist_title": "New York Minute", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e26ca3ad-9f89-fdbe-c0ba-d299cbedc74b", + "path": "z://CDG\\Various\\Don Henley - New York Minute.mp3", + "title": "New York Minute" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Cher", + "playlist_title": "The Shoop Shoop Song (It s In His Kiss)", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ae96369d-b0cf-a310-0795-673f8a6dd273", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Shoop Shoop Song (It s In His Kiss) - Cher.mp4", + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Black Crowes", + "playlist_title": "Hard To Handle", + "found_song": { + "artist": "The Black Crowes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af840a87-8f6d-ebb2-f103-53532ea5e605", + "path": "z://MP4\\KaraokeOnVEVO\\The Black Crowes - Hard To Handle.mp4", + "title": "Hard To Handle" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Celine Dion", + "playlist_title": "Where Does My Heart Beat Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "0b2bf51a-d9a8-5d69-47d9-7401c1133a01", + "path": "z://CDG\\Various\\Celine Dion - Where Does My Heart Beat Now.mp3", + "title": "Where Does My Heart Beat Now" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Depeche Mode", + "playlist_title": "World In My Eyes", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71d9f2ad-d5e7-16c8-fe95-b62ed71e0ea2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 851\\Depeche Mode - World In My Eyes - SFMW 851-09.mp3", + "title": "World In My Eyes" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Whitney Houston", + "playlist_title": "All The Man That I Need", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "2f74e069-a0e7-4c1c-c9e5-1c8d22d89cbc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Man That I Need - Whitney Houston.mp4", + "title": "All The Man That I Need" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Pebbles", + "playlist_title": "Love Makes Things Happen", + "found_song": { + "artist": "Pebbles & Babyface", + "disabled": false, + "favorite": false, + "guid": "05597459-80e6-33e2-09e0-0896d77372c5", + "path": "z://MP4\\Let's Sing Karaoke\\Pebbles & Babyface - Love Makes Things Happen (Karaoke & Lyrics).mp4", + "title": "Love Makes Things Happen" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "James Ingram", + "playlist_title": "I Don t Have The Heart", + "found_song": { + "artist": "James Ingram", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e5a6ef5-164c-33b6-449a-349ad4d43237", + "path": "z://MP4\\Sing King Karaoke\\James Ingram - I Don t Have The Heart.mp4", + "title": "I Don t Have The Heart" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Iggy Pop With Kate Pierson", + "playlist_title": "Candy", + "found_song": { + "artist": "Iggy Pop With Kate Pierson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f87f199e-20f7-9a3f-fd64-c6f48ae05422", + "path": "z://MP4\\KaraokeOnVEVO\\Iggy Pop With Kate Pierson - Candy.mp4", + "title": "Candy" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Chris Isaak", + "playlist_title": "Wicked Game", + "found_song": { + "artist": "Chris Isaak", + "disabled": false, + "favorite": false, + "guid": "8f5ca710-d98d-e0da-db14-012c7c7297ea", + "path": "z://MP4\\KtvEntertainment\\Chris Isaak - Wicked Game (Karaoke without Vocal).mp4", + "title": "Wicked Game" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Trixter", + "playlist_title": "Give It To Me Good", + "found_song": { + "artist": "Trixter", + "disabled": false, + "favorite": false, + "guid": "9079e6bb-ae71-9036-c044-886ceac3ff1f", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Trixter - Give It To Me Good (Karaoke).mp4", + "title": "Give It To Me Good" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Styx", + "playlist_title": "Show Me The Way", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "76b5e4bf-8b57-e722-bf19-18649764966a", + "path": "z://CDG\\Various\\Styx - Show Me The Way.mp3", + "title": "Show Me The Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Maxi Priest", + "playlist_title": "Just A Little Bit Longer", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc070b88-692a-92a0-1e40-3351ef55c415", + "path": "z://MP4\\ZoomKaraokeOfficial\\Maxi Priest - Just A Little Bit Longer.mp4", + "title": "Just A Little Bit Longer" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Oleta Adams", + "playlist_title": "Get Here", + "found_song": { + "artist": "Oleta Adams", + "disabled": false, + "favorite": false, + "guid": "091c8094-150b-91f9-50d7-61b3fe788e46", + "path": "z://MP4\\Sing King Karaoke\\Oleta Adams - Get Here (Karaoke Version).mp4", + "title": "Get Here" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Billy Joel", + "playlist_title": "And So It Goes", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89e13044-84d2-deb1-eff3-2ad65f2efb29", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - And So It Goes.mp4", + "title": "And So It Goes" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Warrant", + "playlist_title": "Cherry Pie", + "found_song": { + "artist": "Warrant", + "disabled": false, + "favorite": false, + "guid": "4a14271c-2e7b-a663-7e26-09713db0fa4f", + "path": "z://MP4\\Sing King Karaoke\\Warrant - Cherry Pie (Karaoke Version).mp4", + "title": "Cherry Pie" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Janet Jackson", + "playlist_title": "Black Cat", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22d3eb8a-8dee-5998-9c56-8d925e0777ec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Janet Jackson - Black Cat - SFMW 833 -03.mp3", + "title": "Black Cat" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Phil Collins", + "playlist_title": "Something Happened On The Way To Heaven", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46580e8c-6842-1216-71ca-9375e5626e65", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Something Happened On The Way To Heaven.mp4", + "title": "Something Happened On The Way To Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Wilson Phillips", + "playlist_title": "Impulsive", + "found_song": { + "artist": "Wilson Phillips", + "disabled": false, + "favorite": false, + "guid": "21388b48-caee-c70e-7c5c-655e4861145d", + "path": "z://MP4\\You're In Love - Wilson Phillips.mp4", + "title": "You’re In Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Surface", + "playlist_title": "The First Time", + "found_song": { + "artist": "Script, The", + "disabled": false, + "favorite": false, + "guid": "8364c694-90b3-9cf0-0ac8-647bfd2c570e", + "path": "z://CDG\\Big Hits Karaoke\\BHK012\\BHK012-01 - Script, The - For The First Time.mp3", + "title": "For The First Time" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Steve Winwood", + "playlist_title": "One And Only Man", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "guid": "69598642-9d7d-79d9-a1d8-b9ce3fcc1ccf", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Winwood - Holding On (Karaoke).mp4", + "title": "Holding On" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Nelson", + "playlist_title": "After The Rain", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a671ea9-6c96-bd29-c15a-181e103f4f4f", + "path": "z://MP4\\sing2karaoke\\Neil Sedaka - Laughter In The Rain.mp4", + "title": "Laughter In The Rain" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Vanilla Ice", + "playlist_title": "Play That Funky Music", + "found_song": { + "artist": "Wild Cherry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "091f9b81-2d92-d608-b9d2-5590c74524c5", + "path": "z://MP4\\VocalStarKaraoke\\Wild Cherry - Play That Funky Music.mp4", + "title": "Play That Funky Music" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Will To Power", + "playlist_title": "I m Not In Love", + "found_song": { + "artist": "Diana Krall", + "disabled": false, + "favorite": false, + "guid": "db57aba5-6ff6-20be-868e-198e06fec364", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Not in Love - Diana Krall.mp4", + "title": "I m Not in Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Outfield", + "playlist_title": "For You", + "found_song": { + "artist": "The Outfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d993d9c-5f17-4951-f99b-ca0035ce8a7a", + "path": "z://MP4\\Sing King Karaoke\\The Outfield - Your Love (Karaoke Version).mp4", + "title": "Your Love" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Phil Collins", + "playlist_title": "Hang In Long Enough", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "8e0c60df-d5c8-7bd1-8632-da6b3ee65292", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Can t Stop Loving You - Phil Collins.mp4", + "title": "Can t Stop Loving You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Alias", + "playlist_title": "More Than Words Can Say", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "34da1b06-4d7a-5278-5cb5-493fe3f0a5ad", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF148\\Mary J Blige - More Than I Can Say - SF148 - 13.mp3", + "title": "More Than I Can Say" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Debbie Gibson", + "playlist_title": "Anything Is Possible", + "found_song": { + "artist": "Will Young", + "disabled": false, + "favorite": false, + "guid": "931d1f91-69dd-9c57-4c12-637b86b2f6ca", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF190\\Will Young - Anything Is Possible - SF190 - 15.mp3", + "title": "Anything Is Possible" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Robert Palmer", + "playlist_title": "You re Amazing", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb8983aa-e05c-2da8-30de-023f32314b6e", + "path": "z://MP4\\KaraokeOnVEVO\\Robert Palmer - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Donny Osmond", + "playlist_title": "My Love Is A Fire", + "found_song": { + "artist": "Donny Osmond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af597546-7671-19ce-a8ea-6876f947608b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donny Osmond - Puppy Love.mp4", + "title": "Puppy Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Candyman", + "playlist_title": "Knockin Boots", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "acbe8081-5fcb-b658-111d-a42db37388aa", + "path": "z://MP4\\Sing King Karaoke\\Luke Bryan - Knockin' Boots (Karaoke Version).mp4", + "title": "Knockin' Boots" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "So Close", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Elton John", + "playlist_title": "You Gotta Love Someone", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e8680961-1b41-06e3-891f-a988e4fd1674", + "path": "z://MP4\\Sing King Karaoke\\Elton John - Your Song (Karaoke Version).mp4", + "title": "Your Song" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Soho", + "playlist_title": "Hippychick", + "found_song": { + "artist": "Soho", + "disabled": false, + "favorite": false, + "guid": "51749412-32a6-3304-0897-736eadbb7d50", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 877\\Soho - Hippy Chick - SFMW877 - 06.mp3", + "title": "Hippy Chick" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "AC/DC", + "playlist_title": "Moneytalks", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "d9e7b6cd-416d-a36b-38ea-c3f76291586c", + "path": "z://MP4\\Let's Sing Karaoke\\Ac-Dc - Moneytalks (Karaoke & Lyrics).mp4", + "title": "Moneytalks" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "After 7", + "playlist_title": "Heat Of The Moment", + "found_song": { + "artist": "Asia", + "disabled": false, + "favorite": false, + "guid": "66a51c4a-3722-b6b6-ba30-ff9d9e6b4e0b", + "path": "z://MP4\\Let's Sing Karaoke\\Asia - Heat Of The Moment (Karaoke & Lyrics).mp4", + "title": "Heat Of The Moment" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Maxi Priest", + "playlist_title": "Close To You", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "7ef813b2-8828-3c09-b2d7-c3e8bac48129", + "path": "z://MP4\\Let's Sing Karaoke\\Carpenters - Close To You (Karaoke & Lyrics).mp4", + "title": "Close To You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Tony Toni Tone", + "playlist_title": "It Never Rains (In Southern California)", + "found_song": { + "artist": "Albert Hammond", + "disabled": false, + "favorite": false, + "guid": "8db6601e-7ce4-96f3-071b-e624476cbeec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Never Rains In Southern California - Albert Hammond.mp4", + "title": "It Never Rains In Southern California" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Tevin Campbell", + "playlist_title": "Round And Round", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "7a375a27-288d-3465-7a59-cf86df6b139a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Round And Round - Selena Gomez.mp4", + "title": "Round And Round" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Concrete Blonde", + "playlist_title": "Joey", + "found_song": { + "artist": "Concrete Blonde", + "disabled": false, + "favorite": false, + "guid": "2b535d2b-02a2-130d-7ef4-c1368a4635dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tomorrow, Wendy - Concrete Blonde.mp4", + "title": "Tomorrow, Wendy" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Pat", + "playlist_title": "Use It Up And Wear It Out", + "found_song": { + "artist": "Odyssey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebad812b-016d-11c4-74ae-f00b5e3fe377", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Odyssey - Use It Up Wear It Out - SF107 - 05.mp3", + "title": "Use It Up Wear It Out" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "David Cassidy", + "playlist_title": "Lyin To Myself", + "found_song": { + "artist": "David Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c4b73a04-9e76-71f0-1681-a4412105ac37", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Cassidy - I Am A Clown.mp4", + "title": "I Am A Clown" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Tracie Spencer", + "playlist_title": "This House", + "found_song": { + "artist": "Brian Setzer", + "disabled": false, + "favorite": false, + "guid": "019f8394-5c43-0065-f37e-206c19aeeecf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Old House - Brian Setzer.mp4", + "title": "This Old House" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Notorious", + "playlist_title": "The Swalk", + "found_song": { + "artist": "Fitz & The Tantrums", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "b5e4bb3c-e6d8-ca74-0407-141b7681dcb4", + "path": "z://CDG\\Various\\Fitz & The Tantrums - The Walker.mp3", + "title": "The Walker" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "The Party", + "playlist_title": "I Found Love", + "found_song": { + "artist": "The Wanted", + "disabled": false, + "favorite": false, + "guid": "b5e420ff-9062-bab2-c699-25fd4d47f779", + "path": "z://MP4\\singsongsmusic\\I Found you - Karaoke HD (In the style of The Wanted).mp4", + "title": "I Found you" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Timmy T.", + "playlist_title": "One More Try", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "316540c1-b3fd-3433-2060-e8099e043229", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jessie J - One More Try.mp4", + "title": "One More Try" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paul Simon", + "playlist_title": "The Obvious Child", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "8a5a1cad-2c8f-e8c7-3c56-cdda2599601b", + "path": "z://CDG\\Various\\Paul Simon - Obvious Child.mp3", + "title": "Obvious Child" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Nelson", + "playlist_title": "(Can t Live Without Your) Love And Affection", + "found_song": { + "artist": "Nelson", + "disabled": false, + "favorite": false, + "guid": "2174d830-407e-e804-6600-31cf763d656b", + "path": "z://CDG\\Various\\Nelson - Can T Live Without Your Love An.mp3", + "title": "Can T Live Without Your Love An" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Stevie B", + "title": "Because I Love You (The Postman Song)", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "DNA Featuring Suzanne Vega", + "title": "Tom s Diner", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ralph Tresvant", + "title": "Sensitivity", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jon Bon Jovi", + "title": "Miracle (From \"Young Guns II\")", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2 In A Room", + "title": "Wiggle It", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Elisa Fiorillo", + "title": "On The Way Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Gill", + "title": "Fairweather Friend", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Dino", + "title": "Gentle", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "LL Cool J", + "title": "Around The Way Girl", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Breathe Featuring David Glasper", + "title": "Does She Love That Man?", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Too Short", + "title": "The Ghetto", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Warrant", + "title": "I Saw Red", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "M.C. Hammer", + "title": "Pray", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bad Company", + "title": "If You Needed Somebody", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bell Biv Devoe", + "title": "B.B.D. (I Thought It Was Me)?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "George LaMond (Duet With Brenda K. Starr)", + "title": "No Matter What", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Guy", + "title": "I Wanna Get With U", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Cinderella", + "title": "Shelter Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Black Box", + "title": "I Don t Know Anybody Else", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "After 7", + "title": "Can t Stop", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Joey B. Ellis", + "title": "Go For It! (Heart And Fire)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jude Cole", + "title": "House Full Of Reasons", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Information Society", + "title": "Think", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pebbles", + "title": "Giving You The Benefit", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Urban Dance Squad", + "title": "Deeper Shade Of Soul", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "TKA Featuring Michelle Visage", + "title": "Crash (Have Some Fun)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Candyman", + "title": "Melt In Your Mouth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "2nu", + "title": "This Is Ponderous", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Al B. Sure!", + "title": "Missunderstanding", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Cheap Trick", + "title": "Wherever Would I Be", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Slaughter", + "title": "Spend My Life", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Special Generation", + "title": "Love Me Just For Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 30, + "missing_count": 32, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "1989 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Highway 101", + "playlist_title": "Who s Lonely Now", + "found_song": { + "artist": "Highway 101", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d063d77-8486-1553-0917-d32b286d8eae", + "path": "z://MP4\\KaraokeOnVEVO\\Highway 101 - Who s Lonely Now.mp4", + "title": "Who s Lonely Now" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lorrie Morgan", + "playlist_title": "Out Of Your Shoes", + "found_song": { + "artist": "Lorrie Morgan", + "disabled": false, + "favorite": false, + "guid": "86630e60-6858-3f31-7ee1-5e7f9e5b20ef", + "path": "z://MP4\\KaraokeOnVEVO\\Lorrie Morgan - Out Of Your Shoes (Karaoke).mp4", + "title": "Out Of Your Shoes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Keith Whitley", + "playlist_title": "It Ain t Nothin", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463ab131-3c82-65b6-1fd3-849e6246d0a1", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - It Ain t Nothin.mp4", + "title": "It Ain t Nothin" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "My Arms Stay Open All Night", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8971e0d-81db-a24e-2a2a-0000b7a78136", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - My Arms Stay Open All Night.mp4", + "title": "My Arms Stay Open All Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Clint Black", + "playlist_title": "Nobody s Home", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04e7d09c-155b-490b-3b48-b602609a0381", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Nobody s Home.mp4", + "title": "Nobody s Home" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "A Woman In Love", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9c0f048-2710-8ecc-c088-f50ba68e4d81", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - A Woman In Love.mp4", + "title": "A Woman In Love" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Judds", + "playlist_title": "One Man Woman", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "54853e74-6b41-552a-63cd-80af084d17c8", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - One Man Woman (Karaoke).mp4", + "title": "One Man Woman" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kathy Mattea", + "playlist_title": "Where ve You Been", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534dd446-c533-362c-5e75-26e3a873dd80", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - Where ve You Been.mp4", + "title": "Where ve You Been" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Alabama", + "playlist_title": "Southern Star", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce2a832e-dc0d-f144-0aac-e073dfd2a840", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Southern Star.mp4", + "title": "Southern Star" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Holly Dunn", + "playlist_title": "There Goes My Heart Again", + "found_song": { + "artist": "Holly Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab97c128-e58d-c8eb-7efb-c26891ce2ac5", + "path": "z://MP4\\KaraokeOnVEVO\\Holly Dunn - There Goes My Heart Again.mp4", + "title": "There Goes My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "George Strait", + "playlist_title": "Overnight Success", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24cd4634-1252-4f6c-a97d-a9154c2a1c1e", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Overnight Success.mp4", + "title": "Overnight Success" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Glen Campbell", + "playlist_title": "She s Gone, Gone, Gone", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "guid": "6dc3f2ae-60d6-4c00-36ed-95a9558ea5ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rhinestone Cowboy - Glen Campbell.mp4", + "title": "Rhinestone Cowboy" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Willie Nelson", + "playlist_title": "There You Are", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "2c7f7d9f-718f-0827-84f5-2cbedb70fca5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whiskey River (Album Version - Shotgun Willie) - Willie Nelson.mp4", + "title": "Whiskey River" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Charlie Daniels Band", + "playlist_title": "Simple Man", + "found_song": { + "artist": "The Charlie Daniels Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f59da77-18d5-d21a-018f-928cd5679075", + "path": "z://MP4\\KaraokeOnVEVO\\The Charlie Daniels Band - Simple Man.mp4", + "title": "Simple Man" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Nitty Gritty Dirt Band", + "playlist_title": "When It s Gone", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "86f8ea4e-b71b-9f09-6bb3-2b9c43ee618c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Catfish John - Nitty Gritty Dirt Band.mp4", + "title": "Catfish John" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Shenandoah", + "playlist_title": "Two Dozen Roses", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "93afc720-61d0-98b3-76dc-171b538f5865", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - Two Dozen Roses.mp4", + "title": "Two Dozen Roses" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Billy Joe Royal", + "title": "Till I Can t Take It Anymore", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rodney Crowell", + "title": "Many A Long", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Vern Gosdin", + "title": "That Just About Does It", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Skip Ewing", + "title": "It s You Again", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Steve Wariner", + "title": "When I Could Come Home To You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lionel Cartwright", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "Start All Over Again", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ricky Van Shelton", + "title": "Statue Of A Fool", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Baillie And The Boys", + "title": "I Can t Turn The Tide", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 5, + "missing_count": 9, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1989 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Phil Collins", + "playlist_title": "Another Day In Paradise", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a5d9f17-9d7c-072c-7a96-aa6ab601a7f7", + "path": "z://MP4\\Sing King Karaoke\\Phil Collins - Another Day In Paradise.mp4", + "title": "Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Janet Jackson", + "playlist_title": "Rhythm Nation", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "f794088a-ebfe-c50d-7d12-4fbd81ff9ba1", + "path": "z://CDG\\Various\\Janet Jackson - Rhythm Nation.mp3", + "title": "Rhythm Nation" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Linda Ronstadt (Featuring Aaron Neville)", + "playlist_title": "Don t Know Much", + "found_song": { + "artist": "Linda Ronstadt (Featuring Aaron Neville)", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47442c4b-2450-3837-7dbd-e08a9e7f370f", + "path": "z://MP4\\Sing King Karaoke\\Linda Ronstadt (Featuring Aaron Neville) - Don t Know Much.mp4", + "title": "Don t Know Much" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Technotronic", + "playlist_title": "Pump Up The Jam", + "found_song": { + "artist": "Technotronic", + "disabled": false, + "favorite": false, + "guid": "c79f887c-7f69-3a38-eee0-91594df9cc2b", + "path": "z://MP4\\TheKARAOKEChannel\\Technotronic - Pump Up The Jam (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Pump Up The Jam" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Michael Bolton", + "playlist_title": "How Am I Supposed To Live Without You", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "fc93b3a0-c1f3-7592-65ca-47c27e8dc00a", + "path": "z://MP4\\Sing King Karaoke\\Michael Bolton - How Am I Supposed To Live Without You (Karaoke Version).mp4", + "title": "How Am I Supposed To Live Without You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cher", + "playlist_title": "Just Like Jesse James", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "d50c21b2-2272-88f8-c110-036cac8975d4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Jesse James - Cher.mp4", + "title": "Just Like Jesse James" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Billy Joel", + "playlist_title": "We Didn t Start The Fire", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "c43446fe-12a8-0a44-d231-ca4a11416b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Didn t Start the Fire - Billy Joel.mp4", + "title": "We Didn t Start the Fire" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tom Petty", + "playlist_title": "Free Fallin", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d79efc4f-76b4-e4b6-4e0d-3ce1d3d36bbd", + "path": "z://MP4\\Sing King Karaoke\\Tom Petty - Free Fallin.mp4", + "title": "Free Fallin" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tesla", + "playlist_title": "Love Song", + "found_song": { + "artist": "Tesla", + "disabled": false, + "favorite": false, + "guid": "c9ee3818-5bf8-5ff1-60d5-3dc410b49fee", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Tesla - Love Song (Karaoke).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rod Stewart", + "playlist_title": "Downtown Train", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd06a362-8001-5e1c-c853-98efe87f09d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Downtown Train.mp4", + "title": "Downtown Train" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Joe Cocker", + "playlist_title": "When The Night Comes", + "found_song": { + "artist": "Joe Cocker", + "disabled": false, + "favorite": false, + "guid": "26939ee7-7eca-d86a-bc1e-d025e2f83b02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Night Comes - Joe Cocker.mp4", + "title": "When The Night Comes" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Madonna", + "playlist_title": "Oh Father", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "1e2c4b5e-3fa8-d885-7323-9bd89565d61b", + "path": "z://CDG\\Various\\Madonna - Oh Father.mp3", + "title": "Oh Father" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Milli Vanilli", + "playlist_title": "Blame It On The Rain", + "found_song": { + "artist": "Milli Vanilli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dd1a04d-fabc-1e4e-cfb0-ffd7855d488c", + "path": "z://MP4\\Sing King Karaoke\\Milli Vanilli - Blame It On The Rain.mp4", + "title": "Blame It On The Rain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Skid Row", + "playlist_title": "I Remember You", + "found_song": { + "artist": "Skid Row", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1e41936-39c2-d9a5-e8b6-3e7defb9d60b", + "path": "z://MP4\\KaraokeOnVEVO\\Skid Row - I Remember You.mp4", + "title": "I Remember You" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Aerosmith", + "playlist_title": "Janie s Got A Gun", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "fa2499e1-8f53-eade-5920-2c1d324a18d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Janie s Got A Gun - Aerosmith.mp4", + "title": "Janie s Got A Gun" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Paula Abdul", + "playlist_title": "(It s Just) The Way That You Love Me", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d7e884e-0b33-dd56-4eda-a6ebf3384852", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - (It s Just) The Way That You Love Me.mp4", + "title": "(It s Just) The Way That You Love Me" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Young MC", + "playlist_title": "Bust A Move", + "found_song": { + "artist": "Young MC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d444fdc-75f3-1b6a-7544-4f5a1e8973ad", + "path": "z://MP4\\VocalStarKaraoke\\Young MC - Bust A Move.mp4", + "title": "Bust A Move" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bad English", + "playlist_title": "When I See You Smile", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "guid": "b3453c49-94a5-2b17-e340-108f36fa9df1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I See You Smile - Bad English.mp4", + "title": "When I See You Smile" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tina Turner", + "playlist_title": "Steamy Windows", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "b4f795f3-3605-bb63-ad7c-5b0ed84fb138", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steamy Windows - Tina Turner.mp4", + "title": "Steamy Windows" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Roxette", + "playlist_title": "Dangerous", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc1c30a3-9c3d-1f51-8720-d48b1424b885", + "path": "z://MP4\\KaraokeOnVEVO\\Roxette - Dangerous.mp4", + "title": "Dangerous" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Here We Are", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "0f088501-ac14-5ab6-ff4c-0c35813fe135", + "path": "z://MP4\\KaraFun Karaoke\\Here We Are - Gloria Estefan Karaoke Version KaraFun.mp4", + "title": "Here We Are" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Whitesnake", + "playlist_title": "Fool For Your Loving", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef3033ee-c51f-7be1-05c9-432a1a196962", + "path": "z://MP4\\ZoomKaraokeOfficial\\Whitesnake - Fool For Your Loving.mp4", + "title": "Fool For Your Loving" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Richard Marx", + "playlist_title": "Angelia", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7634f49d-0455-731a-a341-4926eab4863c", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Angelia.mp4", + "title": "Angelia" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bad English", + "playlist_title": "Price Of Love", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e60f89e-545c-d4b2-f7c6-ffdce48eff96", + "path": "z://CDG\\SBI\\SBI-03\\SB22764 - Bad English - Price Of Love.mp3", + "title": "Price Of Love" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tears For Fears", + "playlist_title": "Woman In Chains", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "guid": "8eba7e55-dd32-a261-578f-37ce32d324b6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Woman In Chains - Tears For Fears.mp4", + "title": "Woman In Chains" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Leave A Light On", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "331b436f-b84b-8bf6-3b66-775bbb94096b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave a Light On - Belinda Carlisle.mp4", + "title": "Leave a Light On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alice Cooper", + "playlist_title": "Poison", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "guid": "2f86e80a-138e-bd93-a717-17841597cd90", + "path": "z://MP4\\Sing King Karaoke\\Alice Cooper - Poison (Karaoke Version).mp4", + "title": "Poison" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Bonham", + "playlist_title": "Wait For You", + "found_song": { + "artist": "Bonham", + "disabled": false, + "favorite": false, + "guid": "7ae7401b-6477-faa6-8b9e-ad531e7263bb", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Bonham - Wait For You (Karaoke).mp4", + "title": "Wait For You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Marcia Griffiths", + "playlist_title": "Electric Boogie", + "found_song": { + "artist": "Marcia Griffiths", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0646d863-4b62-0e8f-0daf-a9585b70aba9", + "path": "z://MP4\\KaraokeOnVEVO\\Marcia Griffiths - Electric Boogie.mp4", + "title": "Electric Boogie" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Depeche Mode", + "playlist_title": "Personal Jesus", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "211cd52f-1037-568e-718d-f87ba33e7e0f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Personal Jesus - Depeche Mode.mp4", + "title": "Personal Jesus" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eric Clapton", + "playlist_title": "Pretending", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "480e9413-17fb-26e6-2d5a-a15bd3f5dd7a", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Clapton - Pretending.mp4", + "title": "Pretending" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Roxette", + "playlist_title": "Listen To Your Heart", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5081228e-459a-d3d2-06bb-83638ee05409", + "path": "z://MP4\\Sing King Karaoke\\Roxette - Listen To Your Heart.mp4", + "title": "Listen To Your Heart" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Smithereens", + "playlist_title": "A Girl Like You", + "found_song": { + "artist": "The Smithereens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c47f095f-0d19-cef8-799c-1197323fd0a6", + "path": "z://MP4\\KaraokeOnVEVO\\The Smithereens - A Girl Like You.mp4", + "title": "A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Get On Your Feet", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "f3a0c8df-3108-e1b2-006f-071f07ea2623", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Get On Your Feet - Gloria Estefan.mp4", + "title": "Get On Your Feet" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "The Cure", + "playlist_title": "Lullaby", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "6701acd1-d76a-7a37-c8b9-bfb6157baf8a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lullaby - The Cure.mp4", + "title": "Lullaby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Alannah Myles", + "playlist_title": "Black Velvet", + "found_song": { + "artist": "Alannah Myles", + "disabled": false, + "favorite": false, + "guid": "d5f74be8-234e-fa25-98a0-4054502366fd", + "path": "z://MP4\\Sing King Karaoke\\Alannah Myles - Black Velvet (Karaoke Version).mp4", + "title": "Black Velvet" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Janet Jackson", + "playlist_title": "Miss You Much", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dbbfe97-3881-a1c8-445d-ae3e149b7af1", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Miss You Much.mp4", + "title": "Miss You Much" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Cover Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "060143be-3b5e-38b7-4356-e6ac621c2b42", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - Cover Girl.mp4", + "title": "Cover Girl" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Taylor Dayne", + "playlist_title": "With Every Beat Of My Heart", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "guid": "500436af-78fd-c7a3-9890-4f0ea421350a", + "path": "z://MP4\\Sing King Karaoke\\Taylor Dayne - Tell It To My Heart (Karaoke Version).mp4", + "title": "Tell It To My Heart" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "New Kids On The Block", + "playlist_title": "This One s For The Children", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "guid": "c87d7bb4-a751-7ead-98fb-7a4aa0ae26a6", + "path": "z://MP4\\TheKARAOKEChannel\\Please Don t Go Girl in the Style of New Kids on the Block with lyrics (no lead vocal).mp4", + "title": "Please Don t Go Girl" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Jody Watley", + "playlist_title": "Everything", + "found_song": { + "artist": "Jody Watley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eedc3a7-2385-ccfb-3aca-105675d5e071", + "path": "z://MP4\\KaraokeOnVEVO\\Jody Watley - Real Love.mp4", + "title": "Real Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Soul II Soul", + "playlist_title": "Back To Life", + "found_song": { + "artist": "Soul Ii Soul", + "disabled": false, + "favorite": false, + "guid": "8a585100-63ca-1923-c1cc-91d9f69253bd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF011\\Soul Ii Soul - Back To Life (however Do You Want - SF011 - 02.mp3", + "title": "Back To Life (however Do You Want" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Bon Jovi", + "playlist_title": "Living In Sin", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "cd295148-5c41-0ba3-8dfa-eb16dffb1142", + "path": "z://CDG\\Various\\Bon Jovi - Living In The Sun.mp3", + "title": "Living In The Sun" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "f2f7be48-02cd-0752-72c6-55d41f037dd3", + "path": "z://MP4\\TheKARAOKEChannel\\The Rolling Stones - Not Fade Away.mp4", + "title": "Not Fade Away" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Eddie Money", + "playlist_title": "Peace In Our Time", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "371772f0-cf7d-8671-a9b1-2014e9548b7c", + "path": "z://CDG\\Various\\Eddie Money - Fall In Love Again.mp3", + "title": "Fall In Love Again" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Kix", + "playlist_title": "Don t Close Your Eyes", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "guid": "f5db063a-5838-7f55-87db-ed0b4b375c6e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Close Your Eyes - Keith Whitley.mp4", + "title": "Don t Close Your Eyes" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Paula Abdul (Duet With The Wild Pair)", + "playlist_title": "Opposites Attract", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "062d5da8-3091-4be0-b83d-dcaa4ea81579", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paula Abdul - Opposites Attract.mp4", + "title": "Opposites Attract" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Shana", + "playlist_title": "I Want You", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "66ea8060-783e-bab5-f589-014d3b51bd11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Want You - Marvin Gaye.mp4", + "title": "I Want You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Poco", + "playlist_title": "Nothin To Hide", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "guid": "783baf73-8ce9-ca75-9fa2-2ce685f668de", + "path": "z://MP4\\TheKARAOKEChannel\\Nothin But A Good Time in the Style of Poison karaoke video with lyrics (no lead vocal).mp4", + "title": "Nothin But A Good Time" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Michel le", + "playlist_title": "No More Lies", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "a8601b46-94d5-1321-e039-c2abf98fe536", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Oh Marie - Michael Bublé.mp4", + "title": "Oh Marie" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The 2 Live Crew", + "playlist_title": "Me So Horny", + "found_song": { + "artist": "2 Live Crew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4b11a2-6ec2-45da-6e74-7e4db71e8aff", + "path": "z://CDG\\Various\\2 Live Crew - Me So Horny.mp3", + "title": "Me So Horny" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Milli Vanilli", + "playlist_title": "All Or Nothing", + "found_song": { + "artist": "Small Faces", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c74b249-8054-e46e-88c2-f8f663ae3d0f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 818\\Small Faces - All Or Nothing - SFMW 818 -10.mp3", + "title": "All Or Nothing" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Jaya", + "playlist_title": "If You Leave Me Now", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38ba257-4e3b-4b04-10a2-3d7ef66fa8c3", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - If You Leave Me Now.mp4", + "title": "If You Leave Me Now" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Paul Carrack", + "playlist_title": "I Live By The Groove", + "found_song": { + "artist": "Paul Carrack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "66722545-8c9a-fb1b-6ab4-706e98c31382", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul Carrack - I Need You.mp4", + "title": "I Need You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Jermaine Jackson", + "playlist_title": "Don t Take It Personal", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "0fa91067-79ef-af0a-90e6-ecbc31b8dc44", + "path": "z://MP4\\Let's Sing Karaoke\\Monica - Don't Take It Personal (Karaoke & Lyrics).mp4", + "title": "Don't Take It Personal" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Great White", + "playlist_title": "The Angel Song", + "found_song": { + "artist": "Great White", + "disabled": false, + "favorite": false, + "guid": "f39c644e-f13f-6af5-2b25-2aaf2f474199", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Great White - Wasted Rock Ranger (Karaoke).mp4", + "title": "Wasted Rock Ranger" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Pajama Party", + "playlist_title": "Over And Over", + "found_song": { + "artist": "Bobby Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9d64ab50-1270-8509-37fe-bb3ad76e6e0b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Day - Over And Over.mp4", + "title": "Over And Over" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Luther Vandross", + "playlist_title": "Here And Now", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "56e48185-07a1-b089-19b3-0ccfafde3224", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here and Now - Luther Vandross.mp4", + "title": "Here and Now" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "The B-52 s", + "playlist_title": "Roam", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "9fa5cf7d-07c5-2a74-05d3-b45859af788c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Roam - The B-52 s.mp4", + "title": "Roam" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Kenny G", + "playlist_title": "Going Home", + "found_song": { + "artist": "Leon Bridges", + "disabled": false, + "favorite": false, + "guid": "39f4caf5-02e7-4ff5-0a7d-f4fe56a4e213", + "path": "z://MP4\\King of Karaoke\\Leon Bridges - Coming Home - King of Karaoke.mp4", + "title": "Coming Home" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Neneh Cherry", + "playlist_title": "Heart", + "found_song": { + "artist": "Neneh Cherry", + "disabled": false, + "favorite": false, + "guid": "786ac9fd-a026-4112-c1c6-56be75a68831", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF061\\Neneh Cherry - Woman - SF061 - 02.mp3", + "title": "Woman" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Didn t I (Blow Your Mind)", + "found_song": { + "artist": "The Delfonics", + "disabled": false, + "favorite": false, + "guid": "dff21f5d-da79-f8c9-2c6b-ebde7875d851", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Didn t I (Blow Your Mind) - The Delfonics.mp4", + "title": "Didn t I (Blow Your Mind)" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Kiss", + "playlist_title": "Hide Your Heart", + "found_song": { + "artist": "Noisettes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd1fe81c-95c1-5f52-458f-d2ffdb6f48a9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Noisettes - Wild Young Hearts.mp4", + "title": "Wild Young Hearts" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Loverboy", + "playlist_title": "Too Hot", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "ea1edf27-169f-b935-469c-c49130d728ba", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Hot - Kool And The Gang.mp4", + "title": "Too Hot" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Michael Morales", + "playlist_title": "I Don t Know", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "dba750bb-b03e-dc8c-282a-1a055a0b94cb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Don t Know Me - Michael Bublé.mp4", + "title": "You Don t Know Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Sharon Bryant", + "playlist_title": "Foolish Heart", + "found_song": { + "artist": "Steve Perry", + "disabled": false, + "favorite": false, + "guid": "2ffe5cec-42e1-3082-21b0-cbd00222e4fd", + "path": "z://MP4\\Let's Sing Karaoke\\Perry, Steve - Foolish Heart (Karaoke & Lyrics) (2).mp4", + "title": "Foolish Heart" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "After 7", + "playlist_title": "Heat Of The Moment", + "found_song": { + "artist": "Asia", + "disabled": false, + "favorite": false, + "guid": "66a51c4a-3722-b6b6-ba30-ff9d9e6b4e0b", + "path": "z://MP4\\Let's Sing Karaoke\\Asia - Heat Of The Moment (Karaoke & Lyrics).mp4", + "title": "Heat Of The Moment" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Hooters", + "playlist_title": "500 Miles", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "29d4444f-0af5-f4ff-b287-b5f9506aa77c", + "path": "z://MP4\\KaraFun Karaoke\\2000 Miles - The Pretenders Karaoke Version KaraFun.mp4", + "title": "2000 Miles" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Jive Bunny", + "title": "Swing The Mood", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lou Gramm", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Seduction", + "title": "Two To Make It Right", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Quincy Jones Featuring Ray Charles", + "title": "I ll Be Good To You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Babyface", + "title": "Tender Lover", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chicago", + "title": "What Kind Of Man Would I Be?", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Expose", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Michael Damian", + "title": "Was It Nothing At All", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Young MC", + "title": "Principal s Office", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Motley Crue", + "title": "Kickstart My Heart", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Sybil", + "title": "Don t Make Me Over", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Cover Girls", + "title": "We Can t Go Wrong", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Don Henley", + "title": "The Last Worthless Evening", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Fiona (Duet With Kip Winger)", + "title": "Everything You Do (You re Sexing Me)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "D-Mob With Cathy Dennis", + "title": "C Mon And Get My Love", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "SaFire", + "title": "I Will Survive (From \"She-Devil\")", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Prince (With Sheena Easton)", + "title": "The Arms Of Orion", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Kevin Paige", + "title": "Don t Shut Me Out", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dino", + "title": "Never 2 Much Of U", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Christopher Max", + "title": "Serious Kinda Girl", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Brown", + "title": "Rock Wit cha", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Warrant", + "title": "Sometimes She Cries", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Michael Penn", + "title": "No Myth", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Diving For Pearls", + "title": "Gimme Your Good Lovin", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lil Louis", + "title": "French Kiss", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Abstrac", + "title": "Right And Hype", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Stevie B", + "title": "Girl I Am Searching For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Starship", + "title": "I Didn t Mean To Stay All Night", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Christopher Williams", + "title": "Talk To Myself", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Saraya", + "title": "Back To The Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chunky A", + "title": "Owwww!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 30, + "missing_count": 31, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "1988 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Keith Whitley", + "playlist_title": "When You Say Nothing At All", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3cce4a7-dc68-ff72-deb2-70e2a7dad4e4", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - When You Say Nothing At All.mp4", + "title": "When You Say Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Hold Me", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07c9069a-e436-f589-f863-663ce2ef2dc6", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Hold Me.mp4", + "title": "Hold Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Judds", + "playlist_title": "Change Of Heart", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ac5b018-10b8-6ad6-254e-ad2e13d8c878", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Change Of Heart.mp4", + "title": "Change Of Heart" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Patty Loveless", + "playlist_title": "Blue Side Of Town", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abe31cb1-f020-7473-4ae0-45348990ab77", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - Blue Side Of Town.mp4", + "title": "Blue Side Of Town" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Alabama", + "playlist_title": "Song Of The South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1040781-3136-7881-173b-9b0caa59848c", + "path": "z://CDG\\Various\\Alabama - Song Of The South.mp3", + "title": "Song Of The South" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "I Sang Dixie", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7fb88921-88ab-22d1-7a41-ccd3e5740b69", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - I Sang Dixie.mp4", + "title": "I Sang Dixie" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Paul Overstreet", + "playlist_title": "Love Helps Those", + "found_song": { + "artist": "Paul Overstreet", + "disabled": false, + "favorite": false, + "guid": "81bdfbd9-d9fb-6195-ef93-d9d7d3112c0b", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Overstreet - All The Fun (Karaoke).mp4", + "title": "All The Fun" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "We Must Be Doin Somethin Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Randy Travis", + "playlist_title": "Deeper Than The Holler", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f1f007dc-512c-3795-a116-b6cb206c07a6", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Travis - Deeper Than The Holler.mp4", + "title": "Deeper Than The Holler" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Restless Heart", + "playlist_title": "A Tender Lie", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9727a829-9531-aee9-5360-85593796f1b7", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - Wheels.mp4", + "title": "Wheels" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The Forester Sisters", + "playlist_title": "Sincerely", + "found_song": { + "artist": "The McGuire Sisters", + "disabled": false, + "favorite": false, + "guid": "3a25e24b-ead0-7589-761b-263d375f3b2e", + "path": "z://MP4\\Let's Sing Karaoke\\McGuire Sisters, The - Sincerely (Karaoke & Lyrics).mp4", + "title": "Sincerely" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Shenandoah", + "title": "Mama Knows", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rodney Crowell", + "title": "She s Crazy For Leaving", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baillie And The Boys", + "title": "Long Shot", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Highway 101", + "title": "All The Reasons Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Steve Wariner", + "title": "Hold On (A Little Longer)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Statler Brothers", + "title": "Let s Get Started If We re Gonna Break My Heart", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Skip Ewing", + "title": "Burnin A Hole In My Heart", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Earl Thomas Conley", + "title": "What I d Say", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Hank Williams Jr.", + "title": "Early In The Morning And Late At Night", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Dan Seals", + "title": "Big Wheels In The Moonlight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kathy Mattea", + "title": "Life As We Knew It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Shooters", + "title": "Borderline", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Holly Dunn", + "title": "(It s Always Gonna Be) Someday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gene Watson", + "title": "Don t Waste It On The Blues", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 5, + "missing_count": 14, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1988 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Poison", + "playlist_title": "Every Rose Has Its Thorn", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "guid": "843a019e-53b2-390a-1bd1-5ee451844337", + "path": "z://MP4\\Sing King Karaoke\\Poison - Every Rose Has Its Thorn (Karaoke Version).mp4", + "title": "Every Rose Has Its Thorn" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Brown", + "playlist_title": "My Prerogative", + "found_song": { + "artist": "Bobby Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48d083f6-39cd-484f-9108-7b78209ce0ca", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Brown - My Prerogative.mp4", + "title": "My Prerogative" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chicago", + "playlist_title": "Look Away", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "7966ad8e-9750-e67f-9ebd-badaeb3483fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Look Away - Chicago.mp4", + "title": "Look Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Anita Baker", + "playlist_title": "Giving You The Best That I Got", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "f19d0c5f-df99-5be9-7715-58fa5120f3ee", + "path": "z://MP4\\Let's Sing Karaoke\\Baker, Anita - Giving You The Best That I Got (Karaoke & Lyrics).mp4", + "title": "Giving You The Best That I Got" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boy Meets Girl", + "playlist_title": "Waiting For A Star To Fall", + "found_song": { + "artist": "Boy Meets Girl", + "disabled": false, + "favorite": false, + "guid": "49f214c9-ab7d-5374-1979-a81b53015074", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting for a Star to Fall - Boy Meets Girl.mp4", + "title": "Waiting for a Star to Fall" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Phil Collins", + "playlist_title": "Two Hearts", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74ec3fcc-9629-d8e7-c7d1-413c98138f08", + "path": "z://MP4\\ZoomKaraokeOfficial\\Phil Collins - Two Hearts.mp4", + "title": "Two Hearts" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Guns N Roses", + "playlist_title": "Welcome To The Jungle", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "3be4e2af-c5c5-8662-730f-7ffecc5f7b09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To The Jungle - Guns N Roses.mp4", + "title": "Welcome To The Jungle" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Eddie Money", + "playlist_title": "Walk On Water", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "guid": "4028b71e-9ecb-b390-ba33-50747506db39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On Water - Eddie Money.mp4", + "title": "Walk On Water" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Don t Rush Me", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8bc07eb-7cc4-cf82-4d40-77981fa572bb", + "path": "z://MP4\\KaraokeOnVEVO\\Taylor Dayne - Don t Rush Me.mp4", + "title": "Don t Rush Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Michael Jackson", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "1588a558-9582-4b5f-b8d3-fb21cfb12e43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Michael Jackson.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Duran Duran", + "playlist_title": "I Don t Want Your Love", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "5384c5fb-67fe-4599-40f6-89f0f6a1cae6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - I Don't Want Your Love - SFG004 - 15.mp3", + "title": "I Don't Want Your Love" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Breathe", + "playlist_title": "How Can I Fall?", + "found_song": { + "artist": "Breathe", + "disabled": false, + "favorite": false, + "guid": "d4680b88-5c46-9f72-27a3-5b6bdd54b584", + "path": "z://MP4\\Let's Sing Karaoke\\Breathe - How Can I Fall (Karaoke & Lyrics).mp4", + "title": "How Can I Fall" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "When In Rome", + "playlist_title": "The Promise", + "found_song": { + "artist": "When In Rome", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06e11ff9-101e-e7aa-160d-93da5dbae664", + "path": "z://MP4\\KaraokeOnVEVO\\When In Rome - The Promise.mp4", + "title": "The Promise" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Annie Lennox", + "playlist_title": "Put A Little Love In Your Heart", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "2ed6cc1d-82b9-ace3-3e38-8f7262a194d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Put A Little Love In Your Heart - Annie Lennox.mp4", + "title": "Put A Little Love In Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Robert Palmer", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb8983aa-e05c-2da8-30de-023f32314b6e", + "path": "z://MP4\\KaraokeOnVEVO\\Robert Palmer - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tiffany", + "playlist_title": "All This Time", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "350e6960-7760-7411-54e8-de5b965eb0c5", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - All This Time (Karaoke Version).mp4", + "title": "All This Time" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "White Lion", + "playlist_title": "When The Children Cry", + "found_song": { + "artist": "White Lion", + "disabled": false, + "favorite": false, + "guid": "13d46af3-ff8a-5a08-7786-a5c8f85f0929", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Children Cry - White Lion.mp4", + "title": "When The Children Cry" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bon Jovi", + "playlist_title": "Born To Be My Baby", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "d652d0f8-35dd-c6b1-e949-7f3e5ccbfdfe", + "path": "z://CDG\\Various\\Bon Jovi - Born To Be My Baby.mp3", + "title": "Born To Be My Baby" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Steve Winwood", + "playlist_title": "Holding On", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "guid": "69598642-9d7d-79d9-a1d8-b9ce3fcc1ccf", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Winwood - Holding On (Karaoke).mp4", + "title": "Holding On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Maxi Priest", + "playlist_title": "Wild World", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "guid": "2292f122-a7ae-f988-cd82-3870eeba2871", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Maxi Priest.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Samantha Fox", + "playlist_title": "I Wanna Have Some Fun", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "guid": "cf73cf9a-69fa-1898-3486-42800b78a79b", + "path": "z://CDG\\Various\\Samantha Fox - I Wanna Have Some Fun.mp3", + "title": "I Wanna Have Some Fun" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Paula Abdul", + "playlist_title": "Straight Up", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bdbaff-639d-96c3-3d9f-b9fb67a4fe4b", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Straight Up.mp4", + "title": "Straight Up" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Desire", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cdac18f-d5e4-bdc1-7ccc-40d0834fe1c7", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Desire.mp4", + "title": "Desire" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Tone-Loc", + "playlist_title": "Wild Thing", + "found_song": { + "artist": "Tone Loc", + "disabled": false, + "favorite": false, + "guid": "44bbe03b-643b-ed9b-c5d2-c56ed259e20b", + "path": "z://MP4\\Let's Sing Karaoke\\Tone Loc - Wild Thing (Karaoke & Lyrics).mp4", + "title": "Wild Thing" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Bon Jovi", + "playlist_title": "Bad Medicine", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "732b4b3f-b868-a553-c4e3-17b10ecee80c", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Bad Medicine (Karaoke Version).mp4", + "title": "Bad Medicine" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rick Astley", + "playlist_title": "She Wants To Dance With Me", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf93a099-30de-dc5a-e96c-5b9ccda23ef6", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Astley - She Wants To Dance With Me.mp4", + "title": "She Wants To Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Edie Brickell", + "playlist_title": "What I Am", + "found_song": { + "artist": "Edie Brickell", + "disabled": false, + "favorite": false, + "guid": "013bd844-ef0e-d927-7fd1-b348fb6e4c57", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What I Am - Edie Brickell.mp4", + "title": "What I Am" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "New Kids On The Block", + "playlist_title": "You Got It (The Right Stuff)", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17b2d73f-f93b-2c12-4bf2-a069122ac1c3", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - You Got It (The Right Stuff.mp4", + "title": "You Got It (The Right Stuff)" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Baby Can I Hold You", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "f6d684e6-c96d-0cd9-2bb8-21c4fe1fabf0", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Baby Can I Hold You (Karaoke Version).mp4", + "title": "Baby Can I Hold You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kylie Minogue", + "playlist_title": "The Loco-Motion", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed27ee4a-1f84-0a6b-612f-bc4173100836", + "path": "z://MP4\\Sing King Karaoke\\Kylie Minogue - The Loco Motion.mp4", + "title": "The Loco Motion" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "U2", + "playlist_title": "Angel Of Harlem", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef9260e-8305-8fdb-c94e-321a3d1a49c4", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Angel Of Harlem.mp4", + "title": "Angel Of Harlem" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Erasure", + "playlist_title": "A Little Respect", + "found_song": { + "artist": "Erasure", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8034434b-38d9-0f24-b237-bf8945c4a573", + "path": "z://CDG\\Various\\Erasure - A Little Respect.mp3", + "title": "A Little Respect" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Phil Collins", + "playlist_title": "Groovy Kind Of Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "99763a6a-8799-5364-6750-c3ac0737ff48", + "path": "z://MP4\\Let's Sing Karaoke\\Collins, Phil - Groovy Kind Of Love (Karaoke & Lyrics).mp4", + "title": "Groovy Kind Of Love" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "As Long As You Follow", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41f38a9e-247b-f36c-8e1a-de8a0131c183", + "path": "z://MP4\\KaraokeOnVEVO\\Fleetwood Mac - As Long As You Follow.mp4", + "title": "As Long As You Follow" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Michael", + "playlist_title": "Kissing A Fool", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "d570b4d7-77c3-f106-0825-d52d22dbd874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kissing a Fool - George Michael.mp4", + "title": "Kissing a Fool" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rod Stewart", + "playlist_title": "My Heart Can t Tell You No", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5a0ddb9-f89e-0d5d-4e80-a40aae620105", + "path": "z://MP4\\KaraokeOnVEVO\\Rod Stewart - My Heart Can t Tell You No.mp4", + "title": "My Heart Can t Tell You No" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Alphaville", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c37bf32-76ae-e13a-3691-8e5732002f2c", + "path": "z://MP4\\Sing King Karaoke\\Alphaville - Forever Young.mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "UB40", + "playlist_title": "Red Red Wine", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "25c549fb-8a28-8530-4142-8f6479539bb6", + "path": "z://MP4\\Sing King Karaoke\\UB40 - Red Red Wine (Karaoke Version) (2).mp4", + "title": "Red Red Wine" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Rod Stewart", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "aa97b8b4-2f2f-030c-1611-e35cd9f34d7d", + "path": "z://MP4\\Stingray Karaoke\\Rod Stewart - Forever Young (Karaoke Version).mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Mike", + "playlist_title": "Nobody s Perfect", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ccab1e2-09fa-6510-54b4-7d005afb09b3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Nobodys Perfect.mp4", + "title": "Nobody's Perfect" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "INXS", + "playlist_title": "Never Tear Us Apart", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "4a8eaec9-5ec2-22ef-cc5d-b3658fcf2300", + "path": "z://MP4\\Sing King Karaoke\\INXS - Never Tear Us Apart (Karaoke Version).mp4", + "title": "Never Tear Us Apart" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Duran Duran", + "playlist_title": "All She Wants Is", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "2864f66e-fb8f-3f3c-c6c2-714e2d5d4408", + "path": "z://MP4\\KaraokeOnVEVO\\Duran Duran - All She Wants Is (Karaoke).mp4", + "title": "All She Wants Is" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Fairground Attraction", + "playlist_title": "Perfect", + "found_song": { + "artist": "Fairground Attraction", + "disabled": false, + "favorite": false, + "guid": "06772cdc-41e0-bb6d-6367-104651cfef0e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect - Fairground Attraction.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Def Leppard", + "playlist_title": "Love Bites", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6ab8aed-74ab-b82a-042f-f583966a2d67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Def Leppard - Love Bites.mp4", + "title": "Love Bites" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Please Don t Go Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "guid": "c87d7bb4-a751-7ead-98fb-7a4aa0ae26a6", + "path": "z://MP4\\TheKARAOKEChannel\\Please Don t Go Girl in the Style of New Kids on the Block with lyrics (no lead vocal).mp4", + "title": "Please Don t Go Girl" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "L Trimm", + "playlist_title": "Cars With The Boom", + "found_song": { + "artist": "L'Trimm", + "disabled": false, + "favorite": false, + "guid": "1cafd931-7216-c491-af44-9d98477b9eda", + "path": "z://CDG\\Various\\L'Trimm - Cars With The Boom.mp3", + "title": "Cars With The Boom" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Moment In Time", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "d3b1affb-7cab-f284-c2d7-650f854f2892", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - One Moment In Time (Karaoke Version).mp4", + "title": "One Moment In Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Bangles", + "playlist_title": "In Your Room", + "found_song": { + "artist": "The Bangles", + "disabled": false, + "favorite": false, + "guid": "90aa7021-8320-a4b9-cd02-82a810603d8d", + "path": "z://MP4\\Let's Sing Karaoke\\Bangles, The - In Your Room (Karaoke & Lyrics).mp4", + "title": "In Your Room" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Will To Power", + "playlist_title": "Baby, I Love Your Way/Freebird Medley", + "found_song": { + "artist": "Will To Power", + "disabled": false, + "favorite": false, + "guid": "02401d3b-f5c0-a23c-0cbd-428d56dfa273", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Will To Power - Baby I Love Your Wayfreebird Medl - SF006 - 13.mp3", + "title": "Baby I Love Your Wayfreebird Medl" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Def Leppard", + "playlist_title": "Armageddon It", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "81f094b5-7c83-e4fa-8bf4-d16d2eb1dd77", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Animal (Karaoke).mp4", + "title": "Animal" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Kenny G", + "playlist_title": "Silhouette", + "found_song": { + "artist": "The Rays", + "disabled": false, + "favorite": false, + "guid": "4269f072-6a40-9e3d-1ed0-8846c1bc4c31", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Silhouettes - The Rays.mp4", + "title": "Silhouettes" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Karyn White", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "c2dfd8be-bf6f-7454-0ea2-802ff721bf34", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just The Way You Are - Barry White.mp4", + "title": "Just The Way You Are" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Cheap Trick", + "playlist_title": "Ghost Town", + "found_song": { + "artist": "Cheap Trick", + "disabled": false, + "favorite": false, + "guid": "80e01d55-0f23-6d69-3593-3ee0f0429f43", + "path": "z://MP4\\Stingray Karaoke\\She's Tight in the style of Cheap Trick karaoke video.mp4", + "title": "She's Tight" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Sheena Easton", + "playlist_title": "The Lover In Me", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "e5925a6d-aaae-dac2-b223-0504c4b49794", + "path": "z://MP4\\Sing King Karaoke\\Sheena Easton - Almost Over You (Karaoke Version).mp4", + "title": "Almost Over You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "The Boys", + "playlist_title": "Dial My Heart", + "found_song": { + "artist": "The Vamps", + "disabled": false, + "favorite": false, + "guid": "25eda469-1976-b910-7ad1-3fa1f2881a1a", + "path": "z://MP4\\Sing King Karaoke\\The Vamps - Wild Heart (Karaoke Version).mp4", + "title": "Wild Heart" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Cinderella", + "playlist_title": "Don t Know What You Got (Till It s Gone)", + "found_song": { + "artist": "Cinderella", + "disabled": false, + "favorite": false, + "guid": "d596dc15-35b3-4d77-5c90-3084b1d78810", + "path": "z://MP4\\Let's Sing Karaoke\\Cinderella - Don't Know What You Got (Karaoke & Lyrics).mp4", + "title": "Don't Know What You Got" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Traveling Wilburys", + "playlist_title": "Handle With Care", + "found_song": { + "artist": "Travelling Wilburys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a99278-b83d-51b6-4eaf-40748a5e6dae", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Travelling Wilburys - Handle With Care - SFMW 876 -14.mp3", + "title": "Handle With Care" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Eighth Wonder", + "playlist_title": "Cross My Heart", + "found_song": { + "artist": "Billy Fury", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b05823a6-1b50-60d2-be9a-4ecd2665a5f8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Fury - Cross My Heart.mp4", + "title": "Cross My Heart" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Kylie Minogue", + "playlist_title": "It s No Secret", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "guid": "ae134afb-2038-3d21-d9ef-77d29928d910", + "path": "z://MP4\\KaraFun Karaoke\\In Your Eyes - Kylie Minogue Karaoke Version KaraFun.mp4", + "title": "In Your Eyes" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "The Georgia Satellites", + "playlist_title": "Hippy Hippy Shake (From \"Cocktail\")", + "found_song": { + "artist": "The Georgia Satellites", + "disabled": false, + "favorite": false, + "guid": "d9e4ad68-d4c2-ab10-5b5d-a07f3d83ad12", + "path": "z://MP4\\KaraokeOnVEVO\\The Georgia Satellites - Hippy Hippy Shake (Karaoke).mp4", + "title": "Hippy Hippy Shake" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Basia", + "playlist_title": "New Day For You", + "found_song": { + "artist": "Demi Lovato ft. Sirah", + "disabled": false, + "favorite": false, + "guid": "d01d85f0-8f32-2607-db7d-2bc8cd4e21f6", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato ft. Sirah - Waitin For You (Karaoke Version).mp4", + "title": "Waitin For You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "Domino Dancing", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "223a1e95-ec65-dcaa-19b7-5f5adede687f", + "path": "z://MP4\\KaraokeOnVEVO\\Pet Shop Boys - Domino Dancing.mp4", + "title": "Domino Dancing (Karaoke Version)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Vixen", + "playlist_title": "Edge Of A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Bobby McFerrin", + "playlist_title": "Don t Worry, Be Happy (From \"Cocktail\")", + "found_song": { + "artist": "Bobby McFerrin", + "disabled": false, + "favorite": false, + "guid": "b10b9598-3aee-64af-ea09-ec6bdfdf0972", + "path": "z://MP4\\TheKARAOKEChannel\\Don t Worry Be Happy in the Style of Bobby McFerrin with lyrics (no lead vocal) karaoke video.mp4", + "title": "Don t Worry Be Happy" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Giant Steps", + "playlist_title": "Another Lover", + "found_song": { + "artist": "Hear Say", + "disabled": false, + "favorite": false, + "guid": "0320a70c-7c9f-c3f5-4730-86999bcee874", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD001 - Hear'Say\\Hear Say - Another Lover - SFG001 - 04.mp3", + "title": "Another Lover" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Till I Loved You", + "found_song": { + "artist": "Barbra Streisand ft. Don Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af2f90d5-ca04-6a37-1c7b-d8c0df35f753", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barbra Streisand feat Don Johnson - Till I Loved You.mp4", + "title": "Till I Loved You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Al B. Sure!", + "playlist_title": "Killing Me Softly", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "7b2ce665-1faa-5b00-26a6-fecb58d7a568", + "path": "z://MP4\\KaraFun Karaoke\\Killing Me Softly - Luther Vandross Karaoke Version KaraFun.mp4", + "title": "Killing Me Softly" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Martika", + "playlist_title": "More Than You Know", + "found_song": { + "artist": "Axwell ft. Ingrosso", + "disabled": false, + "favorite": false, + "guid": "5508be9b-5afc-b5e5-57dc-f5a2eff49b8a", + "path": "z://MP4\\Stingray Karaoke\\More Than You Know Axwell & Ingrosso Karaoke with Lyrics.mp4", + "title": "More Than You Know" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "J.J. Fad", + "playlist_title": "Is It Love", + "found_song": { + "artist": "O.M.D.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c0013e7-64cd-d2c5-9c51-5da1ee99f0d1", + "path": "z://CDG\\SBI\\SBI-04\\SB17741 - O.M.D. - So In Love.mp3", + "title": "So In Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Taylor Dayne", + "playlist_title": "I ll Always Love You", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "f923f7f4-e1f5-3462-983b-6d4b7022f4a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Always Love You - Glee.mp4", + "title": "I Will Always Love You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Boys Club", + "title": "I Remember Holding You", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Van Halen", + "title": "Finish What Ya Started", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Was (Not Was)", + "title": "Spy In The House Of Love", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sheriff", + "title": "When I m With You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Joan Jett And The Blackhearts", + "title": "Little Liar", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cheryl \"Pepsii\" Riley", + "title": "Thanks For My Child", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Beach Boys", + "title": "Kokomo (From The \"Cocktail\" Soundtrack)", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Escape Club", + "title": "Wild, Wild West", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Art Of Noise Featuring Tom Jones", + "title": "Kiss", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Information Society", + "title": "Walking Away", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Robbie Nevil", + "title": "Back On Holiday", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ivan Neville", + "title": "Not Just Another Girl", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Judson Spence", + "title": "Yeah, Yeah, Yeah", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Escape Club", + "title": "Shake For The Sheik", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Siouxsie and The Banshees", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tracie Spencer", + "title": "Symptoms Of True Love", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "D.J. Jazzy Jeff", + "title": "Girls Ain t Nothing But Trouble", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Randy Newman", + "title": "It s Money That Matters", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Michelle Shocked", + "title": "Anchorage", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Conwell And The Young Rumblers", + "title": "If We Never Meet Again", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ann Wilson", + "title": "Surrender To Me (From \"Tequila Sunrise\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Starship", + "title": "Wild Again (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Timelords", + "title": "Doctorin The Tardis", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Kon Kan", + "title": "I Beg Your Pardon", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bobby Brown", + "title": "Don t Be Cruel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "SaFire", + "title": "Boy, I ve Been Told", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Sir Mix-A-Lot", + "title": "Posse On Broadway", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Luther Vandross", + "title": "Any Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Camouflage", + "title": "The Great Commandment", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Information Society", + "title": "What s On Your Mind (Pure Energy)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 23, + "missing_count": 30, + "needs_manual_review": 23 + } + }, + { + "playlist_title": "1987 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Rogers", + "playlist_title": "I Prefer The Moonlight", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "3a29e174-a6d5-46ac-cd31-4e83595fa1f5", + "path": "z://MP4\\Stingray Karaoke\\I Prefer The Moonlight Kenny Rogers Karaoke with Lyrics.mp4", + "title": "I Prefer The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan Seals", + "playlist_title": "One Friend", + "found_song": { + "artist": "Dan Seals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86b2c164-6056-c31a-be29-f1d090ce2cd2", + "path": "z://MP4\\Sing King Karaoke\\Dan Seals - One Friend.mp4", + "title": "One Friend" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Do Ya'", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "guid": "1140d2e7-9623-4a69-4de6-c46ff8683344", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Do Ya (Karaoke).mp4", + "title": "Do Ya" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Restless Heart", + "playlist_title": "Wheels", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9727a829-9531-aee9-5360-85593796f1b7", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - Wheels.mp4", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rosanne Cash", + "playlist_title": "Tennessee Flat Top Box", + "found_song": { + "artist": "Rosanne Cash", + "disabled": false, + "favorite": false, + "guid": "529b5b5c-b547-8afe-a1a5-e6fd27856ac9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tennessee Flat Top Box - Rosanne Cash.mp4", + "title": "Tennessee Flat Top Box" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Merle Haggard", + "playlist_title": "Twinkle, Twinkle Lucky Star", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f4a3ad-4ec1-43d9-6345-6a14e83f39a5", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Twinkle, Twinkle Lucky Star.mp4", + "title": "Twinkle, Twinkle Lucky Star" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Exile", + "playlist_title": "I Can't Get Close Enough", + "found_song": { + "artist": "benny blanco, Tainy, Selena Gomez, J Balvin", + "disabled": false, + "favorite": false, + "guid": "e54a5089-7dda-58fc-0947-218333224862", + "path": "z://MP4\\Sing King Karaoke\\benny blanco, Tainy, Selena Gomez, J Balvin - I Can't Get Enough (Karaoke Version).mp4", + "title": "I Can't Get Enough" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Heaven Can't Be Found", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "41421349-95af-28c5-28bf-941da031194e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whiskey Bent And Hell Bound - Hank Williams, Jr..mp4", + "title": "Whiskey Bent And Hell Bound" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Where Do The Nights Go", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd542b60-df75-5c72-5725-81f95b860c24", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - Daydreams About Night Things.mp4", + "title": "Daydreams About Night Things" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Michael Johnson", + "playlist_title": "Crying Shame", + "found_song": { + "artist": "Michael Johnson", + "disabled": false, + "favorite": false, + "guid": "57fcf459-4b69-0cf3-840e-28418c77430b", + "path": "z://MP4\\Let's Sing Karaoke\\Johnson, Michael - Bluer Than Blue (Karaoke & Lyrics).mp4", + "title": "Bluer Than Blue" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The O'Kanes", + "playlist_title": "Just Lovin' You", + "found_song": { + "artist": "The Scorpions", + "disabled": false, + "favorite": false, + "guid": "f1c73e19-5fc3-ae84-0492-5e932a5e1b28", + "path": "z://MP4\\TheKARAOKEChannel\\Scorpions - Still Loving You (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Still Loving You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Don Williams", + "playlist_title": "I Wouldn't Be A Man", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "ea4517b0-55e4-bbe5-b0fc-059834a9f8a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Must Be Love - Don Williams.mp4", + "title": "It Must Be Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "One For The Money", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "guid": "f1bf4dcf-30a4-4fc3-ad21-685f192cfca6", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - Devil In The Bottle (Karaoke).mp4", + "title": "Devil In The Bottle" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Waylon Jennings", + "playlist_title": "Rough And Rowdy Days", + "found_song": { + "artist": "Waylon Jennings", + "disabled": false, + "favorite": false, + "guid": "944a61d5-61b9-112c-b85f-389e495f01dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rainy Day Woman - Waylon Jennings.mp4", + "title": "Rainy Day Woman" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Please Please Baby", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Highway 101", + "title": "Somewhere Tonight", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kathy Mattea", + "title": "Goin' Gone", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Glen Campbell", + "title": "Still Within The Sound Of My Voice", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lyle Lovett", + "title": "Give Back My Heart", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Joe Royal", + "title": "I'll Pin A Note On Your Pillow", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle", + "title": "Only Love Can Save Me Now", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "One Step Forward", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ricky Skaggs", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Forester Sisters", + "title": "Lyin' In His Arms Again", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster & Lloyd", + "title": "Sure Thing", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 9, + "missing_count": 10, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "1987 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Michael", + "playlist_title": "Faith", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "42a06cdd-53a7-bfb6-2d83-be4381fd6c0a", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Faith (Karaoke Version).mp4", + "title": "Faith" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Whitney Houston", + "playlist_title": "So Emotional", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "446228c5-28be-4b1d-6c04-d584b722a52d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Emotional - Whitney Houston.mp4", + "title": "So Emotional" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Whitesnake", + "playlist_title": "Is This Love", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "a31763aa-607c-1e58-0472-b399d372e48f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Is This Love - Whitesnake.mp4", + "title": "Is This Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Harrison", + "playlist_title": "Got My Mind Set On You", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "guid": "872b0858-3437-3351-aaf3-e6709c16244a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Got My Mind Set On You - George Harrison.mp4", + "title": "Got My Mind Set On You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Debbie Gibson", + "playlist_title": "Shake Your Love", + "found_song": { + "artist": "Debbie Gibson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8263e56c-9328-b627-d8ce-7f608ff5d046", + "path": "z://MP4\\KaraokeOnVEVO\\Debbie Gibson - Shake Your Love.mp4", + "title": "Shake Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jody Watley", + "playlist_title": "Don't You Want Me", + "found_song": { + "artist": "Jody Watley", + "disabled": false, + "favorite": false, + "guid": "603e1140-4f15-0b09-5cef-6d4bd9727d82", + "path": "z://CDG\\Various\\Jody Watley - Don't You Want Me.mp3", + "title": "Don't You Want Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Michael Jackson", + "playlist_title": "The Way You Make Me Feel", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "d2aaf344-5359-7b0a-5bdc-e972a01bd0ca", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - The Way You Make Me Feel (Karaoke Version).mp4", + "title": "The Way You Make Me Feel" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "John Mellencamp", + "playlist_title": "Cherry Bomb", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "ea00035f-fa54-4434-b237-e30f08e6fded", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cherry Bomb - John Mellencamp.mp4", + "title": "Cherry Bomb" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "INXS", + "playlist_title": "Need You Tonight", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "9901bafd-a18c-9628-7b24-6b57c58b135a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Need You Tonight - INXS.mp4", + "title": "Need You Tonight" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Winwood", + "playlist_title": "Valerie", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60719277-a695-f172-5104-a2cf883fd31a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Steve Winwood - Valerie.mp4", + "title": "Valerie" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Tell It To My Heart", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "guid": "500436af-78fd-c7a3-9890-4f0ea421350a", + "path": "z://MP4\\Sing King Karaoke\\Taylor Dayne - Tell It To My Heart (Karaoke Version).mp4", + "title": "Tell It To My Heart" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Elton John", + "playlist_title": "Candle In The Wind", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "f8d39005-d27b-c2e9-2c05-f5ce9f021581", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Candle In The Wind - Elton John.mp4", + "title": "Candle In The Wind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Aerosmith", + "playlist_title": "Dude (Looks Like A Lady)", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "04b60bf2-2d50-db44-fcc1-41687e0a7da5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dude (Looks Like A Lady) - Aerosmith.mp4", + "title": "Dude (Looks Like A Lady)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tiffany", + "playlist_title": "Could've Been", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "1b8ece7d-ebd9-c8e3-729e-e0978b56a1cb", + "path": "z://MP4\\KaraokeOnVEVO\\Tiffany - Could've Been (Karaoke).mp4", + "title": "Could've Been" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Heaven Is A Place On Earth", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "6c3c8d9a-0a82-1286-8f4c-4025abb780d5", + "path": "z://MP4\\Sing King Karaoke\\Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version).mp4", + "title": "Heaven Is A Place On Earth" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Def Leppard", + "playlist_title": "Animal", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "81f094b5-7c83-e4fa-8bf4-d16d2eb1dd77", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Animal (Karaoke).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Expose", + "playlist_title": "Seasons Change", + "found_song": { + "artist": "Expose'", + "disabled": false, + "favorite": false, + "guid": "208c8eca-6261-f1de-3830-369260024379", + "path": "z://MP4\\Let's Sing Karaoke\\Expose' - Seasons Change (Karaoke & Lyrics).mp4", + "title": "Seasons Change" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Icehouse", + "playlist_title": "Crazy", + "found_song": { + "artist": "icehouse", + "disabled": false, + "favorite": false, + "guid": "0b8a6974-54c8-c142-35c2-f20831236821", + "path": "z://MP4\\KaraokeOnVEVO\\icehouse - Crazy (Karaoke).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Richard Marx", + "playlist_title": "Should've Known Better", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ca6240d-b430-ff58-46f3-73ca8b2e5ba1", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Should've Known Better.mp4", + "title": "Should've Known Better" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Tunnel Of Love", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a21f4ff9-99a3-8db5-7e81-d7613d041ec6", + "path": "z://CDG\\Various\\Bruce Springsteen - Tunnel Of Love.mp3", + "title": "Tunnel Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "New Order", + "playlist_title": "True Faith", + "found_song": { + "artist": "New Order", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5599ad26-6872-fd6d-87b6-18fae8fa060a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 846\\New Order - True Faith - SFMW 846 -03.mp3", + "title": "True Faith" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Foreigner", + "playlist_title": "Say You Will", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17f445a8-893e-2cf1-9422-e334f767119f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Foreigner - Say You Will.mp4", + "title": "Say You Will" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Paul Carrack", + "playlist_title": "Don't Shed A Tear", + "found_song": { + "artist": "Paul Carrack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fd877d4-d49b-7629-1fc2-569f87ebf34f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul Carrack - Dont Shed A Tear.mp4", + "title": "Don't Shed A Tear" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a90475de-b588-bfc8-0ef4-20399b879c79", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Everywhere (Karaoke Version).mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "R.E.M.", + "playlist_title": "The One I Love", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87581bfc-a58d-7be5-8381-be041fd77430", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The One I Love.mp4", + "title": "The One I Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tiffany", + "playlist_title": "I Think We're Alone Now", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "d611b7ab-2187-a96d-2b1c-accfaffdf367", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - I Think We're Alone Now (Karaoke Version).mp4", + "title": "I Think We're Alone Now" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cher", + "playlist_title": "I Found Someone", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ce977529-7052-694e-952c-89ed928376f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Found Someone - Cher.mp4", + "title": "I Found Someone" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billy Idol", + "playlist_title": "Mony Mony", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "6beb21d8-00d8-b5f3-630f-bd0cb4286bfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mony Mony - Billy Idol.mp4", + "title": "Mony Mony" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Billy Idol", + "playlist_title": "Hot In The City", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33059386-c382-10e8-54b0-06c7c59b6ba5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Idol - Hot In The City.mp4", + "title": "Hot In The City" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rick Astley", + "playlist_title": "Never Gonna Give You Up", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "guid": "134b4cab-8a52-2d6c-8eaf-13d346132591", + "path": "z://MP4\\Sing King Karaoke\\Rick Astley - Never Gonna Give You Up (Karaoke Version).mp4", + "title": "Never Gonna Give You Up" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dan Hill", + "playlist_title": "Never Thought (That I Could Love)", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5028061b-753c-4c80-1884-7cc6c34c7e89", + "path": "z://MP4\\Sing King Karaoke\\Dan Hill - Never Thought (That I Could Love.mp4", + "title": "Never Thought (That I Could Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kiss", + "playlist_title": "Reason To Live", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fadba494-9085-ee9c-4952-d1d0c2675946", + "path": "z://MP4\\KaraokeOnVEVO\\Kiss - Reason To Live.mp4", + "title": "Reason To Live" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Little Lies", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "0693fcba-4905-6fef-7e6c-00e915cc1357", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Little Lies (Karaoke Version).mp4", + "title": "Little Lies" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Swing Out Sister", + "playlist_title": "Breakout", + "found_song": { + "artist": "Swing Out Sister", + "disabled": false, + "favorite": false, + "guid": "83ef9c4f-9205-e798-01d6-8602ad9409c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breakout - Swing Out Sister.mp4", + "title": "Breakout" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Brilliant Disguise", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "0f594bc2-a360-47a8-2bf8-b22d49a25ed0", + "path": "z://MP4\\Let's Sing Karaoke\\Bruce Springsteen - Brilliant Disguise (Karaoke & Lyrics).mp4", + "title": "Brilliant Disguise" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "It's A Sin", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58731317-fd9e-5f43-3644-59069c8dcbd9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Pet Shop Boys - It's A Sin - SFMW 807 -01.mp3", + "title": "It's A Sin" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Depeche Mode", + "playlist_title": "Never Let Me Down Again", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "584f630c-409b-ceca-347d-d3eef8f1ff26", + "path": "z://MP4\\KaraFun Karaoke\\Never Let Me Down Again - Depeche Mode Karaoke Version KaraFun.mp4", + "title": "Never Let Me Down Again" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Madonna", + "playlist_title": "Causing A Commotion", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d0e7743-ea55-1bde-4e4b-b7539a23a2b1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - Causing A Commotion.mp4", + "title": "Causing A Commotion" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Whitesnake", + "playlist_title": "Here I Go Again", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "fbb5546c-2309-8d04-d82e-b7001ced7993", + "path": "z://MP4\\Sing King Karaoke\\Whitesnake - Here I Go Again (Karaoke Version).mp4", + "title": "Here I Go Again" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Bangles", + "playlist_title": "Hazy Shade Of Winter", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "guid": "db2a248d-d000-2c72-318a-d5069bf3ce5d", + "path": "z://CDG\\Various\\Simon & Garfunkel - Hazy Shade Of Winter.mp3", + "title": "Hazy Shade Of Winter" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "(I've Had) The Time Of My Life", + "found_song": { + "artist": "Bill Medley ft. Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16496c12-f937-78c1-360e-7a09219a748a", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley & Jennifer Warnes - (Ive Had The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Michael Bolton", + "playlist_title": "That's What Love Is All About", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca91821d-ae7f-e384-6edf-1820ba5678a3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - That's What It's All About.mp4", + "title": "That's What It's All About" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Roger", + "playlist_title": "I Want To Be Your Man", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "f310e62f-ddfb-76ca-e3d0-f883125886b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Want To Hold Your Hand - Glee.mp4", + "title": "I Want To Hold Your Hand" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Laura Branigan", + "playlist_title": "Power Of Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "5214a12e-e5a3-87f5-d3dc-458f8ef2b79e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Power Of Love - Luther Vandross.mp4", + "title": "Power Of Love" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Sting", + "playlist_title": "We'll Be Together", + "found_song": { + "artist": "Grease 2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14b9f257-b9fb-c211-6c4c-e57c2b2571fd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Grease 2 - Well Be Together.mp4", + "title": "We'll Be Together" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Natalie Cole", + "playlist_title": "I Live For Your Love", + "found_song": { + "artist": "Natalie Cole", + "disabled": false, + "favorite": false, + "guid": "128e49c2-db41-e140-0cf3-21a940865efc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Wish You Love - Natalie Cole.mp4", + "title": "I Wish You Love" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Pet Shop Boys & Dusty Springfield", + "playlist_title": "What Have I Done To Deserve This?", + "found_song": { + "artist": "Dusty Springfield & Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b2d2421-1089-52da-4a61-e29cef77271a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 836\\Dusty Springfield & Pet Shop Boys - What Have I Done To Deserve This - SFMW 836 -15.mp3", + "title": "What Have I Done To Deserve This" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Bananarama", + "playlist_title": "I Can't Help It", + "found_song": { + "artist": "Bananarama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c0712f6-78ce-a0f2-e873-ea7cb5f7d71d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bananarama - Help!.mp4", + "title": "Help!" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Skeletons", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "4fdd7e03-909e-30ae-3d4a-330730111869", + "path": "z://CDG\\Various\\Stevie Wonder - Use Me.mp3", + "title": "Use Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The Jets", + "playlist_title": "I Do You", + "found_song": { + "artist": "The Jets", + "disabled": false, + "favorite": false, + "guid": "aba85229-6929-f2c4-1bf9-fca1fd77e165", + "path": "z://MP4\\Let's Sing Karaoke\\Jets, The - Crush On You (Karaoke & Lyrics).mp4", + "title": "Crush On You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "The Cover Girls", + "playlist_title": "Because Of You", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "guid": "9587183e-6e80-4b1b-ae7f-a6acf4c943a5", + "path": "z://MP4\\KaraokeOnVEVO\\98º - Because Of You (Karaoke).mp4", + "title": "Because Of You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "U2", + "playlist_title": "In God's Country", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "386de8d5-fab3-1fa6-8d7a-b9ae2dfbf8ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - In Gods Country - SFG009 - 09.mp3", + "title": "In Gods Country" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Deja", + "playlist_title": "You And Me Tonight", + "found_song": { + "artist": "Wannadies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60bcb41d-df76-d461-2857-cd8ab2daefbb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Wannadies - You And Me Song - SFMW 865 -09.mp3", + "title": "You And Me Song" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Patrick Swayze (Featuring Wendy Fraser)", + "playlist_title": "She's Like The Wind", + "found_song": { + "artist": "Patrick Swayze", + "disabled": false, + "favorite": false, + "guid": "10e07c46-00af-c386-c499-af36af708ae1", + "path": "z://MP4\\Sing King Karaoke\\Patrick Swayze - She's Like The Wind (Karaoke Version).mp4", + "title": "She's Like The Wind" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Cutting Crew", + "playlist_title": "I've Been In Love Before", + "found_song": { + "artist": "Guys & Dolls", + "disabled": false, + "favorite": false, + "guid": "305d1e85-2c02-327b-603b-9bc44fa82d81", + "path": "z://MP4\\Let's Sing Karaoke\\Guys & Dolls - I've Never Been In Love Before (Karaoke & Lyrics) (2).mp4", + "title": "I've Never Been In Love Before" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Yes", + "playlist_title": "Rhythm Of Love", + "found_song": { + "artist": "Plain White T's", + "disabled": false, + "favorite": false, + "guid": "74cf8c8e-86ef-569e-d337-e78bd78edcfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rhythm Of Love - Plain White T s.mp4", + "title": "Rhythm Of Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Buster Poindexter & His Banshees Of Blue", + "playlist_title": "Hot Hot Hot", + "found_song": { + "artist": "Buster Poindexter", + "disabled": false, + "favorite": false, + "guid": "6b97f546-3036-bc63-32b3-8f71cc6fcf8a", + "path": "z://MP4\\Let's Sing Karaoke\\Poindexter, Buster - Hot Hot Hot (Karaoke & Lyrics).mp4", + "title": "Hot Hot Hot" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Poison", + "playlist_title": "I Won't Forget You", + "found_song": { + "artist": "Jim Reeves", + "disabled": false, + "favorite": false, + "guid": "b78f54d0-1555-2380-d087-00b2423fac8c", + "path": "z://MP4\\KtvEntertainment\\Jim Reeves - I Won't Forget You Karaoke Lyrics.mp4", + "title": "I Won't Forget You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Eurythmics", + "playlist_title": "I Need A Man", + "found_song": { + "artist": "Eurythmics", + "disabled": false, + "favorite": false, + "guid": "9d299156-d04e-529f-f0df-5d0a10b3444b", + "path": "z://CDG\\Various\\Eurythmics - I Saved T.mp3", + "title": "I Saved T" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Yes", + "playlist_title": "Love Will Find A Way", + "found_song": { + "artist": "Pablo Cruise", + "disabled": false, + "favorite": false, + "guid": "e5238b80-eda0-025d-362c-c514d5ea3579", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Will Find A Way - Pablo Cruise.mp4", + "title": "Love Will Find A Way" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Alexander O'Neal", + "playlist_title": "Criticize", + "found_song": { + "artist": "Alexander O'Neal", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f73d7a2-280f-af2f-9209-e427aeec6fc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alexander ONeal - Criticize.mp4", + "title": "Criticize" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Prince", + "playlist_title": "U Got The Look", + "found_song": { + "artist": "Source ft Candi Staton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e8c8713-0973-6613-de1b-df1cc08658a6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 874\\Source ft Candi Staton - You Got The Love - SFMW 874 -01.mp3", + "title": "You Got The Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "The Alarm", + "playlist_title": "Rain In The Summertime", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "d0c22dbf-9ba9-bcfd-90d2-cdbf90d41008", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hot Fun In The Summertime - Sly And The Family Stone.mp4", + "title": "Hot Fun In The Summertime" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Noel", + "playlist_title": "Silent Morning", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91c6fbd1-9968-149e-30ab-97205f4129e2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Silent Running.mp4", + "title": "Silent Running" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Europe", + "playlist_title": "Cherokee", + "found_song": { + "artist": "Europe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7edb22a-98cd-7bc2-cdb0-7f0b9b3615d9", + "path": "z://MP4\\Sing King Karaoke\\Europe - Carrie.mp4", + "title": "Carrie" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Glenn Medeiros", + "playlist_title": "Lonely Won't Leave Me Alone", + "found_song": { + "artist": "David Guetta ft. Anne Marie", + "disabled": false, + "favorite": false, + "guid": "1ad226d7-5be4-c371-1aab-d1176144a85c", + "path": "z://MP4\\Sing King Karaoke\\David Guetta ft Anne Marie - Don't Leave Me Alone (Karaoke Version).mp4", + "title": "Don't Leave Me Alone" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Expose", + "playlist_title": "Let Me Be The One", + "found_song": { + "artist": "The Shadows", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46c3800f-b65b-ed55-d41e-663005911a41", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Shadows - Let Me Be The One.mp4", + "title": "Let Me Be The One" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Smokey Robinson", + "playlist_title": "What's Too Much", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Motley Crue", + "playlist_title": "You're All I Need", + "found_song": { + "artist": "Motley Crue", + "disabled": false, + "favorite": false, + "guid": "5d47c221-f61f-8cbe-f437-583d79ee5aec", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Motley Crue - Too Young to Fall in Love (Karaoke).mp4", + "title": "Too Young to Fall in Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Pretty Poison", + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Heart", + "title": "There's The Girl", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Prince", + "title": "I Could Never Take The Place Of Your Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eric Carmen", + "title": "Hungry Eyes (From \"Dirty Dancing\")", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Men Without Hats", + "title": "Pop Goes The World", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stryper", + "title": "Honestly", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Kane Gang", + "title": "Motortown", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Gloria Estefan & Miami Sound Machine", + "title": "Can't Stay Away From You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "M/A/R/R/S", + "title": "Pump Up The Volume", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bourgeois Tagg", + "title": "I Don't Mind At All", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Squeeze", + "title": "853-5937", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Shanice Wilson", + "title": "(Baby Tell Me) Can You Dance", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Georgio", + "title": "Lover's Lane", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Squeeze", + "title": "Hourglass", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Powersource (Solo...Sharon)", + "title": "Dear Mr. Jesus", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Earth, Wind & Fire", + "title": "System Of Survival", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Swing Out Sister", + "title": "Twilight World", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Mick Jagger", + "title": "Throwaway", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "REO Speedwagon", + "title": "In My Dreams", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Boy George", + "title": "Live My Life (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Dokken", + "title": "Burning Like A Flame", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tony Terry", + "title": "She's Fly", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "title": "Someone To Love Me For Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Glenn Jones", + "title": "We've Only Just Begun (The Romance Is Not Over)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kool & The Gang", + "title": "Special Way", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sammy Hagar", + "title": "Eagles Fly", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Heart", + "title": "Who Will You Run To", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Martha Davis", + "title": "Don't Tell Me The Time", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Kenny G. (Vocal By Lenny Williams)", + "title": "Don't Make Me Wait For Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 41, + "fuzzy_match_count": 30, + "missing_count": 29, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "1986 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Mind Your Own Business", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "72d7f586-9651-3aaf-5304-8108b7e8ed49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mind Your Own Business - Hank Williams, Jr..mp4", + "title": "Mind Your Own Business" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Michael Johnson", + "playlist_title": "Give Me Wings", + "found_song": { + "artist": "Michael Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b2f0138-1453-74ee-49a6-dd8f359cb91f", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Johnson - Give Me Wings.mp4", + "title": "Give Me Wings" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Reba McEntire", + "playlist_title": "What Am I Gonna Do About You", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9afc812-7a4a-8120-26a3-937344c01ff3", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What Am I Gonna Do About You.mp4", + "title": "What Am I Gonna Do About You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Love s Gonna Get You Someday", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dc0e507-984b-c03e-a66e-46873080cb56", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Love s Gonna Get You Someday.mp4", + "title": "Love s Gonna Get You Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Judds", + "playlist_title": "Cry Myself To Sleep", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db6eb4c0-f414-f219-e352-da183af2fa1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Cry Myself To Sleep.mp4", + "title": "Cry Myself To Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lionel Richie", + "playlist_title": "Deep River Woman", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e3eaec07-7108-bc0b-2284-d6fe8203de1b", + "path": "z://MP4\\Let's Sing Karaoke\\Richie, Lionel - Deep River Woman (Karaoke & Lyrics) (2).mp4", + "title": "Deep River Woman" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Tanya Tucker", + "playlist_title": "I ll Come Back As Another Woman", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "610dbca7-2545-49b1-cd32-bb28a1f329aa", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - I ll Come Back As Another Woman.mp4", + "title": "I ll Come Back As Another Woman" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Whitley", + "playlist_title": "Homecoming 63", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "guid": "de97d8c2-a418-c012-63eb-341b72987b1d", + "path": "z://CDG\\Sound Choice Karaoke\\SC2328\\SC2328-06 - Whitley, Keith - Homecoming '63.mp3", + "title": "Homecoming '63" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Don Williams", + "playlist_title": "Then It s Love", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "ea4517b0-55e4-bbe5-b0fc-059834a9f8a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Must Be Love - Don Williams.mp4", + "title": "It Must Be Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "The O Kanes", + "playlist_title": "Oh Darlin", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "516bb516-6105-e37a-645d-a5eecf4bb27e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Oh! Darling - The Beatles.mp4", + "title": "Oh! Darling" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "John Conlee", + "playlist_title": "The Carpenter", + "found_song": { + "artist": "John Conlee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "955947bd-a1f4-fe1c-fbe6-d68c7eccb054", + "path": "z://MP4\\KaraokeOnVEVO\\John Conlee - Years After You.mp4", + "title": "Years After You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Gary Morris", + "playlist_title": "Leave Me Lonely", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "108066e9-eff2-f3e4-acd9-cfe137909ec5", + "path": "z://MP4\\Karaoke Sing Sing\\Ariana Grande - Leave Me Lonely SING SING KARAOKE.mp4", + "title": "Leave Me Lonely" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Gotta Have You", + "found_song": { + "artist": "Eddie Rabbit & Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "8323d837-69e8-69c5-1c12-41e83ba29984", + "path": "z://MP4\\Let's Sing Karaoke\\Rabbit, Eddie & Crystal Gayle - You And I (Karaoke & Lyrics).mp4", + "title": "You And I" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "How Do I Turn You On", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "guid": "65a430b6-aa04-e4a1-52a9-b4ccb96b7b1f", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - Turn That Radio On (Karaoke).mp4", + "title": "Turn That Radio On" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Crystal Gayle", + "playlist_title": "Straight To The Heart", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "20143ab2-b1ed-320c-70f0-8fa6e9eea313", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Straight From The Heart - Bryan Adams.mp4", + "title": "Straight From The Heart" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "The Nitty Gritty Dirt Band", + "playlist_title": "Fire In The Sky", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "f6ede1a9-f9be-da68-8088-08be1d727aed", + "path": "z://MP4\\TheKARAOKEChannel\\Fishin' In The Dark Nitty Gritty Dirt Band Karaoke with Lyrics.mp4", + "title": "Fishin' In The Dark" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Conway Twitty", + "title": "Fallin For You For Years", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "T.G. Sheppard", + "title": "Half Past Forever (Till I m Blue In The Heart)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan Seals", + "title": "You Still Move Me", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Judy Rodman", + "title": "She Thinks That She ll Marry", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Pake McEntire", + "title": "Bad Love", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bellamy Brothers With the Forester Sisters", + "title": "Too Much Is Not Enough", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lyle Lovett", + "title": "Cowboy Man", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eddy Raven", + "title": "Right Hand Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Mel McDaniel", + "title": "Stand On It", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 8, + "missing_count": 9, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "1986 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bangles", + "playlist_title": "Walk Like An Egyptian", + "found_song": { + "artist": "Bangles", + "disabled": false, + "favorite": false, + "guid": "535ea9a5-390c-9a1c-0ce0-b163f098a545", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF056\\Bangles - Walk Like An Egyptian - SF056 - 01.mp3", + "title": "Walk Like An Egyptian" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Wang Chung", + "playlist_title": "Everybody Have Fun Tonight", + "found_song": { + "artist": "Wang Chung", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "799cc229-3e92-55c5-aee9-a9c824aea8cb", + "path": "z://MP4\\KaraokeOnVEVO\\Wang Chung - Everybody Have Fun Tonight.mp4", + "title": "Everybody Have Fun Tonight" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Notorious", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "028634c9-d1bd-0e77-bb1d-e90a32e6a8ad", + "path": "z://MP4\\ZoomKaraokeOfficial\\Duran Duran - Notorious.mp4", + "title": "Notorious" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Gregory Abbott", + "playlist_title": "Shake You Down", + "found_song": { + "artist": "Gregory Abbott", + "disabled": false, + "favorite": false, + "guid": "6ab98a45-9ca7-72b0-5be3-fd8e74fb4d58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake You Down - Gregory Abbott.mp4", + "title": "Shake You Down" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Hornsby", + "playlist_title": "The Way It Is", + "found_song": { + "artist": "Bruce Hornsby & The Range", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73334334-06d7-3fa1-db73-cf7d87489fdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\Bruce Hornsby & The Range - The Way It Is - SFMW 854 -05.mp3", + "title": "The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Robbie Nevil", + "playlist_title": "C est La Vie", + "found_song": { + "artist": "Robbie Nevil", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ccca090f-db51-9576-b023-8de19c55a7e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Robbie Nevil - Cest La Vie.mp4", + "title": "C'est La Vie" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "War", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a49b97e5-2723-95d7-07e9-5a97d8a6b281", + "path": "z://CDG\\Various\\Bruce Springsteen - War.mp3", + "title": "War" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billy Idol", + "playlist_title": "To Be A Lover", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "33b225a9-9789-4a30-ea5b-fa13c9d141d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be A Lover - Billy Idol.mp4", + "title": "To Be A Lover" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "Land Of Confusion", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c115062b-b12c-b340-d98e-9cea50b8ba27", + "path": "z://MP4\\KaraokeOnVEVO\\Genesis - Land Of Confusion.mp4", + "title": "Land Of Confusion" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kool", + "playlist_title": "Victory", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "9ee61916-0618-26ef-9847-4e848d5c95e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Victory - Kool And The Gang.mp4", + "title": "Victory" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Billy Vera", + "playlist_title": "At This Moment", + "found_song": { + "artist": "Billy Vera", + "disabled": false, + "favorite": false, + "guid": "db902703-dc31-1225-0b40-16fa61097133", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At This Moment - Billy Vera.mp4", + "title": "At This Moment" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Timbuk 3", + "playlist_title": "The Future s So Bright, I Gotta Wear Shades", + "found_song": { + "artist": "Timbuk 3", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca5a2dca-1c88-105e-1c62-2a65dfdb6b41", + "path": "z://MP4\\KaraokeOnVEVO\\Timbuk 3 - The Future s So Bright, I Gotta Wear Shades.mp4", + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Huey Lewis", + "playlist_title": "Hip To Be Square", + "found_song": { + "artist": "Huey Lewis and the News", + "disabled": false, + "favorite": false, + "guid": "1af987f2-3c6b-adf2-b8bd-a28a2ca18ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hip To Be Square - Huey Lewis and the News.mp4", + "title": "Hip To Be Square" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Madonna", + "playlist_title": "Open Your Heart", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "db9817a8-2537-efba-6091-82ac91f977e7", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Open Your Heart (Karaoke Version).mp4", + "title": "Open Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kansas", + "playlist_title": "All I Wanted", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2b5d93a-b225-fa84-31e6-a8f0cf32c451", + "path": "z://MP4\\KaraokeOnVEVO\\Kansas - All I Wanted.mp4", + "title": "All I Wanted" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bon Jovi", + "playlist_title": "You Give Love A Bad Name", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "4414e37b-a09e-132e-af78-2c29187ad2ba", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - You Give Love A Bad Name (Karaoke Version).mp4", + "title": "You Give Love A Bad Name" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carly Simon", + "playlist_title": "Coming Around Again", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7cce267-9dd4-1478-eba0-724de7dbebbd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Carly Simon - Coming Around Again.mp4", + "title": "Coming Around Again" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Samantha Fox", + "playlist_title": "Touch Me (I Want Your Body)", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44f5a88a-89b2-e85d-f19f-b13c63f64653", + "path": "z://MP4\\ZoomKaraokeOfficial\\Samantha Fox - Touch Me (I Want Your Body).mp4", + "title": "Touch Me (I Want Your Body)" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Run-D.M.C.", + "playlist_title": "You Be Illin", + "found_song": { + "artist": "Run D.M.C.", + "disabled": false, + "favorite": false, + "guid": "3df6d509-c75b-8eba-255f-d498230a3272", + "path": "z://MP4\\Let's Sing Karaoke\\Run DMC - You Be Illin' (Karaoke & Lyrics).mp4", + "title": "You Be Illin'" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Georgia Satellites", + "playlist_title": "Keep Your Hands To Yourself", + "found_song": { + "artist": "The Georgia Satellites", + "disabled": false, + "favorite": false, + "guid": "d39653f2-5d09-52b2-dfe6-3f86c3ccf2ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Keep Your Hands To Yourself - The Georgia Satellites.mp4", + "title": "Keep Your Hands To Yourself" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Tina Turner", + "playlist_title": "Two People", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "128cb37e-1b72-5a8e-f6fa-d121a1a9d213", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD045 - Tina Turner\\Tina Turner - Two People - SFG045 - 06.mp3", + "title": "Two People" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Cameo", + "playlist_title": "Word Up", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "guid": "487a4169-ec16-b5c0-dbea-215863ef6626", + "path": "z://MP4\\Sing King Karaoke\\Cameo - Word Up (Karaoke Version).mp4", + "title": "Word Up" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Human League", + "playlist_title": "Human", + "found_song": { + "artist": "The Human League", + "disabled": false, + "favorite": false, + "guid": "2a9e4eda-c0f8-bca4-3e49-6f6a027dc428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF143\\The Human League - Human - SF143 - 10.mp3", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Lionel Richie", + "playlist_title": "Love Will Conquer All", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "b79a8954-2a3f-70e3-4f73-abb94ca19693", + "path": "z://CDG\\Various\\Lionel Richie - Love Will Conquer All.mp3", + "title": "Love Will Conquer All" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "The Jets", + "playlist_title": "You Got It All", + "found_song": { + "artist": "The Jets", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10d52d0b-8bdf-2293-13a5-75257d77717d", + "path": "z://MP4\\Sing King Karaoke\\The Jets - You Got It All.mp4", + "title": "You Got It All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lionel Richie", + "playlist_title": "Ballerina Girl", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "a4c99f04-fd9e-f9f1-de16-89b6de59bdcb", + "path": "z://CDG\\Various\\Lionel Richie - Ballerina Girl.mp3", + "title": "Ballerina Girl" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cinderella", + "playlist_title": "Nobody s Fool", + "found_song": { + "artist": "Cinderella", + "disabled": false, + "favorite": false, + "guid": "20d03842-36d1-da7a-46f9-50f833671cad", + "path": "z://CDG\\Various\\Cinderella - Nobody's Fool.mp3", + "title": "Nobody's Fool" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin On A Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Big Time", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e5cad6-2471-0b64-e300-200dbdc57158", + "path": "z://MP4\\KaraokeOnVEVO\\Peter Gabriel - Big Time.mp4", + "title": "Big Time" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Talking Heads", + "playlist_title": "Wild Wild Life", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df694940-eebf-534f-331a-07fa29976b3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - Wild Wild Life.mp4", + "title": "Wild Wild Life" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Anita Baker", + "playlist_title": "Caught Up In The Rapture", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "d2d79e64-1e91-03fb-908a-f382d59bbf38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caught Up in the Rapture - Anita Baker.mp4", + "title": "Caught Up in the Rapture" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Madonna", + "playlist_title": "True Blue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d319144-d969-3ea0-8069-7846e797f227", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - True Blue.mp4", + "title": "True Blue" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Boston", + "playlist_title": "Amanda", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "guid": "3380ea71-aa7a-4593-91ff-7eb76aaa29b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amanda - Boston.mp4", + "title": "Amanda" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Debbie Harry", + "playlist_title": "French Kissin", + "found_song": { + "artist": "Debbie Harry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeabe10b-3fd6-ebb1-327b-8eb72d36ce14", + "path": "z://CDG\\Sunfly Collection\\Sunfly Aribter\\FLY023\\Debbie Harry - French Kissin' - FLY023 - 06.mp3", + "title": "French Kissin'" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Toto", + "playlist_title": "I ll Be Over You", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "769822b4-4f1e-ae25-eda0-b325f75622a1", + "path": "z://MP4\\Sing King Karaoke\\Toto - I ll Be Over You.mp4", + "title": "I ll Be Over You" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eddie Money", + "playlist_title": "I Wanna Go Back", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3c0323c-9cd6-268c-9b90-e63238c536f0", + "path": "z://CDG\\Various\\Eddie Money - I Wanna Go Back.mp3", + "title": "I Wanna Go Back" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Beastie Boys", + "playlist_title": "(You Gotta) Fight For Your Right (To Party!)", + "found_song": { + "artist": "Beastie Boys", + "disabled": false, + "favorite": false, + "guid": "6b159db1-23cd-cc60-b83a-527d41058920", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Gotta) Fight For Your Right (To Party!) - Beastie Boys.mp4", + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Grace Jones", + "playlist_title": "I m Not Perfect (But I m Perfect For You)", + "found_song": { + "artist": "Grace Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b9a31bd-42df-88b9-5982-5abbc5983fad", + "path": "z://MP4\\KaraokeOnVEVO\\Grace Jones - I m Not Perfect (But I m Perfect For You.mp4", + "title": "I m Not Perfect (But I m Perfect For You)" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Oran Juice Jones", + "playlist_title": "The Rain", + "found_song": { + "artist": "Oran Juice Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edb70ccd-b0df-ff58-1299-ea55d6fe17c1", + "path": "z://MP4\\KaraokeOnVEVO\\Oran Juice Jones - The Rain.mp4", + "title": "The Rain" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "Suburbia", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bda5144-039e-c530-9f4f-169ed3f2ecfd", + "path": "z://CDG\\SBI\\SBI-01\\SB02858 - Pet Shop Boys - Suburbia.mp3", + "title": "Suburbia" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toto", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77ab272b-54ca-fec6-9acd-c7ceb0604b97", + "path": "z://MP4\\VocalStarKaraoke\\Toto - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Robert Palmer", + "playlist_title": "I Didn t Mean To Turn You On", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "guid": "80b0629e-0830-10fa-d05e-4a59996d7d04", + "path": "z://MP4\\Stingray Karaoke\\I Didn't Mean To Turn You On Robert Palmer Karaoke with Lyrics.mp4", + "title": "I Didn't Mean To Turn You On" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Cameo", + "playlist_title": "Candy", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ace4d3f-3f85-1cdd-2204-f69a9c8f44fc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cameo - Candy.mp4", + "title": "Candy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Paul Simon", + "playlist_title": "Graceland", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "fd0a1d48-19fb-e944-6cf6-71bcb0cb6a74", + "path": "z://CDG\\Various\\Paul Simon - Graceland.mp3", + "title": "Graceland" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Eurythmics", + "playlist_title": "Thorn In My Side", + "found_song": { + "artist": "Eurythmics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5d2b9c3-2202-61f5-f248-22773bd083c9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eurythmics - Thorn In My Side.mp4", + "title": "Thorn In My Side" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "True Colors", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "df588642-a090-1073-ee1a-6ef9ddd75f31", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - True Colors (Karaoke Version).mp4", + "title": "True Colors" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Anita Baker", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ccff3-039f-09a9-4792-a2fb5af2967b", + "path": "z://MP4\\KaraokeOnVEVO\\Anita Baker - Sweet Love.mp4", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Rod Stewart", + "playlist_title": "Every Beat Of My Heart", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09de27fd-2942-9efe-4f9e-ac91c0bfb7c8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Every Beat Of My Heart.mp4", + "title": "Every Beat Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Janet Jackson", + "playlist_title": "Control", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3952c8ba-e218-ea19-be21-e42791836cb7", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Nasty.mp4", + "title": "Nasty" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Pretenders", + "playlist_title": "Don't Get Me Wrong", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "f00f171e-5f05-1343-352d-59ec762272ef", + "path": "z://MP4\\KaraokeOnVEVO\\The Pretenders - Don't Get Me Wrong (Karaoke).mp4", + "title": "Don't Get Me Wrong" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Survivor", + "playlist_title": "Is This Love", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc9c33e9-4fd3-1830-ee53-00644d68867b", + "path": "z://MP4\\KaraokeOnVEVO\\Survivor - Search Is Over.mp4", + "title": "Search Is Over" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "John Berry", + "playlist_title": "Love Is Forever", + "found_song": { + "artist": "The Band Perry", + "disabled": false, + "favorite": false, + "guid": "17fb18ef-d5be-093a-ec05-8477e13c58bd", + "path": "z://MP4\\KtvEntertainment\\The Band Perry - Live Forever Karaoke Lyrics.mp4", + "title": "Live Forever" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Glass Tiger", + "playlist_title": "Someday", + "found_song": { + "artist": "Michael Bublé ft. Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dfe0e83-a9f0-233f-3a82-932641d1a8c9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Buble feat Meghan Trainor - Someday.mp4", + "title": "Someday" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Peter Cetera With Amy Grant", + "playlist_title": "The Next Time I Fall", + "found_song": { + "artist": "Peter Cetera ft. Amy Grant", + "disabled": false, + "favorite": false, + "guid": "3e4e9389-40df-5bdb-953b-293d6d4320c1", + "path": "z://MP4\\Let's Sing Karaoke\\Cetera, Peter & Amy Grant - (Duet) Next Time I Fall (In Love) (Karaoke & Lyrics).mp4", + "title": "(Duet) Next Time I Fall" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Change Of Heart", + "found_song": { + "artist": "David Slater", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36cfb116-35eb-8f65-c8e1-641319177ebc", + "path": "z://MP4\\Sing King Karaoke\\David Slater - Exchange of Hearts.mp4", + "title": "Exchange of Hearts" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Falling In Love (Uh-Oh)", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "9cfbad1a-f4e3-0c6f-812b-26edef62d16c", + "path": "z://MP4\\TheKARAOKEChannel\\Everlasting Love in the style of Gloria Estefan karaoke video with lyrics.mp4", + "title": "Everlasting Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Billy Joel", + "playlist_title": "This Is The Time", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "a54af901-7d51-535d-5109-92a6bc6b7493", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Night - Billy Joel.mp4", + "title": "This Night" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Chicago", + "playlist_title": "Will You Still Love Me?", + "found_song": { + "artist": "Lobo", + "disabled": false, + "favorite": false, + "guid": "b804299a-abef-af1e-d4fc-66e809ad9cf6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will you Still Love Me Tomorrow - Lobo.mp4", + "title": "Will you Still Love Me Tomorrow" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Ready For The World", + "playlist_title": "Love You Down", + "found_song": { + "artist": "Ready For The World", + "disabled": false, + "favorite": false, + "guid": "bca8499b-ba18-2344-e8fe-ad82bafc5f57", + "path": "z://MP4\\KaraokeOnVEVO\\Ready For The World - Oh Sheila (Karaoke).mp4", + "title": "Oh Sheila" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Luther Vandross", + "playlist_title": "Stop To Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89195cca-23da-c3a8-4b80-9551ff511f3e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Stop To Love.mp4", + "title": "Stop To Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Benjamin Orr", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Blunt, James", + "disabled": false, + "favorite": false, + "guid": "3cc5bdef-ae7d-04cf-dd0c-a7b4863209b7", + "path": "z://CDG\\Big Hits Karaoke\\BHK015\\BHK015-11 - Blunt, James - Stay The Night.mp3", + "title": "Stay The Night" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Goldmine", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Freddie Jackson", + "playlist_title": "Tasty Love", + "found_song": { + "artist": "Freddie Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1598cd6e-36ac-bb9f-9a1a-353a6fffa2a4", + "path": "z://MP4\\KaraokeOnVEVO\\Freddie Jackson - You Are My Lady.mp4", + "title": "You Are My Lady" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Jimmy Lee", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "b41c6894-4d2f-ecf0-14b0-5816f2b659e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be - Aretha Franklin.mp4", + "title": "Let It Be" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "The Human League", + "playlist_title": "I Need Your Loving", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "ddbff09c-8aa8-c09f-42c5-468f7dc25a88", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need Your Lovin - Teena Marie.mp4", + "title": "I Need Your Lovin" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Eddie Money", + "playlist_title": "Take Me Home Tonight", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "guid": "cc602a85-ed3e-5178-244a-a82d5ee716e9", + "path": "z://MP4\\Let's Sing Karaoke\\Money, Eddie - Baby Hold On (Karaoke & Lyrics).mp4", + "title": "Baby Hold On" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Corey Hart", + "playlist_title": "Can t Help Falling In Love", + "found_song": { + "artist": "Haley Reinhart", + "disabled": false, + "favorite": false, + "guid": "a8a6a73a-6e12-a12d-9ed9-53f251d32c53", + "path": "z://MP4\\KtvEntertainment\\Haley Reinhart - Can't Help Falling In Love Karaoke Lyrics.mp4", + "title": "Can't Help Falling In Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Somewhere Out There (From \"An American Tail\")", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "5c465966-dc24-0771-06b2-44a0fc37c6e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere Out There - Linda Ronstadt.mp4", + "title": "Somewhere Out There" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Orchestral Manoeuvres In The Dark", + "playlist_title": "(Forever) Live And Die", + "found_song": { + "artist": "Orchestral Manoeuvres In Dark", + "disabled": false, + "favorite": false, + "guid": "8717312b-efeb-ee0c-a243-229720147264", + "path": "z://MP4\\Let's Sing Karaoke\\Orchestral Manoeuvres In Dark - If You Leave (Karaoke & Lyrics).mp4", + "title": "If You Leave" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Bobby Brown", + "playlist_title": "Girlfriend", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "5a3a2dc5-b351-0a49-61a7-44ffe884b4ca", + "path": "z://MP4\\Let's Sing Karaoke\\N'Sync - Girlfriend (Karaoke & Lyrics).mp4", + "title": "Girlfriend" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Paul Young", + "playlist_title": "Some People", + "found_song": { + "artist": "Paul Young", + "disabled": false, + "favorite": false, + "guid": "b9067dfc-cc49-1b81-bf25-b774505d2793", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of The Common People - Paul Young.mp4", + "title": "Love Of The Common People" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "David", + "playlist_title": "Welcome To The Boomtown", + "found_song": { + "artist": "Kevin ft Rick Ross Rudolf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f04e7e18-9eed-2ac0-00a6-14c0cf7e657f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF279\\Kevin ft Rick Ross Rudolf - Welcome To The World - SF279 - 06.mp3", + "title": "Welcome To The World" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Lisa Lisa", + "playlist_title": "All Cried Out", + "found_song": { + "artist": "Alison Moyet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "afb7769e-c421-97c7-b5ab-8e4ad3386295", + "path": "z://MP4\\VocalStarKaraoke\\Alison Moyet - All Cried Out.mp4", + "title": "All Cried Out" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Daryl Hall", + "playlist_title": "Foolish Pride", + "found_song": { + "artist": "Daryl Hall & John Oates", + "disabled": false, + "favorite": false, + "guid": "7003e085-7691-adac-de25-a86091046720", + "path": "z://MP4\\Let's Sing Karaoke\\Hall, Daryl & John Oates - Rich Girl (Karaoke & Lyrics).mp4", + "title": "Rich Girl" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Communards", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Communards", + "disabled": false, + "favorite": false, + "guid": "05ae843e-356d-0866-6ee4-fa337bfa316a", + "path": "z://CDG\\Various\\Communards - Don't Leave Me This Way.mp3", + "title": "Don't Leave Me This Way" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Bob Seger", + "playlist_title": "Miami", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "f89befb0-d494-5121-7614-c67091a1c9ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mainstreet - Bob Seger.mp4", + "title": "Mainstreet" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "John Parr", + "playlist_title": "Blame It On The Radio", + "found_song": { + "artist": "Jacksons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b8f13e7-75f3-1048-bf6d-d09d806e1c1c", + "path": "z://MP4\\KaraokeOnVEVO\\Jacksons - Blame It On The Boogie.mp4", + "title": "Blame It On The Boogie" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Uptown", + "playlist_title": "(I Know) I m Losing You", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "929d7a96-a19c-4ee4-f6f5-41e28b5318d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I Know) I m Losing You - The Temptations.mp4", + "title": "(I Know) I m Losing You" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Bananarama", + "playlist_title": "A Trick Of The Night", + "found_song": { + "artist": "Aqua", + "disabled": false, + "favorite": false, + "guid": "ddc2ac68-ab85-9982-cc47-a3d90f37908a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF123\\Aqua - Heat Of The Night - SF123 - 14.mp3", + "title": "Heat Of The Night" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Stacy Lattisaw", + "playlist_title": "Nail It To The Wall", + "found_song": { + "artist": "Stacy Lattisaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a24185b6-e5e5-50fa-9bf5-c4544eb07d0f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Stacy Lattisaw - Jump To The Beat.mp4", + "title": "Jump To The Beat" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Steve Winwood", + "playlist_title": "Freedom Overspill", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60719277-a695-f172-5104-a2cf883fd31a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Steve Winwood - Valerie.mp4", + "title": "Valerie" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 17, + "artist": "Howard Jones", + "title": "You Know I Love You ... Don t You?", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nancy Martinez", + "title": "For Tonight", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Boston", + "title": "We re Ready", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Chico DeBarge", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Journey", + "title": "I ll Be Alright Without You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Jesse Johnson (Featuring Sly Stone)", + "title": "Crazay", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Don Johnson", + "title": "Heartache Away", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jeff Lorber", + "title": "Facts Of Love", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dead Or Alive", + "title": "Brand New Lover", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ann Wilson", + "title": "The Best Man In The World", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Stacey Q", + "title": "We Connect", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Commodores", + "title": "Goin To The Bank", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ric Ocasek", + "title": "True To You", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bob Geldof", + "title": "This Is The World Calling", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ric Ocasek", + "title": "Emotion In Motion", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "El DeBarge", + "title": "Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Secret Ties", + "title": "Dancin In My Sleep", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Five Star", + "title": "If I Say Yes", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 33, + "missing_count": 18, + "needs_manual_review": 33 + } + }, + { + "playlist_title": "1985 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Have Mercy", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31759cc0-f9d9-d134-92b7-88ce959d8076", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Have Mercy.mp4", + "title": "Have Mercy" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Reba McEntire", + "playlist_title": "Only In My Mind", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6454ac1f-0855-ddd2-ed1e-e9fe1939477d", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Only In My Mind.mp4", + "title": "Only In My Mind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Gene Watson", + "playlist_title": "Memories To Burn", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576ca423-0ede-9116-3ce7-3a70214a135a", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Memories To Burn.mp4", + "title": "Memories To Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Strait", + "playlist_title": "The Chair", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "73393c7f-5eea-fb52-a1a1-c8a23c7319a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chair - George Strait.mp4", + "title": "The Chair" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Jones", + "playlist_title": "The One I Loved Back Then (The Corvette Song)", + "found_song": { + "artist": "George Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc8709cb-5a3e-f1c4-1e1d-c86b1ac1f41d", + "path": "z://MP4\\KaraokeOnVEVO\\George Jones - The One I Loved Back Then (The Corvette Song.mp4", + "title": "The One I Loved Back Then (The Corvette Song)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Morning Desire", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1315c47b-47b4-ced1-e206-14f4ec1d324f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers - You And I.mp4", + "title": "You And I" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Dan Seals", + "playlist_title": "Bop", + "found_song": { + "artist": "Dan Seals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86b2c164-6056-c31a-be29-f1d090ce2cd2", + "path": "z://MP4\\Sing King Karaoke\\Dan Seals - One Friend.mp4", + "title": "One Friend" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Rosanne Cash", + "playlist_title": "Never Be You", + "found_song": { + "artist": "Rosanne Cash", + "disabled": false, + "favorite": false, + "guid": "f620ac88-0141-35c8-afe3-d02f0dd6980c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Seven Year Ache - Rosanne Cash.mp4", + "title": "Seven Year Ache" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "The Nitty Gritty Dirt Band", + "playlist_title": "Home Again In My Heart", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "f6ede1a9-f9be-da68-8088-08be1d727aed", + "path": "z://MP4\\TheKARAOKEChannel\\Fishin' In The Dark Nitty Gritty Dirt Band Karaoke with Lyrics.mp4", + "title": "Fishin' In The Dark" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Janie Frickie", + "playlist_title": "Somebody Else s Fire", + "found_song": { + "artist": "Billy Fury", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a4bfd0b-c0be-01d0-45c5-537fd6ce07d5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Fury - Somebody Elses Girl.mp4", + "title": "Somebody Else's Girl" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Forester Sisters", + "playlist_title": "Just In Case", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "67f39edb-4201-4d44-37d0-62687bddeecf", + "path": "z://MP4\\KaraFun Karaoke\\Automatic - The Pointer Sisters Karaoke Version KaraFun.mp4", + "title": "Automatic" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "A World Without Love", + "found_song": { + "artist": "Peter And Gordon", + "disabled": false, + "favorite": false, + "guid": "bc041e82-117c-da98-43f6-2eb0aedc1bd4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A World Without Love - Peter And Gordon.mp4", + "title": "A World Without Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Juice Newton", + "playlist_title": "Hurt", + "found_song": { + "artist": "Joe Longthorne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f045505-7b5a-84a6-13ab-99515b164613", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Longthorne - Hurt.mp4", + "title": "Hurt" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Conway Twitty", + "playlist_title": "The Legend And The Man", + "found_song": { + "artist": "Loretta Lynn & Conway Twitty", + "disabled": false, + "favorite": false, + "guid": "874f6e40-c1cd-98c6-12cb-b6af2be85ee6", + "path": "z://MP4\\Let's Sing Karaoke\\Lynn, Loretta & Conway Twitty - Lead Me On (Karaoke & Lyrics).mp4", + "title": "Lead Me On" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Steve Wariner", + "playlist_title": "You Can Dream Of Me", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "dd87628c-ae67-28b3-0f9d-87ebabeb43c9", + "path": "z://CDG\\Various\\Stevie Wonder - You And I.mp3", + "title": "You And I" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Waylon Jennings", + "playlist_title": "The Devil s On The Loose", + "found_song": { + "artist": "Waylon Jennings", + "disabled": false, + "favorite": false, + "guid": "4c3abb91-972c-ac55-85e0-165b374c01b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Door is Always Open - Waylon Jennings.mp4", + "title": "The Door is Always Open" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Glen Campbell", + "playlist_title": "It s Just A Matter Of Time", + "found_song": { + "artist": "David Alexander", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5fa8755-e76a-52c4-40d2-f230c89617aa", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Alexander - Its Just A Matter Of Time.mp4", + "title": "It's Just A Matter Of Time" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Restless Heart", + "title": "(Back To The) Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "John Conlee", + "title": "Old School", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle And Gary Morris", + "title": "Makin Up For Lost Time", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T. Graham Brown", + "title": "I Tell It Like It Used To Be", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sawyer Brown", + "title": "Betty s Bein Bad", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marie Osmond", + "title": "There s No Stopping Your Heart", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Billy Joe Royal", + "title": "Burned Like A Rocket", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Oak Ridge Boys", + "title": "Come On In (You Did The Best You Could)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 12, + "missing_count": 8, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "1985 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Simple Minds", + "playlist_title": "Alive And Kicking", + "found_song": { + "artist": "Simple Minds", + "disabled": false, + "favorite": false, + "guid": "4165362f-c7c4-758e-3994-d15ad685b507", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Alive And Kicking - Simple Minds.mp4", + "title": "Alive And Kicking" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dionne", + "playlist_title": "That s What Friends Are For", + "found_song": { + "artist": "Dionne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2246dd3-47b0-a4b0-8432-a8cfbac00351", + "path": "z://MP4\\VocalStarKaraoke\\Dionne - That s What Friends Are For.mp4", + "title": "That s What Friends Are For" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Mellencamp", + "playlist_title": "Small Town", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "a34ca4f1-44a5-2103-4c07-2cd19507085c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Small Town - John Mellencamp.mp4", + "title": "Small Town" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mr. Mister", + "playlist_title": "Broken Wings", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "53ec7d17-c49c-8290-7aa6-deeee71f9c2d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Mister - Broken Wings (Karaoke Version).mp4", + "title": "Broken Wings" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Nicks", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Stevie Nicks", + "disabled": false, + "favorite": false, + "guid": "cda52c4e-6e79-8b12-5275-6045360a015c", + "path": "z://MP4\\Let's Sing Karaoke\\Nicks, Stevie - Talk To Me (Karaoke & Lyrics).mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dire Straits", + "playlist_title": "Walk Of Life", + "found_song": { + "artist": "Dire Straits", + "disabled": false, + "favorite": false, + "guid": "92cbb9f9-4b0b-6a6a-9d9d-7504d57ba0b1", + "path": "z://MP4\\TheKARAOKEChannel\\Dire Straits - Walk Of Life (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Walk Of Life" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Survivor", + "playlist_title": "Burning Heart", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17fa371c-1d2e-0fcb-babc-556cfd85e614", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - Burning Heart.mp4", + "title": "Burning Heart" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "My Hometown", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "b933e80f-8805-ba31-a7f7-4d2b0037325a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Hometown - Bruce Springsteen.mp4", + "title": "My Hometown" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Wham!", + "playlist_title": "I m Your Man", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5af17784-ed9c-e250-fc3d-a7eecef71097", + "path": "z://MP4\\Sing King Karaoke\\Wham! - I m Your Man.mp4", + "title": "I m Your Man" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Miami Sound Machine", + "playlist_title": "Conga", + "found_song": { + "artist": "Miami Sound Machine", + "disabled": false, + "favorite": false, + "guid": "0d26ee70-143d-b435-f65d-c20a28b1f733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Conga - Miami Sound Machine.mp4", + "title": "Conga" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Paul McCartney", + "playlist_title": "Spies Like Us", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0325025b-cc3a-73a1-bb04-b2a857f1f61d", + "path": "z://MP4\\KaraokeOnVEVO\\Paul McCartney - Spies Like Us.mp4", + "title": "Spies Like Us" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Heart", + "playlist_title": "Never", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ffa400a-a5d7-7936-05ff-2c69b7039bed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heart - Never.mp4", + "title": "Never" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Starship", + "playlist_title": "We Built This City", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": true, + "guid": "2cbdbb6e-b85c-603b-fe4c-bba61bf733b1", + "path": "z://MP4\\Sing King Karaoke\\Starship - We Built This City (Karaoke Version).mp4", + "title": "We Built This City" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pat Benatar", + "playlist_title": "Sex As A Weapon", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "2654cae5-7229-d408-21f1-a5c19da9e2c0", + "path": "z://MP4\\Let's Sing Karaoke\\Benatar, Pat - Sex As A Weapon (Karaoke & Lyrics).mp4", + "title": "Sex As A Weapon" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Whitney Houston", + "playlist_title": "How Will I Know", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "fef371b0-6bfb-2dd4-36e5-448bfddc02be", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - How Will I Know (Karaoke Version).mp4", + "title": "How Will I Know" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Sade", + "playlist_title": "The Sweetest Taboo", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8948469-9173-9993-6c4b-6c01d9380d6a", + "path": "z://MP4\\KaraokeOnVEVO\\Sade - The Sweetest Taboo.mp4", + "title": "The Sweetest Taboo" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Thompson Twins", + "playlist_title": "Lay Your Hands On Me", + "found_song": { + "artist": "Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e589d85-1641-554a-267a-a9bf9a3e3bd1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thompson Twins - Lay Your Hands On Me.mp4", + "title": "Lay Your Hands On Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "A-Ha", + "playlist_title": "The Sun Always Shines on T.V.", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b06ef4d-5e09-3e16-88af-43a113d9813b", + "path": "z://MP4\\ZoomKaraokeOfficial\\A-ha - The Sun Always Shines On TV.mp4", + "title": "The Sun Always Shines On T.V." + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "James Brown", + "playlist_title": "Living In America", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60a1c1ad-2c1f-7320-a648-564c9ae9971d", + "path": "z://MP4\\KaraokeOnVEVO\\James Brown - Living In America.mp4", + "title": "Living In America" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Dream Academy", + "playlist_title": "Life In A Northern Town", + "found_song": { + "artist": "The Dream Academy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab450d32-3d66-3561-c1d6-e716abea6d85", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dream Academy - Life In A Northern Town.mp4", + "title": "Life In A Northern Town" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Glenn Frey", + "playlist_title": "You Belong To The City", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1bb175c-281b-2fcb-d05c-0a2120b65748", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Glenn Frey - You Belong To The City - SFMW 812 -15.mp3", + "title": "You Belong To The City" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mr. Mister", + "playlist_title": "Kyrie", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "84447bd2-35e6-3062-7111-bce495e6aa32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kyrie - Mr. Mister.mp4", + "title": "Kyrie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Mike", + "playlist_title": "Silent Running", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91c6fbd1-9968-149e-30ab-97205f4129e2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Silent Running.mp4", + "title": "Silent Running" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Part-Time Lover", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c493a02-6891-f493-1abd-8ed5b4e6e696", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Part Time Lover (2.mp4", + "title": "Part Time Lover" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Freddie Jackson", + "playlist_title": "You Are My Lady", + "found_song": { + "artist": "Freddie Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1598cd6e-36ac-bb9f-9a1a-353a6fffa2a4", + "path": "z://MP4\\KaraokeOnVEVO\\Freddie Jackson - You Are My Lady.mp4", + "title": "You Are My Lady" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Queen", + "playlist_title": "One Vision", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "8e934654-67ff-dcb8-4bca-0058dd8f558c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Vision - Queen.mp4", + "title": "One Vision" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Starship", + "playlist_title": "Sara", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": false, + "guid": "d99b8b63-5b2c-40bf-19e0-6ddd6d9ce9f3", + "path": "z://MP4\\Let's Sing Karaoke\\Starship - Sara (Karaoke & Lyrics) (2).mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "guid": "6c75d46d-966e-b68c-0f03-e4f260e19b43", + "path": "z://MP4\\TheKARAOKEChannel\\Kate Bush - Running Up That Hill (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Running Up That Hill" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Atlantic Starr", + "playlist_title": "Secret Lovers", + "found_song": { + "artist": "Atlantic Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83b352fc-9837-58b2-56f5-daf8ef3c8b77", + "path": "z://MP4\\ZoomKaraokeOfficial\\Atlantic Starr - Secret Lovers.mp4", + "title": "Secret Lovers" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Whitney Houston", + "playlist_title": "Saving All My Love For You", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "1edc1b52-4d78-eb42-aedf-b4eba09dbe4f", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - Saving All My Love For You (Karaoke Version).mp4", + "title": "Saving All My Love For You" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Talking Heads", + "playlist_title": "And She Was", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d427f184-9105-d62f-4938-9c777d5914d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - And She Was.mp4", + "title": "And She Was" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "A-Ha", + "playlist_title": "Take On Me", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "guid": "90fe4ebf-e5df-fddf-f68f-032c283b1635", + "path": "z://MP4\\Sing King Karaoke\\a-ha - Take On Me (Karaoke Version).mp4", + "title": "Take On Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Sting", + "playlist_title": "Fortress Around Your Heart", + "found_song": { + "artist": "Sting", + "disabled": false, + "favorite": false, + "guid": "b985d911-381c-606f-8b75-49a4ec30c087", + "path": "z://MP4\\Let's Sing Karaoke\\Sting - Fortress Around Your Heart (Karaoke & Lyrics).mp4", + "title": "Fortress Around Your Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Eddie Murphy", + "playlist_title": "Party All The Time", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "0b985a5c-30bf-6b96-3497-a7f7d353c875", + "path": "z://CDG\\Various\\Tim McGraw - Angry All The Time.mp3", + "title": "Angry All The Time" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Klymaxx", + "playlist_title": "I Miss You", + "found_song": { + "artist": "Clean Bandit ft. Julia Michaels", + "disabled": false, + "favorite": false, + "guid": "d15f4ff0-42e0-e773-a962-788fbe2e2497", + "path": "z://MP4\\Sing King Karaoke\\Clean Bandit ft. Julia Michaels - I Miss You (Karaoke Version).mp4", + "title": "I Miss You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Cars", + "playlist_title": "Tonight She Comes", + "found_song": { + "artist": "The La's", + "disabled": false, + "favorite": false, + "guid": "21982fcb-e8da-5245-972f-19b3c2adf85c", + "path": "z://MP4\\Sing King Karaoke\\The La's - There She Goes (Karaoke Version).mp4", + "title": "There She Goes" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "ZZ Top", + "playlist_title": "Sleeping Bag", + "found_song": { + "artist": "ZZ Top", + "disabled": false, + "favorite": false, + "guid": "6af41a3a-3c42-d6ae-4c17-6df02a95b22c", + "path": "z://CDG\\Various\\ZZ Top - Legs.mp3", + "title": "Legs" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Sting", + "playlist_title": "Love Is The Seventh Wave", + "found_song": { + "artist": "England Dan & John Ford Coley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd2af36e-fe39-9506-38cd-939692d2f4fc", + "path": "z://MP4\\ZoomKaraokeOfficial\\England Dan & John Ford Coley - Love Is The Answer.mp4", + "title": "Love Is The Answer" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Bryan Adams/Tina Turner", + "playlist_title": "It s Only Love", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "8fa39a04-d8a7-5652-4080-399d4125e530", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Only Love - Bryan Adams.mp4", + "title": "It s Only Love" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Go Home", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "4fdd7e03-909e-30ae-3d4a-330730111869", + "path": "z://CDG\\Various\\Stevie Wonder - Use Me.mp3", + "title": "Use Me" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Night Ranger", + "playlist_title": "Goodbye", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "ef7252b8-4e89-4fa2-e420-de19d595ec2d", + "path": "z://MP4\\KaraFun Karaoke\\Goodbye - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Goodbye" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Ta Mara", + "playlist_title": "Everybody Dance", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "guid": "3e7f4992-9028-5359-e2a9-882d4d50f1af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everybody Dance - Chic.mp4", + "title": "Everybody Dance" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Billy Ocean", + "playlist_title": "When The Going Gets Tough (Jewel Of The Nile Theme)", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f182affb-65ae-7aa8-df13-c96194b719cb", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ocean - When The Going Gets Tough.mp4", + "title": "When The Going Gets Tough" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Pete Townsend", + "playlist_title": "Face The Face", + "found_song": { + "artist": "Siouxsie & The Banshees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23596ba6-d26f-29b5-41ff-f85f30662717", + "path": "z://CDG\\SBI\\SBI-01\\SB01831 - Siouxsie & The Banshees - Face To Face.mp3", + "title": "Face To Face" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Who s Zoomin Who", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "edcf4df2-7421-a4a7-9b8d-fc0f7f0edb91", + "path": "z://MP4\\KaraFun Karaoke\\Aretha Franklin - Chain Of Fools.mp4", + "title": "Chain Of Fools" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Elton John", + "playlist_title": "Wrap Her Up", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57e2d3f1-444b-2ebe-633c-89c7ff3132a6", + "path": "z://CDG\\Various\\Elton John - Wake Up Wendy.mp3", + "title": "Wake Up Wendy" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Corey Hart", + "playlist_title": "Everything In My Heart", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd27195-6594-6cd0-6d1b-4cbdd6bf88eb", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Something In My Heart.mp4", + "title": "Something In My Heart" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Eurythmics And Aretha Franklin", + "playlist_title": "Sisters Are Doing It For Themselves", + "found_song": { + "artist": "Eurythmics ft. Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "108b95ed-7723-5e36-791b-46773c7df34e", + "path": "z://MP4\\VocalStarKaraoke\\Eurythmics And Aretha Franklin - Sisters Are Doing It For Themselves.mp4", + "title": "Sisters Are Doing It For Themselves" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Rush", + "playlist_title": "The Big Money", + "found_song": { + "artist": "Brandy, Monica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99d44190-b3e2-208b-eae1-edac5dc89b76", + "path": "z://MP4\\Sing King Karaoke\\Brandy, Monica - The Boy Is Mine.mp4", + "title": "The Boy Is Mine" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Sheena Easton", + "playlist_title": "Do It For Love", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "e5925a6d-aaae-dac2-b223-0504c4b49794", + "path": "z://MP4\\Sing King Karaoke\\Sheena Easton - Almost Over You (Karaoke Version).mp4", + "title": "Almost Over You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Asia", + "playlist_title": "Go", + "found_song": { + "artist": "Travie McCoy ft. Sia", + "disabled": false, + "favorite": false, + "guid": "5e3975b6-c253-361e-3837-e99024d77199", + "path": "z://MP4\\Sing King Karaoke\\Travie McCoy ft. Sia - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Ready For The World", + "playlist_title": "Digital Display", + "found_song": { + "artist": "Ready For The World", + "disabled": false, + "favorite": false, + "guid": "bca8499b-ba18-2344-e8fe-ad82bafc5f57", + "path": "z://MP4\\KaraokeOnVEVO\\Ready For The World - Oh Sheila (Karaoke).mp4", + "title": "Oh Sheila" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "New Edition", + "playlist_title": "Count Me Out", + "found_song": { + "artist": "New Edition", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9dcd1472-3cbd-b3a3-42bd-a7d013fd7f1e", + "path": "z://CDG\\SBI\\SBI-03\\SB23442 - New Edition - Cool It Now.mp3", + "title": "Cool It Now" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Twisted Sister", + "playlist_title": "Leader Of The Pack", + "found_song": { + "artist": "The Shangri-Las", + "disabled": false, + "favorite": false, + "guid": "7dfa48df-962e-16b2-80c4-6087ab266e32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Pack - The Shangri-Las.mp4", + "title": "Leader Of The Pack" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Paul Young", + "playlist_title": "Everything Must Change", + "found_song": { + "artist": "Taylor Swift ft. Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "624e976b-7890-c6ed-8ffb-51e26081f5b9", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift and Ed Sheeran - Everything Has Changed (Karaoke Version).mp4", + "title": "Everything Has Changed" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Hooters", + "playlist_title": "Day By Day", + "found_song": { + "artist": "Godspell", + "disabled": false, + "favorite": false, + "guid": "dec7f86c-94d4-f3fd-2526-31b1d3f4003b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Day By Day - Godspell.mp4", + "title": "Day By Day" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Tears For Fears", + "playlist_title": "Head Over Heels", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56c0b508-53dc-1031-ae69-0e8c19695894", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Tears For Fears - Head Over Heals - SFMW 850 -11.mp3", + "title": "Head Over Heals" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "James Taylor", + "playlist_title": "Everyday", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "1c8779de-cac8-c507-ef3d-e1d66e2ac184", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mexico - James Taylor.mp4", + "title": "Mexico" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Morning Desire", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1315c47b-47b4-ced1-e206-14f4ec1d324f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers - You And I.mp4", + "title": "You And I" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Tina Turner", + "playlist_title": "One Of The Living", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "e511d194-9d2c-794e-3adb-283357f41a61", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD045 - Tina Turner\\Tina Turner - Way Of The World - SFG045 - 14.mp3", + "title": "Way Of The World" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "O.M.D.", + "playlist_title": "Secret", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "89e709ea-4e51-1d14-6e0a-f878f5590714", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Madonna - Secret - SF010 - 04.mp3", + "title": "Secret" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Chaka Khan", + "playlist_title": "Own The Night", + "found_song": { + "artist": "Chaka Khan, Rufus", + "disabled": false, + "favorite": false, + "guid": "1e786344-d886-46b3-837e-04669691e937", + "path": "z://MP4\\KaraokeOnVEVO\\Chaka Khan, Rufus - Sweet Thing (Karaoke).mp4", + "title": "Sweet Thing" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "John Cafferty", + "playlist_title": "Small Town Girl", + "found_song": { + "artist": "John Cafferty", + "disabled": false, + "favorite": false, + "guid": "f0e496da-5fda-518b-46ae-1d82cdc0a99f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 877\\John Cafferty - Hearts On Fire - SFMW877 - 03.mp3", + "title": "Hearts On Fire" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Loverboy", + "playlist_title": "Dangerous", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc1c30a3-9c3d-1f51-8720-d48b1424b885", + "path": "z://MP4\\KaraokeOnVEVO\\Roxette - Dangerous.mp4", + "title": "Dangerous" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Sly Fox", + "playlist_title": "Let s Go All The Way", + "found_song": { + "artist": "Sly Fox", + "disabled": false, + "favorite": false, + "guid": "6c7f2840-8f53-e3dd-40f8-f955c1379e81", + "path": "z://CDG\\Various\\Sly Fox - Lets Go All The Way.mp3", + "title": "Lets Go All The Way" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Joni Mitchell", + "playlist_title": "Good Friends", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edad6b48-6e5b-9b36-637d-1538ebe63536", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joni Mitchell - River.mp4", + "title": "River" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Roger Daltrey", + "playlist_title": "Let Me Down Easy", + "found_song": { + "artist": "Sheppard", + "disabled": false, + "favorite": false, + "guid": "c91fe93c-fd1f-848e-6f2d-be148e6ecdb1", + "path": "z://CDG\\Big Hits Karaoke\\BHK046\\BHK046-05 - Sheppard - Let Me Down Easy.mp3", + "title": "Let Me Down Easy" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "The Alarm", + "playlist_title": "Strength", + "found_song": { + "artist": "The Jam", + "disabled": false, + "favorite": false, + "guid": "c9877e51-295c-d593-ed24-afce50847d86", + "path": "z://MP4\\singsongsmusic\\Strange Town - Karaoke HD (In the style of The Jam).mp4", + "title": "Strange Town" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Freedom", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Soul Kiss", + "found_song": { + "artist": "Olivia Newton-John ft. John Travolta", + "disabled": false, + "favorite": false, + "guid": "be5cc193-48f9-3a93-6f1e-8cb53c038010", + "path": "z://MP4\\KaraokeOnVEVO\\Olivia Newton-John & John Travolta - Summer Nights (Karaoke).mp4", + "title": "Summer Nights" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "John Mellencamp", + "playlist_title": "Lonely Ol Night", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "guid": "53bcf35d-9188-fc91-f317-363fb2dd6853", + "path": "z://MP4\\Let's Sing Karaoke\\Mellencamp, John Cougar - Lonely Ol' Night (Karaoke & Lyrics).mp4", + "title": "Lonely Ol' Night" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Lionel Richie", + "title": "Say You, Say Me (Title Song From White Nights)", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Phil Collins/Marilyn Martin", + "title": "Separate Lives (Theme From White Nights)", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Arcadia", + "title": "Election Day", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Scritti Politti", + "title": "Perfect Way", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Kool", + "title": "Emergency", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clarence Clemons", + "title": "You re A Friend Of Mine", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Starpoint", + "title": "Object Of My Desire", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jellybean", + "title": "Sidewalk Talk", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sheila E", + "title": "A Love Bizarre", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Artists United Against Apartheid", + "title": "Sun City", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Baltimora", + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Wang Chung", + "title": "To Live And Die In L.A.", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Jack Wagner", + "title": "Too Young", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jan Hammer", + "title": "Miami Vice Theme", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Freddie Jackson", + "title": "He ll Never Love You (Like I Do)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Barbra Streisand", + "title": "Somewhere (From West Side Story)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Isley/Jasper/Isley", + "title": "Caravan Of Love", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "David Foster", + "title": "Love Theme From St. Elmo s Fire (Instrumental)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lisa Lisa", + "title": "Can You Feel The Beat", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Charlie Sexton", + "title": "Beat s So Lonely", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "El DeBarge With DeBarge", + "title": "The Heart Is Not So Smart", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "ABC", + "title": "Be Near Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Nick Lowe", + "title": "I Knew The Bride (When She Use To Rock N Roll)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Eugene Wilde", + "title": "Don t Say No Tonight", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Fortune", + "title": "Stacy", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Alisha", + "title": "Baby Talk", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kiss", + "title": "Tears Are Falling", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Loverboy", + "title": "Lovin Every Minute Of It", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ray Parker Jr.", + "title": "Girls Are More Fun", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 38, + "missing_count": 29, + "needs_manual_review": 38 + } + }, + { + "playlist_title": "1984 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Why Not Me", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "6b549b5b-0dd6-12f8-a166-76b508324dc3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Not Me - The Judds.mp4", + "title": "Why Not Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Strait", + "playlist_title": "Does Fort Worth Ever Cross Your Mind", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "f66875ad-ae08-50a2-b8a4-160a542fe2e6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Does Fort Worth Ever Cross Your Mind - George Strait.mp4", + "title": "Does Fort Worth Ever Cross Your Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "How Blue", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "4ae4cc67-66bc-92fd-ac37-57137eec7803", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Blue - Reba McEntire.mp4", + "title": "How Blue" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "All My Rowdy Friends Are Coming Over Tonight", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "deaab90c-9941-816b-3e42-2516d10e604b", + "path": "z://MP4\\KaraokeOnVEVO\\Hank Williams Jr. - All My Rowdy Friends Are Coming Over Tonight.mp4", + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "John Conlee", + "playlist_title": "Years After You", + "found_song": { + "artist": "John Conlee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "955947bd-a1f4-fe1c-fbe6-d68c7eccb054", + "path": "z://MP4\\KaraokeOnVEVO\\John Conlee - Years After You.mp4", + "title": "Years After You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Watson", + "playlist_title": "Got No Reason Now For Goin' Home", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4ecb4f-eb1b-01f7-336b-a1e2b2c22cc9", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Got No Reason Now For Goin Home.mp4", + "title": "Got No Reason Now For Goin' Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Something In My Heart", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd27195-6594-6cd0-6d1b-4cbdd6bf88eb", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Something In My Heart.mp4", + "title": "Something In My Heart" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Conway Twitty", + "playlist_title": "Ain't She Something Else", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80a1a4b3-51a3-e6bd-24b2-305535950679", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Aint She Something Else.mp4", + "title": "Ain't She Something Else" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "George Jones", + "playlist_title": "She's My Rock", + "found_song": { + "artist": "George Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f06001b9-ecf2-c2e4-def1-04d150e806c7", + "path": "z://MP4\\KaraokeOnVEVO\\George Jones - Race Is On.mp4", + "title": "Race Is On" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Nitty Gritty Dirt Band", + "playlist_title": "I Love Only You", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "86f8ea4e-b71b-9f09-6bb3-2b9c43ee618c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Catfish John - Nitty Gritty Dirt Band.mp4", + "title": "Catfish John" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Waylon Jennings", + "playlist_title": "America", + "found_song": { + "artist": "Waylon Jennings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33acb1fd-a859-e251-9ca0-5b75aec15208", + "path": "z://MP4\\KaraokeOnVEVO\\Waylon Jennings - Amanda.mp4", + "title": "Amanda" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Anne Murray & Dave Loggins", + "playlist_title": "Nobody Loves Me Like You Do", + "found_song": { + "artist": "Anne Murray ft. Dave Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69b91963-ec09-6145-ed71-d294bc761a80", + "path": "z://MP4\\KaraokeOnVEVO\\Anne Murray & Dave Loggins - Nobody Loves Me Like You Do.mp4", + "title": "Nobody Loves Me Like You Do" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Merle Haggard", + "playlist_title": "A Place To Fall Apart", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "504d5e79-c99d-49db-02a8-a66427b95a02", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - Place To Fall Apart, A (Karaoke & Lyrics).mp4", + "title": "Place To Fall Apart, A" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "The Bellamy Brothers", + "playlist_title": "World's Greatest Lover", + "found_song": { + "artist": "The Bellamy Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad9e9bf5-3772-9072-09de-3a6587e28c9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Bellamy Brothers - Lovers Live Longer.mp4", + "title": "Lovers Live Longer" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "The Oak Ridge Boys", + "playlist_title": "Make My Life With You", + "found_song": { + "artist": "The Oak Ridge Boys", + "disabled": false, + "favorite": false, + "guid": "959d8a4b-fc41-66bb-aa58-c54a6e242d91", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Elvira - The Oak Ridge Boys.mp4", + "title": "Elvira" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "One Owner Heart", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "guid": "f1bf4dcf-30a4-4fc3-ad21-685f192cfca6", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - Devil In The Bottle (Karaoke).mp4", + "title": "Devil In The Bottle" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Sawyer Brown", + "playlist_title": "Leona", + "found_song": { + "artist": "Sawyer Brown", + "disabled": false, + "favorite": false, + "guid": "40778189-50ef-3372-d489-aea70729df2b", + "path": "z://CDG\\Various\\Sawyer Brown - Walk.mp3", + "title": "Walk" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ed Bruce", + "playlist_title": "You Turn Me On (Like A Radio)", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "88a77813-74fd-ef9a-2ac8-9d6870300445", + "path": "z://MP4\\Stingray Karaoke\\You Turn Me On I'm A Radio Joni Mitchell Karaoke with Lyrics.mp4", + "title": "You Turn Me On I'm A Radio" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Eddie Rabbitt", + "title": "The Best Year Of My Life", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mark Gray", + "title": "Diamond In The Dust", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Barbara Mandrell", + "title": "Crossword Puzzle", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Crystal Gayle", + "title": "Me Against The Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alabama", + "title": "(There's A) Fire In The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Keith Stegall", + "title": "Whatever Turns You On", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "B.J. Thomas", + "title": "The Girl Most Likely to", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 10, + "missing_count": 7, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "1984 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Madonna", + "playlist_title": "Like A Virgin", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82924b53-0656-f1bd-6d2b-1307d37b1a33", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Like A Virgin.mp4", + "title": "Like A Virgin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Duran Duran", + "playlist_title": "The Wild Boys", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "d1f36c85-476c-0801-8043-2ca41db04fad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wild Boys - Duran Duran.mp4", + "title": "The Wild Boys" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Honeydrippers", + "playlist_title": "Sea Of Love", + "found_song": { + "artist": "The Honeydrippers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50e2318f-4b67-19ff-4ad2-0561af9ab40c", + "path": "z://MP4\\KaraokeOnVEVO\\The Honeydrippers - Sea Of Love.mp4", + "title": "Sea Of Love" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "New Edition", + "playlist_title": "Cool It Now", + "found_song": { + "artist": "New Edition", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9dcd1472-3cbd-b3a3-42bd-a7d013fd7f1e", + "path": "z://CDG\\SBI\\SBI-03\\SB23442 - New Edition - Cool It Now.mp3", + "title": "Cool It Now" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Pat Benatar", + "playlist_title": "We Belong", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "0eb67fb4-8755-3f0f-a920-a06488014cd7", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - We Belong (Karaoke Version).mp4", + "title": "We Belong" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Chaka Khan", + "playlist_title": "I Feel For You", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "guid": "ffe9871c-be9a-a8f3-bcd3-45abee3dda83", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel For You - Chaka Khan.mp4", + "title": "I Feel For You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Paul McCartney", + "playlist_title": "No More Lonely Nights", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "73fd43a4-c100-bb3e-06b0-371e4c9d0591", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Lonely Nights - Paul McCartney.mp4", + "title": "No More Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Wagner", + "playlist_title": "All I Need", + "found_song": { + "artist": "Jack Wagner", + "disabled": false, + "favorite": false, + "guid": "9df9004e-9734-4b81-6b71-bab6400bf8bf", + "path": "z://MP4\\Let's Sing Karaoke\\Wagner, Jack - All I Need (Karaoke & Lyrics).mp4", + "title": "All I Need" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wham!", + "playlist_title": "Wake Me Up Before You Go-Go", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f190073d-007d-fc5c-9ab1-fa26472afd1e", + "path": "z://MP4\\Sing King Karaoke\\Wham - Wake Me Up Before You Go Go (2.mp4", + "title": "Wake Me Up Before You Go Go" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Bryan Adams", + "playlist_title": "Run To You", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "893cf134-64de-00fe-1430-17fd0cc26b1b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run To You - Bryan Adams.mp4", + "title": "Run To You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "All Through The Night", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "e3dcb50d-db37-1b61-0dfa-4c8fd7070c11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Through The Night - Cyndi Lauper.mp4", + "title": "All Through The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Born In The USA", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "ba0ac141-5074-6d79-4394-1c37b9e0f402", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Born In The USA - Bruce Springsteen.mp4", + "title": "Born In The USA" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chicago", + "playlist_title": "You're The Inspiration", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "d94f3e40-7ca5-0b43-df1b-42b41368e34a", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - You're The Inspiration (Karaoke).mp4", + "title": "You're The Inspiration" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Survivor", + "playlist_title": "I Can't Hold Back", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8d29fe9-ed97-27a7-919a-ac159c85add0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - I Cant Hold Back.mp4", + "title": "I Can't Hold Back" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jermaine Jackson", + "playlist_title": "Do What You Do", + "found_song": { + "artist": "Jermaine Jackson", + "disabled": false, + "favorite": false, + "guid": "9756e887-9d1d-f608-02cd-25ce4b46c6c4", + "path": "z://MP4\\KaraFun Karaoke\\Do What You Do - Jermaine Jackson Karaoke Version KaraFun.mp4", + "title": "Do What You Do" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lionel Richie", + "playlist_title": "Penny Lover", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "6f072691-39dd-3f0b-11c0-1d9ecf94e2d4", + "path": "z://CDG\\Various\\Lionel Richie - Penny Lover.mp3", + "title": "Penny Lover" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foreigner", + "playlist_title": "I Want To Know What Love Is", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "bf2b5cab-4445-1352-3688-5448fc48274f", + "path": "z://MP4\\Sing King Karaoke\\Foreigner - I Want To Know What Love Is (Karaoke Version).mp4", + "title": "I Want To Know What Love Is" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Sheena Easton", + "playlist_title": "Strut", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "14cd4990-3022-16fa-353b-0055f980dabb", + "path": "z://CDG\\Various\\Sheena Easton - Strut.mp3", + "title": "Strut" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tina Turner", + "playlist_title": "Better Be Good To Me", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5646a295-c515-d339-de6a-d0d4a3084e71", + "path": "z://MP4\\KaraokeOnVEVO\\Tina Turner - Better Be Good To Me.mp4", + "title": "Better Be Good To Me" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Billy Ocean", + "playlist_title": "Lover Boy", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec34902f-3d28-fea5-fd17-f5f506cd5946", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ocean - Lover Boy.mp4", + "title": "Lover Boy" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "U2", + "playlist_title": "(Pride) In The Name Of Love", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "f39db30c-bd34-38d6-617b-72cd1f0c2ab8", + "path": "z://CDG\\Various\\U2 - Pride In The Name Of Love.mp3", + "title": "Pride In The Name Of Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Perry", + "playlist_title": "Foolish Heart", + "found_song": { + "artist": "Steve Perry", + "disabled": false, + "favorite": false, + "guid": "2ffe5cec-42e1-3082-21b0-cbd00222e4fd", + "path": "z://MP4\\Let's Sing Karaoke\\Perry, Steve - Foolish Heart (Karaoke & Lyrics) (2).mp4", + "title": "Foolish Heart" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Midnight Star", + "playlist_title": "Operator", + "found_song": { + "artist": "Midnight Star", + "disabled": false, + "favorite": false, + "guid": "4107e753-68a9-2ee0-e393-c2fa3a062f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Midnight Star - Operator - SF068 - 10.mp3", + "title": "Operator" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Frankie Goes To Hollywood", + "playlist_title": "Two Tribes", + "found_song": { + "artist": "Frankie Goes To Hollywood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a1645fe-d66e-acb7-9116-6b1774df0f4e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Goes To Hollywood - Two Tribes.mp4", + "title": "Two Tribes" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "General Public", + "playlist_title": "Tenderness", + "found_song": { + "artist": "General Public", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72772726-b1b9-7217-25e9-267561a8f7de", + "path": "z://MP4\\KaraokeOnVEVO\\General Public - Tenderness.mp4", + "title": "Tenderness" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Glenn Frey", + "playlist_title": "The Heat Is On", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25a34bc0-89c9-9634-1ab1-ff4ae0a5ca68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 803\\Glenn Frey - The Heat Is On - SFMW 803 -15.mp3", + "title": "The Heat Is On" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Tonight", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7c6a67b4-37df-ec1d-93bf-f0ac98a034c1", + "path": "z://CDG\\Various\\David Bowie - Tonight.mp3", + "title": "Tonight" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Money Changes Everything", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02b63ce1-0256-de3f-6f36-bcc16b05e5cb", + "path": "z://MP4\\KaraokeOnVEVO\\Cyndi Lauper - Money Changes Everything.mp4", + "title": "Money Changes Everything" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "John Fogerty", + "playlist_title": "The Old Man Down The Road", + "found_song": { + "artist": "John Fogerty", + "disabled": false, + "favorite": false, + "guid": "1e91541f-36f7-9c68-b793-85ea0c5652ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Old Man Down The Road - John Fogerty.mp4", + "title": "The Old Man Down The Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Billy Ocean", + "playlist_title": "Caribbean Queen (No More Love On The Run)", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "guid": "136ebf1e-172c-0c1c-a522-9f0740bbf0d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caribbean Queen (No More Love On The Run) - Billy Ocean.mp4", + "title": "Caribbean Queen (No More Love On The Run)" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Just Called To Say I Love You", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "cd80213b-8611-c5ea-8582-a6ffdd76694f", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - I Just Called To Say I Love You (Karaoke Version).mp4", + "title": "I Just Called To Say I Love You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "George Benson", + "playlist_title": "20/20", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "c357fc23-a259-892a-2e6c-2db41a85bfd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 20 20 - George Benson.mp4", + "title": "20 20" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Alphaville", + "playlist_title": "Big In Japan", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "guid": "f5601635-c590-4f96-aef6-b89f0954ed1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF037\\Alphaville - Big In Japan - SF037 - 04.mp3", + "title": "Big In Japan" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Temptations", + "playlist_title": "Treat Her Like A Lady", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "8edad771-ef84-b372-0a3a-de188f639bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Treat Her Like a Lady - The Temptations.mp4", + "title": "Treat Her Like a Lady" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bronski Beat", + "playlist_title": "Small Town Boy", + "found_song": { + "artist": "Bronski Beat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc159e6-62c4-3a1f-849f-9a4b07485630", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 829\\Bronski Beat - Small Town Boy - SFMW 829 -05.mp3", + "title": "Small Town Boy" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "David Bowie", + "playlist_title": "Blue Jean", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "c21d8c5c-1fd8-9194-7600-9f7447b401b7", + "path": "z://MP4\\TheKARAOKEChannel\\Blue Jean in the Style of David Bowie with lyrics (no lead vocal).mp4", + "title": "Blue Jean" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Out Of Touch", + "found_song": { + "artist": "Hall And Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16116f70-28b4-8af1-585f-1bb20bb51383", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hall And Oates - Out Of Touch.mp4", + "title": "Out Of Touch" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Julian Lennon", + "playlist_title": "Valotte", + "found_song": { + "artist": "Julian Lennon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa527f38-faae-e19a-937f-352dcd04de76", + "path": "z://MP4\\ZoomKaraokeOfficial\\Julian Lennon - Saltwater.mp4", + "title": "Saltwater" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Bob Seger", + "playlist_title": "Understanding", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "ea9706e3-12d1-b5fd-cfd3-00bb6089e337", + "path": "z://CDG\\Various\\Bob Seger - Katmandu.mp3", + "title": "Katmandu" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "The Cars", + "playlist_title": "Hello Again", + "found_song": { + "artist": "Tyler, The Creator, ft. Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8788f603-6166-b17d-0906-7bb5bae119e2", + "path": "z://MP4\\Sing King Karaoke\\Tyler, The Creator, ft. Kali Uchis - See You Again.mp4", + "title": "See You Again" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Philip Bailey With Phil Collins", + "playlist_title": "Easy Lover", + "found_song": { + "artist": "Philip Bailey ft. Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "883e6313-187e-7bb4-b062-73d632439af1", + "path": "z://MP4\\Sing King Karaoke\\Philip Bailey With Phil Collins - Easy Lover.mp4", + "title": "Easy Lover" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ray Parker Jr.", + "playlist_title": "Jamie", + "found_song": { + "artist": "Ray Parker Jr.", + "disabled": false, + "favorite": false, + "guid": "50713d5f-1cd9-ec01-ce49-093cd5f7520f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jack And Jill - Ray Parker Jr..mp4", + "title": "Jack And Jill" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Huey Lewis & The News", + "playlist_title": "Walking On A Thin Line", + "found_song": { + "artist": "Huey Lewis And The News", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14dee5c3-7bcd-ca82-2057-2a4a3cb1f021", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 814\\Huey Lewis And The News - If This Is It - SFMW 814 -06.mp3", + "title": "If This Is It" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Don Henley", + "playlist_title": "The Boys Of Summer", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e3998085-037c-f55d-c728-269d825f090e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF123\\Don Henley - Boys Of Summer - SF123 - 16.mp3", + "title": "Boys Of Summer" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Dan Hartman", + "playlist_title": "We Are The Young", + "found_song": { + "artist": "Dan Hartman", + "disabled": false, + "favorite": false, + "guid": "c83cad2a-8d77-6bb4-6b8b-05476050864b", + "path": "z://MP4\\KaraFun Karaoke\\I Can Dream About You - Dan Hartman Karaoke Version KaraFun.mp4", + "title": "I Can Dream About You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Toto", + "playlist_title": "Stranger In Town", + "found_song": { + "artist": "Jam", + "disabled": false, + "favorite": false, + "guid": "34b1bb25-37e5-cf3a-4e5b-2f8d0fd5516c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD008 - The Jam\\Jam - Strange Town - SFG008 - 10.mp3", + "title": "Strange Town" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Prince And The Revolution", + "playlist_title": "I Would Die 4 U", + "found_song": { + "artist": "Prince & Revolution", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a02bc267-ffdf-b234-4584-06cccace50d5", + "path": "z://MP4\\KaraokeOnVEVO\\Prince And The Revolution - I Would Die 4 U.mp4", + "title": "I Would Die 4 U" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Rick Springfield", + "playlist_title": "Bruce", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aea6f2d4-14d9-6941-9d12-88e8eb6ddaed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Souls.mp4", + "title": "Souls" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Love Light In Flight", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "bc6ed8e9-76a8-17e0-0b67-7498c57a56ec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD032 - Barely Legal\\Stevie Wonder - Too High - SFG032 - 04.mp3", + "title": "Too High" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Wham! Featuring George Michael", + "playlist_title": "Careless Whisper", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "fa7cfb8d-3c09-9839-6607-8a1f4c5547b5", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Careless Whisper (Karaoke Version).mp4", + "title": "Careless Whisper" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Neutron Dance", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "67f39edb-4201-4d44-37d0-62687bddeecf", + "path": "z://MP4\\KaraFun Karaoke\\Automatic - The Pointer Sisters Karaoke Version KaraFun.mp4", + "title": "Automatic" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Giuffria", + "playlist_title": "Call To The Heart", + "found_song": { + "artist": "Rush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4324aa8-d9de-3f9a-8715-4f1d6e22cf30", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rush - Closer To The Heart.mp4", + "title": "Closer To The Heart" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Method Of Modern Love", + "found_song": { + "artist": "Hall & Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a6903ee-74cb-07b7-6a1f-0a29a1864e8b", + "path": "z://CDG\\Various\\Hall & Oates - Method Of Modern Love.mp3", + "title": "Method Of Modern Love" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Elton John", + "playlist_title": "In Neon", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "8f92431e-6a63-4023-8abf-eef90f99d924", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Levon - Elton John.mp4", + "title": "Levon" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Ashford & Simpson", + "playlist_title": "Solid", + "found_song": { + "artist": "Ashford & Simpson", + "disabled": false, + "favorite": false, + "guid": "3d0389bc-1c45-b510-c8ba-fbfa8677c0b4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Solid - Ashford & Simpson.mp4", + "title": "Solid" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Misled", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "60caacb5-3d22-4a21-1007-38db5daf17d4", + "path": "z://MP4\\KaraFun Karaoke\\Misled - Kool and the Gang Karaoke Version KaraFun.mp4", + "title": "Misled" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Time", + "playlist_title": "Jungle Love", + "found_song": { + "artist": "Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "e190506a-d0dd-90e8-3a29-0c32cc11bc77", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jungle Love - Steve Miller Band.mp4", + "title": "Jungle Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Prince And The Revolution", + "playlist_title": "Purple Rain", + "found_song": { + "artist": "Prince & Revolution", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f641d452-b172-e954-13fb-c729fbf42d2d", + "path": "z://MP4\\KaraokeOnVEVO\\Prince & Revolution - Purple Rain.mp4", + "title": "Purple Rain" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Laura Branigan", + "playlist_title": "Ti Amo", + "found_song": { + "artist": "Laura Branigan", + "disabled": false, + "favorite": false, + "guid": "258b3b09-3ef0-8c3c-95ad-9d2f2c89fe7a", + "path": "z://MP4\\Let's Sing Karaoke\\Branigan, Laura - Gloria (Karaoke & Lyrics).mp4", + "title": "Gloria" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Diana Ross", + "playlist_title": "Missing You", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "e48b2163-f4c7-136c-31b2-cad8595ac337", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - I'm Coming Out (Karaoke Version).mp4", + "title": "I'm Coming Out" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "REO Speedwagon", + "playlist_title": "I Do'wanna Know", + "found_song": { + "artist": "Mario Winans ft. Enya, Diddy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6bb36476-b5db-85d0-4a98-cc6b3c99af08", + "path": "z://MP4\\Sing King Karaoke\\Mario Winans ft. Enya, Diddy - I Dont Wanna Know.mp4", + "title": "I Don't Wanna Know" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Sheena Easton", + "playlist_title": "Sugar Walls", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "14cd4990-3022-16fa-353b-0055f980dabb", + "path": "z://CDG\\Various\\Sheena Easton - Strut.mp3", + "title": "Strut" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "Don't Stop", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61bf6b5-3044-e5ac-50e0-034da1bc9ee0", + "path": "z://MP4\\KaraokeOnVEVO\\Jeffrey Osborne - On The Wings Of Love.mp4", + "title": "On The Wings Of Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Band-Aid", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band-Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f33d73bf-e949-f418-a1f6-4472956bc908", + "path": "z://MP4\\Sing King Karaoke\\Band-Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Dennis DeYoung", + "playlist_title": "Desert Moon", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8075e725-27a7-ec42-59d1-124d0f38bfd6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Young - Harvest Moon.mp4", + "title": "Harvest Moon" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Teena Marie", + "playlist_title": "Lover Girl", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "caa815e7-f62f-54e3-0c95-9a9e01ac5372", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lovergirl - Teena Marie.mp4", + "title": "Lovergirl" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "John Hunter", + "playlist_title": "Tragedy", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "1b2ae849-234d-17e6-da11-d9a1b9f9a807", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Today (Karaoke).mp4", + "title": "Today" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Shalamar", + "playlist_title": "Amnesia", + "found_song": { + "artist": "Chumbawamba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75912b99-d1b4-b653-ab90-6c36383e3d69", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF117\\Chumbawamba - Amnesia - SF117 - 13.mp3", + "title": "Amnesia" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "John Parr", + "playlist_title": "Naughty Naughty", + "found_song": { + "artist": "Danger Danger", + "disabled": false, + "favorite": false, + "guid": "593649ba-2c3c-ed9a-3352-bf53d8ca4cab", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Danger Danger - Naughty Naughty.mp4", + "title": "Naughty Naughty" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Billy Squier", + "playlist_title": "Eye On You", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fd1a192-e016-bc8f-bad3-4ffe3a9b4444", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - Everybody Wants You.mp4", + "title": "Everybody Wants You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "New Edition", + "playlist_title": "Mr. Telephone Man", + "found_song": { + "artist": "Meri Wilson", + "disabled": false, + "favorite": false, + "guid": "b6f23a31-6a81-197c-5d62-078185e01b95", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF095\\Meri Wilson - Telephone Man - SF095 - 09.mp3", + "title": "Telephone Man" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Rod Stewart", + "playlist_title": "All Right Now", + "found_song": { + "artist": "Bryan Adams & Sting & Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37765841-ded8-8805-8099-f50692593c36", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams & Sting & Rod Stewart - All For Love.mp4", + "title": "All For Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "John Waite", + "playlist_title": "Tears", + "found_song": { + "artist": "Daryl Hall & John Oates", + "disabled": false, + "favorite": false, + "guid": "44141654-e656-b427-e066-69940024c902", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall & John Oates - Maneater (Karaoke Version).mp4", + "title": "Maneater" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Kenny Rogers", + "playlist_title": "The Greatest Gift Of All", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "2ea49460-fbff-bf1c-605e-96a8f1a6f4c0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Greatest Love Of All - George Benson.mp4", + "title": "The Greatest Love Of All" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Kinks", + "playlist_title": "Do It Again", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "bf186305-ea78-86b1-c1a8-053726d78c78", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do It Again - Steely Dan.mp4", + "title": "Do It Again" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Autograph", + "playlist_title": "Turn Up The Radio", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fcf4de57-b0c3-8c65-d89e-9c3885600855", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF318\\Madonna - Turn Up The Radio - SF318 - 06.mp3", + "title": "Turn Up The Radio" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Bananarama", + "playlist_title": "The Wild Life", + "found_song": { + "artist": "Bananarama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c0712f6-78ce-a0f2-e873-ea7cb5f7d71d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bananarama - Help!.mp4", + "title": "Help!" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Dazz Band", + "playlist_title": "Let It All Blow", + "found_song": { + "artist": "Dazz Band", + "disabled": false, + "favorite": false, + "guid": "d890e942-f3ff-f0a7-8123-87abb5965c78", + "path": "z://MP4\\KtvEntertainment\\Dazz Band - Let It Whip Karaoke Lyrics.mp4", + "title": "Let It Whip" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Culture Club", + "playlist_title": "The War Song", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "3b5f86cf-f3d6-65c3-1259-341b308eb1d8", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Karma Chameleon (Karaoke Version).mp4", + "title": "Karma Chameleon" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Peter Wolf", + "playlist_title": "I Need You Tonight", + "found_song": { + "artist": "Professor Green ft. Ed Drewett", + "disabled": false, + "favorite": false, + "guid": "e44ad5c7-0046-7ceb-b591-48cc8df15f6e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF292\\Professor Green & Ed Drewett - I Need You Tonight - SF292 - 07.mp3", + "title": "I Need You Tonight" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Melissa Manchester", + "playlist_title": "Thief Of Hearts", + "found_song": { + "artist": "Melissa Manchester", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7431297-4468-6066-e6dc-f8f90255e950", + "path": "z://MP4\\Sing King Karaoke\\Melissa Manchester - Through the Eyes of Love.mp4", + "title": "Through the Eyes of Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 24, + "artist": "Rebbie Jackson", + "title": "Centipede", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sheila E", + "title": "The Belle Of St. Mark", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "John Cafferty & The Beaver Brown Band", + "title": "Tender Years", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Corey Hart", + "title": "It Ain't Enough", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Culture Club", + "title": "Mistake No. 3", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Barbra Streisand With Kim Carnes", + "title": "Make No Mistake, He's Mine", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Roger Hodgson", + "title": "Had A Dream (Sleeping With The Enemy)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Billy Idol", + "title": "Catch My Fall", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rick Dees", + "title": "Eat My Shorts", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Shaw", + "title": "Lonely School", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Rick Springfield With Randy Crawford", + "title": "Taxi Dancing", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "title": "What About Me?", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Sammy Hagar", + "title": "I Can't Drive 55", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Scandal Featuring Patty Smyth", + "title": "Hands Tied", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dennis DeYoung", + "title": "Don't Wait For Heroes", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 45, + "missing_count": 15, + "needs_manual_review": 45 + } + }, + { + "playlist_title": "1983 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "You Look So Good In Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "c4acd2f2-90c8-bc73-709f-40173edbf3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Look So Good In Love - George Strait.mp4", + "title": "You Look So Good In Love" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "You Made A Wanted Man Of Me", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "760331bc-e0ee-1111-3312-3fb97acb2292", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - You Made A Wanted Man Of Me.mp4", + "title": "You Made A Wanted Man Of Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Show Her", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48b23b7a-80a9-1cf1-d77e-b23f4de9e76c", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - Show Her.mp4", + "title": "Show Her" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Merle Haggard", + "playlist_title": "That's The Way Love Goes", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "3a5f9151-0205-8864-edb8-b6b1aca0aa59", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - That's The Way Love Goes (Karaoke & Lyrics).mp4", + "title": "That's The Way Love Goes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "Slow Burn", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "guid": "329406da-c6bc-756d-bee4-47f9ae64c4d6", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - You Still Do (Karaoke).mp4", + "title": "You Still Do" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Nitty Gritty Dirt Band", + "playlist_title": "Dance Little Jean", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "2bf35ddd-1c1e-1910-d20c-f303c2d811a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cadillac Ranch - Nitty Gritty Dirt Band.mp4", + "title": "Cadillac Ranch" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Crystal Gayle", + "playlist_title": "The Sound Of Goodbye", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "a895fb9d-faac-156e-ace0-d38279178f1d", + "path": "z://MP4\\KaraokeOnVEVO\\Crystal Gayle - It's Like We Never Said Goodbye (Karaoke).mp4", + "title": "It's Like We Never Said Goodbye" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Queen Of My Heart", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "4e8d796b-f560-65bb-23d0-66a0324a2acb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dinosaur - Hank Williams, Jr..mp4", + "title": "Dinosaur" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Charly McClain", + "playlist_title": "Sentimental Ol' You", + "found_song": { + "artist": "Charly McClain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af64da96-a7b5-dd67-bb67-b54101479725", + "path": "z://MP4\\KaraokeOnVEVO\\Charly McClain - Whos Cheatin Who.mp4", + "title": "Who's Cheatin' Who" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Ed Bruce", + "playlist_title": "After All", + "found_song": { + "artist": "Cher ft. Peter Cetera", + "disabled": false, + "favorite": false, + "guid": "addb37ec-6c61-cb3f-121c-1de4f3014058", + "path": "z://CDG\\Various\\Cher & Peter Cetera - After All.mp3", + "title": "After All" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Mel McDaniel", + "playlist_title": "I Call It Love", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e2847b79-f075-1ce5-f2a8-28ba735614ab", + "path": "z://CDG\\Various\\Lionel Richie - I Call It Love.mp3", + "title": "I Call It Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Larry Gatlin & The Gatlin Brothers", + "title": "Houston (Means I'm One Day Closer To You)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "John Anderson", + "title": "Black Sheep", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Charley Pride", + "title": "Ev'ry Heart Should Have One", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Oak Ridge Boys", + "title": "Ozark Mountain Jubilee", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "John Conlee", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Vern Gosdin", + "title": "I Wonder Where We'd Be Tonight", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Willie Nelson With Waylon Jennings", + "title": "Take It To The Limit", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Waylon Jennings With Hank Williams, Jr.", + "title": "The Conversation", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Joe Stampley", + "title": "Double Shot (Of My Baby's Love)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Gail Davies", + "title": "You're A Hard Dog (To Keep Under The Porch)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mark Gray", + "title": "Wounded Hearts", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Shelly West", + "title": "Another Motel Memory", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Louise Mandrell", + "title": "Runaway Heart", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kathy Mattea", + "title": "Street Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 4, + "fuzzy_match_count": 7, + "missing_count": 14, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1983 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Union Of The Snake", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "a78e3d90-aef2-21a0-de4d-3b96dc938f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - Union Of The Snake - SFG004 - 05.mp3", + "title": "Union Of The Snake" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Yes", + "playlist_title": "Owner Of A Lonely Heart", + "found_song": { + "artist": "Yes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "827c4888-be91-7b5f-8738-dde120311a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\Yes - Owner Of A Lonely Heart.mp4", + "title": "Owner Of A Lonely Heart" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lionel Richie", + "playlist_title": "All Night Long (All Night)", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c59709f-6a27-9526-1881-89175c309d53", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - All Night Long (All Night.mp4", + "title": "All Night Long (All Night)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Billy Joel", + "playlist_title": "Uptown Girl", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99e893ce-527a-2962-e735-ea73561cd2cc", + "path": "z://MP4\\Sing King Karaoke\\Billy Joel - Uptown Girl.mp4", + "title": "Uptown Girl" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Matthew Wilder", + "playlist_title": "Break My Stride", + "found_song": { + "artist": "Matthew Wilder", + "disabled": false, + "favorite": false, + "guid": "1ed1dcdf-fd83-2b45-be09-6ec26dda28b3", + "path": "z://MP4\\Sing King Karaoke\\Matthew Wilder - Break My Stride (Karaoke Version).mp4", + "title": "Break My Stride" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elton John", + "playlist_title": "I Guess That's Why They Call It The Blues", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "576176e2-d104-3d21-b39a-fdd740fd449c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Guess That s Why They Call It The Blues - Elton John.mp4", + "title": "I Guess That s Why They Call It The Blues" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Romantics", + "playlist_title": "Talking In Your Sleep", + "found_song": { + "artist": "The Romantics", + "disabled": false, + "favorite": false, + "guid": "0532d2e4-80e2-c8cb-4a62-9e1ed94dce09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talking In Your Sleep - The Romantics.mp4", + "title": "Talking In Your Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Culture Club", + "playlist_title": "Church Of The Poison Mind", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4f6ae87-86ed-bbd0-ad44-52e03e38813e", + "path": "z://MP4\\KaraokeOnVEVO\\Culture Club - Church Of The Poison Mind.mp4", + "title": "Church Of The Poison Mind" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Police", + "playlist_title": "Synchronicity II", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "072b6bd8-442d-38df-4fa0-35a64c8a4bf2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Synchronicity II - The Police.mp4", + "title": "Synchronicity II" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Culture Club", + "playlist_title": "Karma Chameleon", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "3b5f86cf-f3d6-65c3-1259-341b308eb1d8", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Karma Chameleon (Karaoke Version).mp4", + "title": "Karma Chameleon" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Big Country", + "playlist_title": "In A Big Country", + "found_song": { + "artist": "Big Country", + "disabled": false, + "favorite": false, + "guid": "747b5418-d3f9-1609-77d5-6c6c3c933c44", + "path": "z://MP4\\Let's Sing Karaoke\\Big Country - In A Big Country (Karaoke & Lyrics).mp4", + "title": "In A Big Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lionel Richie", + "playlist_title": "Running With The Night", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f662e4-5410-6426-772a-94326ef773a2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 869\\Lionel Richie - Running With The Night - SFMW 869 -11.mp3", + "title": "Running With The Night" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Barry Manilow", + "playlist_title": "Read 'Em And Weep", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "5d835c02-69d9-663c-ccb9-49b700d2d50e", + "path": "z://MP4\\Let's Sing Karaoke\\Manilow, Barry - Read 'em And Weep (Karaoke & Lyrics).mp4", + "title": "Read 'em And Weep" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "John Cougar Mellencamp", + "playlist_title": "Crumblin' Down", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9554f85-df2c-9620-1721-29b1d5a4d4dc", + "path": "z://MP4\\KaraokeOnVEVO\\John Cougar Mellencamp - Crumblin' Down.mp4", + "title": "Crumblin' Down" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Genesis", + "playlist_title": "That's All", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "guid": "3128ece3-39c3-405a-82d9-280fb3a2cfcb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke That s All - Genesis.mp4", + "title": "That s All" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "John Mellencamp", + "playlist_title": "Pink Houses", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "640e1694-54ac-e4a1-7079-38e32ddc9b5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pink Houses - John Mellencamp.mp4", + "title": "Pink Houses" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Madonna", + "playlist_title": "Holiday", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67c34432-f5d0-3085-6d4b-e4375c43ac56", + "path": "z://MP4\\KaraokeOnVEVO\\Madonna - Holiday.mp4", + "title": "Holiday" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Jump 'n The Saddle", + "playlist_title": "The Curly Shuffle", + "found_song": { + "artist": "Jump 'n The Saddle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72fcc8ab-3e2a-cb57-5099-e4e16a4005c8", + "path": "z://MP4\\KaraokeOnVEVO\\Jump n The Saddle - The Curly Shuffle.mp4", + "title": "The Curly Shuffle" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "Stay With Me Tonight", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "guid": "3058e9a9-1a92-c83e-72d3-6bb1889f9377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stay With Me Tonight - Jeffrey Osborne.mp4", + "title": "Stay With Me Tonight" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Christopher Cross", + "playlist_title": "Think Of Laura", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31716e96-c609-b341-ba11-cfb191555e4e", + "path": "z://MP4\\KaraokeOnVEVO\\Christopher Cross - Think Of Laura.mp4", + "title": "Think Of Laura" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Deborah Allen", + "playlist_title": "Baby I Lied", + "found_song": { + "artist": "Deborah Allen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "761b09d6-6bf0-70c4-4cc6-1927e9196a75", + "path": "z://CDG\\Various\\Deborah Allen - Baby I Lied.mp3", + "title": "Baby I Lied" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Rick Springfield", + "playlist_title": "Souls", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aea6f2d4-14d9-6941-9d12-88e8eb6ddaed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Souls.mp4", + "title": "Souls" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Shannon", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Shannon", + "disabled": false, + "favorite": false, + "guid": "00a29a83-4e81-e2cf-18a4-9fddcd4686c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Shannon - Let The Music Play - SF068 - 03.mp3", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Billy Joel", + "playlist_title": "An Innocent Man", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0a117e9-30bd-8a5d-8174-55c385692f3f", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - An Innocent Man.mp4", + "title": "An Innocent Man" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Real Life", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "Real Life", + "disabled": false, + "favorite": false, + "guid": "25a42944-9bff-3a17-4ecd-4261a77471dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Me an Angel - Real Life.mp4", + "title": "Send Me an Angel" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Stray Cats", + "playlist_title": "I Won't Stand In Your Way", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6639c134-d7e9-b3be-c218-59ef470e752b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Stray Cats - I Wont Stand In Your Way.mp4", + "title": "I Won't Stand In Your Way" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Dolly Parton", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "0920ff49-12b3-a9d0-e996-c1ea4eb8ef63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - Dolly Parton.mp4", + "title": "Save The Last Dance For Me" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Nena", + "playlist_title": "99 Luftballons", + "found_song": { + "artist": "Nena", + "disabled": false, + "favorite": false, + "guid": "fc881f99-ac9e-d864-0e56-d6ecc0fc2cf8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 99 Luftballons - Nena.mp4", + "title": "99 Luftballons" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Sheena Easton", + "playlist_title": "Almost Over You", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "e5925a6d-aaae-dac2-b223-0504c4b49794", + "path": "z://MP4\\Sing King Karaoke\\Sheena Easton - Almost Over You (Karaoke Version).mp4", + "title": "Almost Over You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Kiss", + "playlist_title": "Lick It Up", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7ca643ed-37e5-7d2e-b69e-2b6378d5076b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lick It Up - Kiss.mp4", + "title": "Lick It Up" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "KC", + "playlist_title": "Give It Up", + "found_song": { + "artist": "KC & The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "b4df5498-504a-d9ed-0c17-9e1309fac8f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Up - KC & The Sunshine Band.mp4", + "title": "Give It Up" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse Of The Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Girls Just Want To Have Fun", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "fbdad3e5-f94f-43d8-d3e0-d36580a98832", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - Girls Just Want To Have Fun (Karaoke Version).mp4", + "title": "Girls Just Want To Have Fun" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Air Supply", + "playlist_title": "Making Love Out Of Nothing At All", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf25b9e1-d366-5b61-aa82-cbb35bcf52a4", + "path": "z://MP4\\Sing King Karaoke\\Air Supply - Making Love Out Of Nothing At All.mp4", + "title": "Making Love Out Of Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Journey", + "playlist_title": "Send Her My Love", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "cd455c8d-fb4e-62ab-7a69-8e29b0ac1f4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Her My Love - Journey.mp4", + "title": "Send Her My Love" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "The Fixx", + "playlist_title": "One Thing Leads To Another", + "found_song": { + "artist": "The Fixx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ab6a745-0fea-b36d-f221-b365323d7a71", + "path": "z://MP4\\VocalStarKaraoke\\The Fixx - One Thing Leads To Another.mp4", + "title": "One Thing Leads To Another" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Paul McCartney And Michael Jackson", + "playlist_title": "Say Say Say", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "87ba2695-3744-6a2c-e3fb-4a9ad4fad3ac", + "path": "z://CDG\\Various\\Paul McCartney - Say Say Say.mp3", + "title": "Say Say Say" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Say It Isn't So", + "found_song": { + "artist": "Daryl Hall & John Oates", + "disabled": false, + "favorite": false, + "guid": "7fc9b38e-989b-4d03-9aab-f3df22a5ff15", + "path": "z://MP4\\KaraokeOnVEVO\\Daryl Hall & John Oates - Say It Isn't So (Karaoke).mp4", + "title": "Say It Isn't So" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Undercover Of The Night", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "bfca0e3f-44c7-7728-060e-a3ca4d26eee8", + "path": "z://MP4\\Stingray Karaoke\\Under My Thumb in the Style of The Rolling Stones karaoke video with lyrics (no lead vocal).mp4", + "title": "Under My Thumb" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Quiet Riot", + "playlist_title": "Cum On Feel The Noize", + "found_song": { + "artist": "Slade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b782e6-8a83-ea06-5cf9-5d94674e0b63", + "path": "z://MP4\\ZoomKaraokeOfficial\\Slade - Cum On Feel The Noize.mp4", + "title": "Cum On Feel The Noize" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Kenny Rogers with Dolly Parton", + "playlist_title": "Islands In The Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Irene Cara", + "playlist_title": "Why Me?", + "found_song": { + "artist": "Irene Cara", + "disabled": false, + "favorite": false, + "guid": "afa96811-8ec0-7345-d82c-509f11665a35", + "path": "z://MP4\\Sing King Karaoke\\Irene Cara - Fame (Karaoke Version).mp4", + "title": "Fame" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Joanna", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "352e6aa8-bfcb-ecdc-bf5d-540ce4fef1ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Joanna - Kool And The Gang.mp4", + "title": "Joanna" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Thirty Eight Special", + "playlist_title": "If I'd Been The One", + "found_song": { + "artist": "38 Special", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e985e4b-f372-1dda-96cd-0450860e5ec1", + "path": "z://CDG\\Various\\38 Special - If I'd Been The One.mp3", + "title": "If I'd Been The One" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Ray Parker Jr.", + "playlist_title": "I Still Can't Get Over Loving You", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc8040bb-5822-c6e5-9948-03dec3e7c56e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ray Charles - I Cant Stop Loving You.mp4", + "title": "I Can't Stop Loving You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Rufus & Chaka Khan", + "playlist_title": "Ain't Nobody", + "found_song": { + "artist": "Rufus ft. Chaka Khan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b3106a4-436e-aa6b-66b2-2b84c7aaf68b", + "path": "z://MP4\\Stingray Karaoke\\Rufus & Chaka Khan - Aint Nobody.mp4", + "title": "Ain't Nobody" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Spandau Ballet", + "playlist_title": "Gold", + "found_song": { + "artist": "Spandau Ballet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26d63853-3390-33b4-d814-c06e184ee1e9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Spandau Ballet - Gold.mp4", + "title": "Gold" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Huey Lewis & The News", + "playlist_title": "Heart And Soul", + "found_song": { + "artist": "Huey Lewis & The News", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e5a9527-d1bb-51e4-3602-46075a412e00", + "path": "z://MP4\\KaraokeOnVEVO\\Huey Lewis & The News - Heart And Soul.mp4", + "title": "Heart And Soul" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Naked Eyes", + "playlist_title": "When The Lights Go Out", + "found_song": { + "artist": "Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b70362e8-b7e9-264b-ce42-cc81c1e0becb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Five - When The Lights Go Out.mp4", + "title": "When The Lights Go Out" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Pretenders", + "playlist_title": "Middle Of The Road", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "cf8f8b5e-b0da-920a-f24b-ca744553b956", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talk Of The Town - The Pretenders.mp4", + "title": "Talk Of The Town" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The Motels", + "playlist_title": "Remember The Night", + "found_song": { + "artist": "The Platters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e199dae5-af9a-e932-deb4-44f42fe73b3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Platters - Remember When.mp4", + "title": "Remember When" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Paul McCartney", + "playlist_title": "So Bad", + "found_song": { + "artist": "Kanye West & Theophilus London & Allan Kingdom & Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "445cd8f1-8ab5-713d-3762-d5bc7b4e1156", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF350\\Kanye West & Theophilus London & Allan Kingdom & Paul McCartney - All Day - SF350 - 13.mp3", + "title": "All Day" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "James Ingram With Michael McDonald", + "playlist_title": "Yah Mo B There", + "found_song": { + "artist": "James Ingram & Michael Mcdonald", + "disabled": false, + "favorite": false, + "guid": "4ac85164-8d65-4590-92ab-198653cc981a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\James Ingram & Michael Mcdonald - Ya Mo B There - SF068 - 01.mp3", + "title": "Ya Mo B There" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Take Me Back", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7d74e65-7ff6-1273-b1a4-485bb3c0a3f4", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - It's A Heartache.mp4", + "title": "It's A Heartache" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "The Alan Parsons Project", + "playlist_title": "You Don't Believe", + "found_song": { + "artist": "The Alan Parsons Project", + "disabled": false, + "favorite": false, + "guid": "d0d614f7-270e-0757-4bb6-b2d5739228d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Old And Wise - The Alan Parsons Project.mp4", + "title": "Old And Wise" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Eddie Money", + "playlist_title": "Big Crash", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "890d0b06-d405-7a7e-59bc-eebcaa0418ce", + "path": "z://MP4\\VocalStarKaraoke\\Eddie Money - Shakin.mp4", + "title": "Shakin" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way He Makes Me Feel", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "a10d9af8-0699-947a-b707-e377f744aa28", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way He Makes Me Feel - Barbra Streisand.mp4", + "title": "The Way He Makes Me Feel" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Irene Cara", + "playlist_title": "The Dream", + "found_song": { + "artist": "Irene Cara", + "disabled": false, + "favorite": false, + "guid": "afa96811-8ec0-7345-d82c-509f11665a35", + "path": "z://MP4\\Sing King Karaoke\\Irene Cara - Fame (Karaoke Version).mp4", + "title": "Fame" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Talking Heads", + "playlist_title": "This Must Be The Place", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "guid": "50660a60-f2c6-5a7e-63dd-3dcf062fb327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take Me To The River - Talking Heads.mp4", + "title": "Take Me To The River" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Peabo Bryson/Roberta Flack", + "playlist_title": "Tonight, I Celebrate My Love", + "found_song": { + "artist": "Peabo Bryson And Roberta Flack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0c1ad71-569a-759e-5430-f3775b4d3ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Peabo Bryson And Roberta Flac - Tonight I Celebrate My Love.mp4", + "title": "Tonight I Celebrate My Love" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "The Doors", + "playlist_title": "Gloria", + "found_song": { + "artist": "Them", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "596fba47-533e-351d-7a29-57a67dda4954", + "path": "z://MP4\\ZoomKaraokeOfficial\\Them - Gloria.mp4", + "title": "Gloria" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Herb Alpert", + "playlist_title": "Red Hot", + "found_song": { + "artist": "The Dualers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8de08333-c3dd-3205-2113-6cf4a6be7857", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dualers - Red Light.mp4", + "title": "Red Light" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Michael Stanley Band", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Diana Ross", + "playlist_title": "Let's Go Up", + "found_song": { + "artist": "Lionel Richie & Diana Ross", + "disabled": false, + "favorite": false, + "guid": "9afa9f0b-87fe-5978-a455-5fb98c248b47", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie & Diana Ross - Endless Love (Karaoke Version).mp4", + "title": "Endless Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Crystal Gayle", + "playlist_title": "The Sound Of Goodbye", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "a895fb9d-faac-156e-ace0-d38279178f1d", + "path": "z://MP4\\KaraokeOnVEVO\\Crystal Gayle - It's Like We Never Said Goodbye (Karaoke).mp4", + "title": "It's Like We Never Said Goodbye" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Bob Dylan", + "playlist_title": "Sweetheart Like You", + "found_song": { + "artist": "Bob Dylan", + "disabled": false, + "favorite": false, + "guid": "55666ebd-10aa-35c3-0a82-ea7f57c58a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Want You - Bob Dylan.mp4", + "title": "I Want You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Rodney Dangerfield", + "playlist_title": "Rappin' Rodney", + "found_song": { + "artist": "Rodney Dangerfield", + "disabled": false, + "favorite": false, + "guid": "ec00ac3e-cb1a-ed08-474f-f67aeb21ab77", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rappin Rodney (I Can t Take it Anymore) - Rodney Dangerfield.mp4", + "title": "Rappin Rodney (I Can t Take it Anymore)" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Atlantic Starr", + "playlist_title": "Touch A Four Leaf Clover", + "found_song": { + "artist": "Atlantic Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83b352fc-9837-58b2-56f5-daf8ef3c8b77", + "path": "z://MP4\\ZoomKaraokeOfficial\\Atlantic Starr - Secret Lovers.mp4", + "title": "Secret Lovers" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I Need You", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "The Headpins", + "playlist_title": "Just One More Time", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "438667b0-2a9e-df32-6ed3-ff07da55cf43", + "path": "z://MP4\\KtvEntertainment\\Ed Sheeran - Baby One More Time Karaoke.mp4", + "title": "Baby One More Time" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Magnetic", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec48fed6-252d-be5e-c7b5-69cd90954808", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - Fantasy.mp4", + "title": "Fantasy" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Kim Carnes", + "playlist_title": "Invisible Hands", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "380e23f1-ee75-f60d-4f1c-6299b0c0fdf4", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Invisible Man.mp4", + "title": "Invisible Man" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Paul Simon", + "playlist_title": "Allergies", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c5f28b1-dd52-d4fe-bab8-c01d2a72f37d", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Simon - Kodachrome.mp4", + "title": "Kodachrome" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Industry", + "playlist_title": "State Of The Union", + "found_song": { + "artist": "Industry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f50f0481-b332-b7af-adca-4f909e3fb96c", + "path": "z://CDG\\SBI\\SBI-04\\SB17815 - Industry - State Of The Nation.mp3", + "title": "State Of The Nation" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Prince", + "playlist_title": "Delirious", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "28dd081b-fe72-44b5-2de4-dddd29f1c3f6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF007\\Prince - Kiss - SF007 - 16.mp3", + "title": "Kiss" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Peter Schilling", + "title": "Major Tom (Coming Home)", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Debarge", + "title": "Time Will Reveal", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Fixx", + "title": "The Sign Of Fire", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Robert Plant", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Stevie Nicks", + "title": "Nightbird", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Rick James And Smokey Robinson", + "title": "Ebony Eyes", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "title": "What's New", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Re-flex", + "title": "The Politics Of Dancing", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Night Ranger", + "title": "(You Can Still) Rock In America", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Midnight Star", + "title": "Wet My Whistle", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Sheena Easton", + "title": "Telefone (long Distance Love Affair)", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Motels", + "title": "Suddenly Last Summer", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Peabo Bryson & Roberta Flack", + "title": "You're Looking Like Love To Me", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rainbow", + "title": "Street Of Dreams", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jackson Browne", + "title": "Tender Is The Night", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Asia", + "title": "The Smile Has Left Your Eyes", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Prince And The Revolution", + "title": "Let's Pretend We're Married/Irresistible Bitch", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Twilight 22", + "title": "Electric Kingdom", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Jennifer Holliday", + "title": "I Am Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Streets", + "title": "If Love Should Go", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Dionne Warwick & Luther Vandross", + "title": "How Many Times Can We Say Goodbye", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 39, + "missing_count": 21, + "needs_manual_review": 39 + } + }, + { + "playlist_title": "1982 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 4, + "playlist_artist": "Reba McEntire", + "playlist_title": "Can't Even Get The Blues", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "a99b001d-c196-0701-86e8-450672c9507e", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Can't Even Get The Blues (Karaoke).mp4", + "title": "Can't Even Get The Blues" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Merle Haggard", + "playlist_title": "Going Where The Lonely Go", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb372ba0-43f7-eff3-43ea-1f6b271824e1", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Going Where The Lonely Go.mp4", + "title": "Going Where The Lonely Go" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "guid": "6f831da9-1d07-ac40-8875-16981af0b351", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talk To Me - Mickey Gilley.mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dolly Parton", + "playlist_title": "Hard Candy Christmas", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "dc1716de-cb3e-a91c-24eb-5141114ee302", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Candy Christmas - Dolly Parton.mp4", + "title": "Hard Candy Christmas" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Oak Ridge Boys", + "playlist_title": "Thank God For Kids", + "found_song": { + "artist": "The Oak Ridge Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95ad2919-4446-7116-04c2-e99c2d6864ae", + "path": "z://MP4\\KaraokeOnVEVO\\The Oak Ridge Boys - Thank God For Kids.mp4", + "title": "Thank God For Kids" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Vern Gosdin", + "playlist_title": "Today My World Slipped Away", + "found_song": { + "artist": "Vern Gosdin", + "disabled": false, + "favorite": false, + "guid": "97aab77f-4956-40a4-4a8b-fdda26e4c9c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Today My World Slipped Away - Vern Gosdin.mp4", + "title": "Today My World Slipped Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "John Anderson", + "playlist_title": "Wild And Blue", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f9b0b01-a274-1d7f-3e57-a8dd5e9d2a29", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Mayer - Wild Blue.mp4", + "title": "Wild Blue" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Kenny Rogers", + "playlist_title": "A Love Song", + "found_song": { + "artist": "Kenny Rogers & Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "b8934e43-1a34-49bd-f010-e7f0483d3b89", + "path": "z://CDG\\Various\\Kenny Rogers & Dolly Parton - Love Is Strange.mp3", + "title": "Love Is Strange" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "George Strait", + "playlist_title": "Marina Del Rey", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "aa7d7553-5b9b-940c-b601-412452032173", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Meanwhile (Karaoke).mp4", + "title": "Meanwhile" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Rosanne Cash", + "playlist_title": "I Wonder", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3045eca7-15d3-e195-201d-5ac4e5d14f52", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Cash - One.mp4", + "title": "One" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Waylon & Willie", + "playlist_title": "(Sittin' On) The Dock Of The Bay", + "found_song": { + "artist": "Otis Redding", + "disabled": false, + "favorite": false, + "guid": "6b999bf6-4de5-25ca-294e-dde82bb4d819", + "path": "z://MP4\\Stingray Karaoke\\(Sittin' On) The Dock Of The Bay in the Style of Otis Redding karaoke with lyrics (no lead vocal).mp4", + "title": "(Sittin' On) The Dock Of The Bay" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Charly McClain", + "playlist_title": "With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "The Statler Brothers", + "playlist_title": "A Child Of The Fifties", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dbfacd50-9341-f293-dcd5-49db04f2cd55", + "path": "z://MP4\\KaraokeOnVEVO\\Statler Brothers - Too Much On My Heart.mp4", + "title": "Too Much On My Heart" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Crystal Gayle", + "playlist_title": "'til I Gain Control Again", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "d091c54f-be18-e78a-5031-2a336a069477", + "path": "z://MP4\\Let's Sing Karaoke\\Gayle, Crystal - Wrong Road Again (Karaoke & Lyrics).mp4", + "title": "Wrong Road Again" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jerry Reed", + "title": "The Bird", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "David Frizzell", + "title": "Lost My Baby Blues", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Emmylou Harris", + "title": "(lost His Love) On Our Last Date", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Johnny Lee And Friends", + "title": "Cherokee Fiddle", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "John Conlee", + "title": "I Don't Remember Loving You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Sylvia 1", + "title": "Like Nothing Ever Happened", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Earl Thomas Conley", + "title": "Somewhere Between Right And Wrong", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ronnie Milsap", + "title": "Inside/carolina Dreams", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moe Bandy", + "title": "Only If There Is Another You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gene Watson", + "title": "What She Don't Know Won't Hurt Her", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gail Davies", + "title": "Hold On", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 8, + "missing_count": 11, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "1982 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Maneater", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toni Basil", + "playlist_title": "Mickey", + "found_song": { + "artist": "Toni Basil", + "disabled": false, + "favorite": true, + "guid": "f452d437-1255-fc82-fd0b-02d647970420", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mickey - Toni Basil.mp4", + "title": "Mickey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Don Henley", + "playlist_title": "Dirty Laundry", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91340bee-9f2c-ac03-fe02-3ae29cab0442", + "path": "z://CDG\\Various\\Don Henley - Dirty Laundry.mp3", + "title": "Dirty Laundry" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Laura Branigan", + "playlist_title": "Gloria", + "found_song": { + "artist": "Laura Branigan", + "disabled": false, + "favorite": false, + "guid": "258b3b09-3ef0-8c3c-95ad-9d2f2c89fe7a", + "path": "z://MP4\\Let's Sing Karaoke\\Branigan, Laura - Gloria (Karaoke & Lyrics).mp4", + "title": "Gloria" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Joe Jackson", + "playlist_title": "Steppin' Out", + "found_song": { + "artist": "Joe Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a6b4bb4-6747-3805-9be7-94b51eb98e06", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Jackson - Steppin Out.mp4", + "title": "Steppin' Out" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Sexual Healing", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "d78b429a-6b77-256d-709e-68de5bd086ab", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - Sexual Healing (Karaoke Version).mp4", + "title": "Sexual Healing" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Men At Work", + "playlist_title": "Down Under", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "5ba85df6-af7f-f304-53c4-c0f39160a8a3", + "path": "z://MP4\\Sing King Karaoke\\Men At Work - Down Under (Karaoke Version).mp4", + "title": "Down Under" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stray Cats", + "playlist_title": "Rock This Town", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07b08819-32c5-ce35-1838-a4c7fc1ef54e", + "path": "z://MP4\\KaraokeOnVEVO\\Stray Cats - Rock This Town.mp4", + "title": "Rock This Town" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lionel Richie", + "playlist_title": "Truly", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "47279ab7-6289-7dfd-5a56-ac376a3d3a04", + "path": "z://CDG\\Various\\Lionel Richie - Truly.mp3", + "title": "Truly" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "078990d4-65d6-da0b-3ce1-8385f97b2d5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dionne Warwick - Heartbreaker.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Pat Benatar", + "playlist_title": "Shadows Of The Night", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "1eb35004-a5c6-2cda-c270-cef48ef085b9", + "path": "z://CDG\\Various\\Pat Benatar - Shadows Of The Night.mp3", + "title": "Shadows Of The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toto", + "playlist_title": "Africa", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "455450f7-3a43-a3a1-7a3d-166ca3f8327a", + "path": "z://MP4\\Sing King Karaoke\\TOTO - Africa (Karaoke Version).mp4", + "title": "Africa" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Clash", + "playlist_title": "Rock The Casbah", + "found_song": { + "artist": "The Clash", + "disabled": false, + "favorite": false, + "guid": "8995fab5-357f-998c-f0a2-5ef52fd406d0", + "path": "z://MP4\\Let's Sing Karaoke\\Clash, The - Rock The Casbah (Karaoke & Lyrics).mp4", + "title": "Rock The Casbah" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eddie Rabbitt With Crystal Gayle", + "playlist_title": "You And I", + "found_song": { + "artist": "Eddie Rabbitt With Crystal Gayle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69303978-1827-82fe-f5f3-a603f34668f6", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt With Crystal Gayle - You And I.mp4", + "title": "You And I" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Phil Collins", + "playlist_title": "You Can't Hurry Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "9df0fd7c-cc7d-9837-9ee4-40ba92ac3e98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Can t Hurry Love - Phil Collins.mp4", + "title": "You Can t Hurry Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Joe Cocker And Jennifer Warnes", + "playlist_title": "Up Where We Belong", + "found_song": { + "artist": "Joe Cocker And Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7f7bc7a-a18f-89a7-3d3a-b87f31c1927c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Cocker And Jennifer Warnes - Up Where We Belong.mp4", + "title": "Up Where We Belong" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Adam Ant", + "playlist_title": "Goody Two Shoes", + "found_song": { + "artist": "Adam Ant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02e8f3ea-c7f4-5633-9d07-9af8d6300982", + "path": "z://MP4\\KaraokeOnVEVO\\Adam Ant - Goody Two Shoes.mp4", + "title": "Goody Two Shoes" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "On The Wings Of Love", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61bf6b5-3044-e5ac-50e0-034da1bc9ee0", + "path": "z://MP4\\KaraokeOnVEVO\\Jeffrey Osborne - On The Wings Of Love.mp4", + "title": "On The Wings Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billy Squier", + "playlist_title": "Everybody Wants You", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fd1a192-e016-bc8f-bad3-4ffe3a9b4444", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - Everybody Wants You.mp4", + "title": "Everybody Wants You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Moving Pictures", + "playlist_title": "What About Me", + "found_song": { + "artist": "Moving Pictures", + "disabled": false, + "favorite": false, + "guid": "dd4fba02-f7e1-d9ff-1801-c561de60e3d6", + "path": "z://MP4\\KtvEntertainment\\Moving Pictures - What About Me Karaoke Lyrics.mp4", + "title": "What About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Shock The Monkey", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "0c8e11ac-65b5-0aa0-e43c-24610bfe4cdc", + "path": "z://MP4\\Let's Sing Karaoke\\Gabriel, Peter - Shock The Monkey (Karaoke & Lyrics).mp4", + "title": "Shock The Monkey" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Joel", + "playlist_title": "Allentown", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "f750d441-0ed8-d2cb-c65b-5b7764c92317", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Allentown - Billy Joel.mp4", + "title": "Allentown" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Air Supply", + "playlist_title": "Two Less Lonely People In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b2dacac-aa1a-f2cd-adc3-58e633881517", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Two Less Lonely People In The World.mp4", + "title": "Two Less Lonely People In The World" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Diana Ross", + "playlist_title": "Muscles", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "c14d86d7-b189-6d8c-b6f1-744e8bc4207e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Muscles - Diana Ross.mp4", + "title": "Muscles" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Stray Cats", + "playlist_title": "Stray Cat Strut", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "guid": "e0fdf64b-d66b-29c4-926b-cce846b9cd3f", + "path": "z://MP4\\TheKARAOKEChannel\\Stray Cat Strut in the Style of Stray Cats karaoke video with lyrics (no lead vocal).mp4", + "title": "Stray Cat Strut" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Barry Manilow", + "playlist_title": "Memory", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "a52c7dcc-3811-513b-0cc1-8914a2512685", + "path": "z://CDG\\Various\\Barry Manilow - Memory.mp3", + "title": "Memory" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Culture Club", + "playlist_title": "Do You Really Want To Hurt Me", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "7bd8953b-3fd6-a7b6-32c3-71cc29c1e5d5", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Do You Really Want To Hurt Me (Karaoke Version).mp4", + "title": "Do You Really Want To Hurt Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Frida", + "playlist_title": "I Know There's Something Going On", + "found_song": { + "artist": "Frida", + "disabled": false, + "favorite": false, + "guid": "9c52c4b5-8815-04d1-a292-4e30ca7c0c4c", + "path": "z://MP4\\KaraFun Karaoke\\I Know There's Something Going On - Frida Karaoke Version KaraFun.mp4", + "title": "I Know There's Something Going On" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Musical Youth", + "playlist_title": "Pass The Dutchie", + "found_song": { + "artist": "Musical Youth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2bfc62d-4de7-2f40-bd36-5de8a8f6e0e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Musical Youth - Pass The Dutchie.mp4", + "title": "Pass The Dutchie" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Prince", + "playlist_title": "1999", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba961dc-e770-05b0-9718-05798dc42a89", + "path": "z://MP4\\KaraokeOnVEVO\\Prince - 1999.mp4", + "title": "1999" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Duran Duran", + "playlist_title": "Hungry Like The Wolf", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "14c7c6b1-7c32-c2ff-c7be-a582e7c78c72", + "path": "z://MP4\\Sing King Karaoke\\Duran Duran - Hungry Like The Wolf (Karaoke Version).mp4", + "title": "Hungry Like The Wolf" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Neil Diamond", + "playlist_title": "Heartlight", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa870010-5363-6122-e894-7cd2d4e17840", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Heartlight.mp4", + "title": "Heartlight" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Chicago", + "playlist_title": "Love Me Tomorrow", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "908ff4f5-cc88-69b9-225d-520c1fb23655", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Me Tomorrow - Chicago.mp4", + "title": "Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Sylvia", + "playlist_title": "Nobody", + "found_song": { + "artist": "Sylvia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd54b80f-102f-de00-22bc-8b92dc81cede", + "path": "z://MP4\\KaraokeOnVEVO\\Sylvia - Nobody.mp4", + "title": "Nobody" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Men At Work", + "playlist_title": "Who Can It Be Now?", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "f193a597-6aa5-f4d4-c719-1287a7a9fcb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Can It Be Now - Men At Work.mp4", + "title": "Who Can It Be Now" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Michael Jackson And Paul McCartney", + "playlist_title": "The Girl Is Mine", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "c703bcb4-a5e7-e94e-845e-151d457a61da", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Girl Is Mine - Michael Jackson.mp4", + "title": "The Girl Is Mine" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Supertramp Featuring Roger Hodgson", + "playlist_title": "It's Raining Again", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "guid": "ee77a329-27ff-2382-5414-40f0211e50aa", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF032\\Supertramp - It's Raining Again - SF032 - 11.mp3", + "title": "It's Raining Again" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Patti Austin With James Ingram", + "playlist_title": "Baby, Come To Me", + "found_song": { + "artist": "James Ingram & Patti Austin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6896b24-93c9-2344-8707-706c0f04c91c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 846\\James Ingram & Patti Austin - Baby Come To Me - SFMW 846 -11.mp3", + "title": "Baby Come To Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Little River Band", + "playlist_title": "The Other Guy", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "e5ed2681-e656-5082-3912-690eb57fad22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Night Owls - Little River Band.mp4", + "title": "The Night Owls" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "ABC", + "playlist_title": "The Look Of Love (Part One)", + "found_song": { + "artist": "ABC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29f890e8-4011-da2d-8f4a-b4ad92b497f6", + "path": "z://MP4\\KaraokeOnVEVO\\ABC - The Look Of Love.mp4", + "title": "The Look Of Love" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Kenny Loggins", + "playlist_title": "Heart To Heart", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "guid": "023bc29f-e7b0-ac51-3310-3ef308fba35e", + "path": "z://MP4\\Sing King Karaoke\\Kenny Loggins - Danger Zone (Karaoke Version).mp4", + "title": "Danger Zone" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Missing You", + "found_song": { + "artist": "DeBurgh, Chris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2119fe40-75b6-a34e-9f22-90d911251f03", + "path": "z://CDG\\SBI\\SBI-01\\SB02390 - Chris DeBurgh - Missing You.mp3", + "title": "Missing You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The J. Geils Band", + "playlist_title": "I Do", + "found_song": { + "artist": "The J. Geils Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6d7faa9-d982-3193-68ad-fc5d4c5febe7", + "path": "z://MP4\\KaraokeOnVEVO\\The J. Geils Band - Centerfold.mp4", + "title": "Centerfold" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Love In Store", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "e21e065e-472a-5fa5-434b-1f5b7c6e7730", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Stop - Fleetwood Mac.mp4", + "title": "Don t Stop" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "You Got Lucky", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99902383-85be-bd46-fe25-860333a91eba", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty And The Heartbreakers - I Wont Back Down.mp4", + "title": "I Won't Back Down" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Bob Seger & The Silver Bullet Band", + "playlist_title": "Shame On The Moon", + "found_song": { + "artist": "Bob Seger And The Silver Bullet Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27288439-bdba-8f45-7862-9abdff86fa67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bob Seger And The Silver Bullet Band - Old Time Rock And Roll.mp4", + "title": "Old Time Rock And Roll" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Let's Go Dancin' (ooh La, La, La)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "97c95b5a-582e-7894-7407-2bb6cb2b15a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Go Dancin (Ooh La, La, La) - Kool And The Gang.mp4", + "title": "Let s Go Dancin (Ooh La, La, La)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Juice Newton", + "playlist_title": "Heart Of The Night", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "guid": "ce46636b-caf6-6bbd-d998-a919d81f2c3c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angel Of The Morning - Juice Newton.mp4", + "title": "Angel Of The Morning" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Michael McDonald", + "playlist_title": "I Gotta Try", + "found_song": { + "artist": "James Ingram & Michael Mcdonald", + "disabled": false, + "favorite": false, + "guid": "4ac85164-8d65-4590-92ab-198653cc981a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\James Ingram & Michael Mcdonald - Ya Mo B There - SF068 - 01.mp3", + "title": "Ya Mo B There" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Heart Attack", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d68c9f-1359-142b-0f28-1a6b55c52873", + "path": "z://MP4\\KaraokeOnVEVO\\Olivia Newton-John - Magic.mp4", + "title": "Magic" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Ray Parker Jr.", + "playlist_title": "Bad Boy", + "found_song": { + "artist": "Ray Parker Jr.", + "disabled": false, + "favorite": false, + "guid": "50713d5f-1cd9-ec01-ce49-093cd5f7520f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jack And Jill - Ray Parker Jr..mp4", + "title": "Jack And Jill" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Glenn Frey", + "playlist_title": "All Those Lies", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2a84983b-cbc3-afb2-5c58-3e795f349dc1", + "path": "z://CDG\\Various\\Glenn Frey - True Love.mp3", + "title": "True Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Golden Earring", + "playlist_title": "Twilight Zone", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2afc1e54-13e1-14d1-9190-03aeb2699961", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - twilight zone.mp4", + "title": "twilight zone" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "I Knew You When", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "4c8c6465-0756-34f1-3b89-7726e3c143a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Bayou - Linda Ronstadt.mp4", + "title": "Blue Bayou" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Saga", + "playlist_title": "On The Loose", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "2e3b5d77-1f6e-4917-7097-ee2b9c980d50", + "path": "z://MP4\\King of Karaoke\\Niall Horan - On the Loose - King of Karaoke.mp4", + "title": "On the Loose" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "The Alan Parsons Project", + "playlist_title": "Psychobabble", + "found_song": { + "artist": "The Alan Parsons Project", + "disabled": false, + "favorite": false, + "guid": "d0d614f7-270e-0757-4bb6-b2d5739228d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Old And Wise - The Alan Parsons Project.mp4", + "title": "Old And Wise" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Be My Lady", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "7e51306e-2ade-7620-7113-99a611e2f229", + "path": "z://CDG\\Various\\Jefferson Starship - Sara.mp3", + "title": "Sara" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Donna Summer", + "playlist_title": "The Woman In Me", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "c82eed54-aa91-82a4-0af4-b2cc653e67af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On The Radio - Donna Summer.mp4", + "title": "On The Radio" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Joni Mitchell", + "playlist_title": "(you're So Square) Baby, I Don't Care", + "found_song": { + "artist": "Buddy Holly", + "disabled": false, + "favorite": false, + "guid": "2b44ee70-0a24-8fd5-f305-21e9d17b76c4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You re So Square) Baby I Don t Care - Buddy Holly.mp4", + "title": "(You re So Square) Baby I Don t Care" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Chilliwack", + "playlist_title": "Whatcha Gonna Do", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5c5db41-fc80-b53f-4d48-335875081095", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hinder - What Ya Gonna Do.mp4", + "title": "What Ya Gonna Do" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Pretenders", + "playlist_title": "Back On The Chain Gang", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "88c9d1c3-9159-64ae-e834-00d380bac54c", + "path": "z://MP4\\KaraFun Karaoke\\Back On The Chain Gang - The Pretenders Karaoke Version KaraFun.mp4", + "title": "Back On The Chain Gang" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Santana", + "playlist_title": "Nowhere To Run", + "found_song": { + "artist": "Martha and the Vandellas", + "disabled": false, + "favorite": false, + "guid": "c34764c0-12ee-c4f7-58d0-7c73098ab396", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nowhere to Run - Martha and the Vandellas.mp4", + "title": "Nowhere to Run" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Wolf", + "playlist_title": "Papa Was A Rollin' Stone", + "found_song": { + "artist": "Temptations", + "disabled": false, + "favorite": false, + "guid": "7a8c4b3e-e530-939a-4e36-60d454ca74bc", + "path": "z://CDG\\Various\\Temptations - Papa Was A Rollin' Stone.mp3", + "title": "Papa Was A Rollin' Stone" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "Give It Up", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "9e90be33-4dca-1f88-dbe6-efbb1ab62f62", + "path": "z://MP4\\Let's Sing Karaoke\\Steve Miller Band, The - Joker, The (Karaoke & Lyrics).mp4", + "title": "Joker, The" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Lee Ritenour", + "playlist_title": "Cross My Heart", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "703ce801-ec3f-4164-f8ce-0d1f40ae1653", + "path": "z://CDG\\Various\\Dolly Parton - Cross My Heart.mp3", + "title": "Cross My Heart" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Charlene & Stevie Wonder", + "playlist_title": "Used To Be", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "4fdd7e03-909e-30ae-3d4a-330730111869", + "path": "z://CDG\\Various\\Stevie Wonder - Use Me.mp3", + "title": "Use Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Elvis Presley", + "playlist_title": "The Elvis Medley", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9cac71ff-aa2f-f947-999c-6eb51be8eb68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Last Farewell - Elvis Presley.mp4", + "title": "The Last Farewell" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Janet Jackson", + "playlist_title": "Young Love", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "06ace194-83db-2fe7-3e0b-cd4896fc0ff5", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF120\\Janet Jackson - I Get Lonely - SF120 - 03.mp3", + "title": "I Get Lonely" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Pia Zadora", + "playlist_title": "The Clapping Song", + "found_song": { + "artist": "Belle Stars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a297a2bc-0c31-80ce-8cfe-66045e250970", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Belle Stars - The Clapping Song - SF107 - 08.mp3", + "title": "The Clapping Song" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "The Spinners", + "playlist_title": "Funny How Time Slips Away", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "1ae9b55c-061d-3712-b2b4-c0d3f3bf3453", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Funny How Time Slips Away - Willie Nelson.mp4", + "title": "Funny How Time Slips Away" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Hot Chocolate", + "playlist_title": "Are You Getting Enough Happiness", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "213a497e-94ed-8ae0-5960-d12ba324506a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hot Chocolate - So You Win Again.mp4", + "title": "So You Win Again" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Poco", + "playlist_title": "Shoot For The Moon", + "found_song": { + "artist": "Norah Jones", + "disabled": false, + "favorite": false, + "guid": "77273109-e054-c45d-d37b-0a4ce555dc1e", + "path": "z://MP4\\Let's Sing Karaoke\\Jones, Norah - Shoot The Moon (Karaoke & Lyrics).mp4", + "title": "Shoot The Moon" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Little Steven", + "playlist_title": "Forever", + "found_song": { + "artist": "Justin Bieber ft. Post Malone & Clever", + "disabled": false, + "favorite": false, + "guid": "f908a0cd-2d8c-a2c0-74df-896580bf83a9", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Post Malone & Clever - Forever (Karaoke Version).mp4", + "title": "Forever" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Crosby, Stills & Nash", + "playlist_title": "Southern Cross", + "found_song": { + "artist": "Crosby, Stills & Nash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09a228d4-fe3b-1ded-e94a-72a46690060a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Crosby, Stills & Nash - Southern Cross.mp4", + "title": "Southern Cross" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Bill Conti", + "playlist_title": "Theme From Dynasty", + "found_song": { + "artist": "Bill Conti", + "disabled": false, + "favorite": false, + "guid": "f82b6f28-d30c-88bc-7383-4c9e7a15954a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Theme From Rocky (Gonna Fly Now) - Bill Conti.mp4", + "title": "Theme From Rocky (Gonna Fly Now)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Billy Joel", + "playlist_title": "Pressure", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e9495fd-ed64-6186-3d38-15ad16693ed7", + "path": "z://MP4\\CCKaraoke\\Billy Joel - The Stranger.mp4", + "title": "The Stranger" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Survivor", + "playlist_title": "American Heartbeat", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17fa371c-1d2e-0fcb-babc-556cfd85e614", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - Burning Heart.mp4", + "title": "Burning Heart" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 24, + "artist": "John Cougar", + "title": "Hand To Hold On To", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Tavares", + "title": "A Penny For Your Thoughts", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Kim Carnes", + "title": "Does It Make You Remember", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Sammy Hagar", + "title": "Your Love Is Driving Me Crazy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "A Flock Of Seagulls", + "title": "Space Age Love Song", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "America", + "title": "Right Before Your Eyes", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Sonny Charles", + "title": "Put It In A Magazine", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Luther Vandross", + "title": "Bad Boy/Having A Party", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lanier & Co.", + "title": "After I Cry Tonight", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Commodores", + "title": "Painted Picture", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rough Trade", + "title": "All Touch", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Who", + "title": "Eminence Front", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Hughes/Thrall", + "title": "Beg, Borrow Or Steal", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Donald Fagen", + "title": "I.g.y. (what A Beautiful World)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Scandal Featuring Patty Smyth", + "title": "Goodbye To You", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Tyrone Davis", + "title": "Are You Serious", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Michael Stanley Band", + "title": "Take The Time", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Unipop", + "title": "What If (I Said I Love You)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Missing Persons", + "title": "Destination Unknown", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Motels", + "title": "Forever Mine", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rodway", + "title": "Don't Stop Trying", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Steel Breeze", + "title": "You Don't Want Me Anymore", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 36, + "fuzzy_match_count": 42, + "missing_count": 22, + "needs_manual_review": 42 + } + }, + { + "playlist_title": "1981 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gene Watson", + "playlist_title": "Fourteen Karat Mind", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "522b3ef8-7111-fc5a-ad90-878ebecdadee", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Fourteen Karat Mind.mp4", + "title": "Fourteen Karat Mind" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mac Davis", + "playlist_title": "You're My Bestest Friend", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11bd61d5-72d0-3fba-913f-a5ade28277cf", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Youre My Bestest Friend.mp4", + "title": "You're My Bestest Friend" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Lonely Nights", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5cfe171-a9f3-da58-dc11-f3355e462ea8", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Lonely Nights.mp4", + "title": "Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Eddy Raven", + "playlist_title": "Who Do You Know In California", + "found_song": { + "artist": "Eddy Raven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "645817fc-e087-b932-edba-759b24e90f7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddy Raven - Who Do You Know In California.mp4", + "title": "Who Do You Know In California" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "Watchin' Girls Go By", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd313172-a52f-8c85-18f5-2d0c2c4532c5", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - Watchin Girls Go By.mp4", + "title": "Watchin' Girls Go By" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Greenwood", + "playlist_title": "It Turns Me Inside Out", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb734e20-b743-bdbc-e63b-559aa6b50440", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - It Turns Me Inside Out.mp4", + "title": "It Turns Me Inside Out" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Don Williams", + "playlist_title": "Lord, I Hope This Day Is Good", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "a269f092-ef3e-5c50-ca22-3d0bccf75018", + "path": "z://MP4\\KaraokeOnVEVO\\Don Williams - Lord, I Hope This Day Is Good (Karaoke).mp4", + "title": "Lord, I Hope This Day Is Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Alabama", + "playlist_title": "Love In The First Degree/Ride The Train", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "6972b03b-3df9-d22a-7a22-02e89af71d20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love In The First Degree - Alabama.mp4", + "title": "Love In The First Degree" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Crystal Gayle", + "playlist_title": "The Woman In Me", + "found_song": { + "artist": "Eddie Rabbit & Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "8323d837-69e8-69c5-1c12-41e83ba29984", + "path": "z://MP4\\Let's Sing Karaoke\\Rabbit, Eddie & Crystal Gayle - You And I (Karaoke & Lyrics).mp4", + "title": "You And I" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "The Bellamy Brothers", + "playlist_title": "You're My Favorite Star", + "found_song": { + "artist": "The Bellamy Brothers", + "disabled": false, + "favorite": false, + "guid": "db888864-2357-55b9-2bea-be88bc9675ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Some Broken Hearts - The Bellamy Brothers.mp4", + "title": "Some Broken Hearts" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Gary Morris", + "playlist_title": "Headed For A Heartache", + "found_song": { + "artist": "Winger", + "disabled": false, + "favorite": false, + "guid": "8142b167-bb61-685a-6f56-ecbcdca75f56", + "path": "z://MP4\\KaraokeOnVEVO\\Winger - Headed For A Heartbreak (Karaoke).mp4", + "title": "Headed For A Heartbreak" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Statler Brothers", + "playlist_title": "Years Ago", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "guid": "7b7a7759-a8c4-08fe-51e3-55c6c1473152", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hello Mary Lou - The Statler Brothers.mp4", + "title": "Hello Mary Lou" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Blaze Of Glory", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "d9e2445a-98a2-9c54-a0da-070cefe014be", + "path": "z://MP4\\KaraFun Karaoke\\Lady - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Lady" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ray Price", + "playlist_title": "Diamonds In The Stars", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "84c8cd1a-6315-9167-ea8a-ed9cdc860123", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD022 - Prince\\Prince - Diamonds & Pearls - SFG022 - 08.mp3", + "title": "Diamonds & Pearls" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Conway Twitty", + "title": "Red Neckin Love Makin Night", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Moe Bandy", + "title": "Rodeo Romeo", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Earl Thomas Conley", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Dottie West", + "title": "It's High Time", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jim Reeves And Patsy Cline", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Leon Everette", + "title": "Midnight Rodeo", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kieran Kane", + "title": "It's Who You Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mel McDaniel", + "title": "Preaching Up A Storm", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 7, + "missing_count": 8, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1981 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Physical", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "07a9e3ce-bd55-21ad-1f3b-8a95a4c343a3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Physical - Olivia Newton-John.mp4", + "title": "Physical" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Foreigner", + "playlist_title": "Waiting For A Girl Like You", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "b54e701b-b5fa-b734-a7b9-eae2cc4e954e", + "path": "z://MP4\\Let's Sing Karaoke\\Foreigner - Waiting For A Girl Like You (Karaoke & Lyrics).mp4", + "title": "Waiting For A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Quarterflash", + "playlist_title": "Harden My Heart", + "found_song": { + "artist": "Quarterflash", + "disabled": false, + "favorite": false, + "guid": "476449bc-f9c7-cb08-bf5b-bb36584249a7", + "path": "z://MP4\\Let's Sing Karaoke\\Quarterflash - Harden My Heart (Karaoke & Lyrics).mp4", + "title": "Harden My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Diana Ross", + "playlist_title": "Why Do Fools Fall In Love", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "710bba03-e9c8-527f-b5d3-b2021041b954", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Do Fools Fall In Love - Diana Ross.mp4", + "title": "Why Do Fools Fall In Love" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Stevie Nicks With Don Henley", + "playlist_title": "Leather And Lace", + "found_song": { + "artist": "Stevie Nicks With Don Henley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55d4737c-1438-c19e-81cb-0a122e3d23d7", + "path": "z://MP4\\KaraokeOnVEVO\\Stevie Nicks With Don Henley - Leather And Lace.mp4", + "title": "Leather And Lace" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lindsey Buckingham", + "playlist_title": "Trouble", + "found_song": { + "artist": "Lindsey Buckingham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d5d7bc0-d272-59c4-c7a3-037b1711dc41", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 867\\Lindsey Buckingham - Trouble - SFMW 867 -03.mp3", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Neil Diamond", + "playlist_title": "Yesterday's Songs", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a43b3db-aeae-b63d-d2f7-362954d848b4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Yesterdays Songs.mp4", + "title": "Yesterday's Songs" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Benson", + "playlist_title": "Turn Your Love Around", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "60bcf99b-c37b-cd62-5979-f41ecd46d927", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF032\\George Benson - Turn Your Love Around - SF032 - 06.mp3", + "title": "Turn Your Love Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Paul Davis", + "playlist_title": "Cool Night", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "c2940e54-6b37-3875-de79-d02591ad4741", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - Cool Night (Karaoke & Lyrics).mp4", + "title": "Cool Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Police", + "playlist_title": "Every Little Thing She Does Is Magic", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "929a0857-1550-9c07-cb72-e0cadec75850", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Every Little Thing She Does Is Magic - The Police.mp4", + "title": "Every Little Thing She Does Is Magic" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Waiting On A Friend", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "76184c69-189e-5aed-1343-3b0c4a50d2fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting On A Friend - The Rolling Stones.mp4", + "title": "Waiting On A Friend" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "She's Got A Way", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "652741a1-e2e0-419c-8eaa-6df9db730a07", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s Got A Way - Billy Joel.mp4", + "title": "She s Got A Way" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Leader Of The Band", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "dc46c4e5-bd44-89ff-06f7-53f98d1d96f1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Band - Dan Fogelberg.mp4", + "title": "Leader Of The Band" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Don McLean", + "playlist_title": "Castles In The Air", + "found_song": { + "artist": "Don McLean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1003985-79c5-09e4-aab9-bb17b31cefa0", + "path": "z://MP4\\KaraokeOnVEVO\\Don McLean - Castles In The Air.mp4", + "title": "Castles In The Air" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Start Me Up", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "9dc329c6-3843-8393-8873-a6f16bc3eae4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Start Me Up - The Rolling Stones.mp4", + "title": "Start Me Up" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Loverboy", + "playlist_title": "Working For The Weekend", + "found_song": { + "artist": "Loverboy", + "disabled": false, + "favorite": false, + "guid": "31807eee-320d-045d-c543-09887806943f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working For The Weekend - Loverboy.mp4", + "title": "Working For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Air Supply", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bbad07f-33c9-f35a-a0b1-e885b5b67418", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Barry Manilow", + "playlist_title": "The Old Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0738d93d-ea47-a9c4-63e0-fba8c6d19da8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - The Old Songs.mp4", + "title": "The Old Songs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alabama", + "playlist_title": "Love In The First Degree", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "6972b03b-3df9-d22a-7a22-02e89af71d20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love In The First Degree - Alabama.mp4", + "title": "Love In The First Degree" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Christopher Cross", + "playlist_title": "Arthur's Theme (Best That You Can Do)", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39497573-7e0b-fc43-1a9c-62c29b8bb736", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Arthurs Theme (Best That You Can Do).mp4", + "title": "Arthur's Theme (Best That You Can Do)" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Billy Squier", + "playlist_title": "My Kinda Lover", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cf17a10-28c6-3658-4bdb-dbd55aed25fe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - My Kinda Lover.mp4", + "title": "My Kinda Lover" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bob Seger", + "playlist_title": "Tryin' To Live My Life Without You", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "09e3798e-718f-eac5-12b4-e6a566acea49", + "path": "z://MP4\\Let's Sing Karaoke\\Seger, Bob - Tryin' To Live My Life Without You (Karaoke & Lyrics).mp4", + "title": "Tryin' To Live My Life Without You" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Rick Springfield", + "playlist_title": "I've Done Everything For You", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4e2d9e5-e3e7-e9c3-fb3b-01888f1237ee", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Ive Done Everything For You.mp4", + "title": "I've Done Everything For You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Rush", + "playlist_title": "Closer To The Heart", + "found_song": { + "artist": "Rush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4324aa8-d9de-3f9a-8715-4f1d6e22cf30", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rush - Closer To The Heart.mp4", + "title": "Closer To The Heart" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Genesis", + "playlist_title": "Abacab", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a542e21e-57a9-bb79-e87c-79563cee1c92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - Abacab.mp4", + "title": "Abacab" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Four Tops", + "playlist_title": "When She Was My Girl", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6446bb2-31c2-488f-f749-083b451792bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Four Tops - When She Was My Girl - SF107 - 12.mp3", + "title": "When She Was My Girl" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Through The Years", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a66a9eb-5988-9d3c-2938-77d9a823ab02", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Through The Years.mp4", + "title": "Through The Years" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Al Jarreau", + "playlist_title": "We're In This Love Together", + "found_song": { + "artist": "Al Jarreau", + "disabled": false, + "favorite": false, + "guid": "8392305f-0ad2-5433-6f2e-9630d0723f9e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We re In This Love Together - Al Jarreau.mp4", + "title": "We re In This Love Together" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Carl Carlton", + "playlist_title": "She's A Bad Mama Jama (She's Built, She's Stacked)", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "guid": "e005caff-f6b3-feb7-8033-5758438d92c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s A Bad Mama Jama (She s Built, She s Stacked) - Carl Carlton.mp4", + "title": "She s A Bad Mama Jama (She s Built, She s Stacked)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sheena Easton", + "playlist_title": "For Your Eyes Only", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "f4cd6bf7-75b0-05f7-0128-9a9b5c9c3e14", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Eyes Only - Sheena Easton.mp4", + "title": "For Your Eyes Only" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Prince", + "playlist_title": "Controversy", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "d8cc1d0b-eac0-a120-3bd9-43be72e7615c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD022 - Prince\\Prince - Controversy - SFG022 - 13.mp3", + "title": "Controversy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Let's Groove", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3f91c47-1af8-d50a-506e-6efef683348a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - Lets Groove.mp4", + "title": "Let's Groove" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Rod Stewart", + "playlist_title": "Young Turks", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "e5eb70f9-8ecf-926f-2f63-32ed6a063876", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Is - Rod Stewart.mp4", + "title": "Love Is" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "The J. Geils Band", + "playlist_title": "Centerfold", + "found_song": { + "artist": "The J. Geils Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6d7faa9-d982-3193-68ad-fc5d4c5febe7", + "path": "z://MP4\\KaraokeOnVEVO\\The J. Geils Band - Centerfold.mp4", + "title": "Centerfold" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Comin' In And Out Of Your Life", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "88e47d96-bd4c-d234-5524-0366d5c56dbe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Comin' In And Out Of Your Life - SFG042 - 04.mp3", + "title": "Comin' In And Out Of Your Life" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Take My Heart (You Can Have It If You Want It)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "259469f4-953e-e5db-52d3-8c479a968eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take My Heart (You Can Have It If You Want It) - Kool And The Gang.mp4", + "title": "Take My Heart (You Can Have It If You Want It)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Commodores", + "playlist_title": "Oh No", + "found_song": { + "artist": "The Commodores", + "disabled": false, + "favorite": false, + "guid": "bb159e66-b67f-79ed-7894-098e49e6b081", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Zoom - The Commodores.mp4", + "title": "Zoom" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "The Cars", + "playlist_title": "Shake It Up", + "found_song": { + "artist": "Florence and the Machine", + "disabled": false, + "favorite": false, + "guid": "9891c403-241f-0b66-d7a6-43976f9d51a1", + "path": "z://MP4\\singsongsmusic\\Shake It Out - Karaoke HD (In the style of Florence and the Machine).mp4", + "title": "Shake It Out" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Stevie Woods", + "playlist_title": "Steal The Night", + "found_song": { + "artist": "Zedd ft. Hayley Williams", + "disabled": false, + "favorite": false, + "guid": "3646a600-bce7-30a3-7321-27656006dad4", + "path": "z://MP4\\Sing King Karaoke\\Zedd and Hayley Williams - Stay the Night (Karaoke Version).mp4", + "title": "Stay the Night" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Go-Go's", + "playlist_title": "Our Lips Are Sealed", + "found_song": { + "artist": "The Go-Go's", + "disabled": false, + "favorite": false, + "guid": "39f3f1e4-0915-e205-9247-486aa427c706", + "path": "z://MP4\\KaraFun Karaoke\\Our Lips Are Sealed - The Go-Go's Karaoke Version KaraFun.mp4", + "title": "Our Lips Are Sealed" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "The Beach Boys", + "playlist_title": "Come Go With Me", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "53cf2d97-6f8b-63b8-62af-939a29dc5f4a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kokomo - The Beach Boys.mp4", + "title": "Kokomo" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "Heart Like A Wheel", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "b7e47bd2-7bea-87b6-8dcc-7bf3e605e1ec", + "path": "z://MP4\\Let's Sing Karaoke\\Steve Miller Band, The - Fly Like An Eagle (Karaoke & Lyrics).mp4", + "title": "Fly Like An Eagle" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Little River Band", + "playlist_title": "Take It Easy On Me", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "e5ed2681-e656-5082-3912-690eb57fad22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Night Owls - Little River Band.mp4", + "title": "The Night Owls" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Private Eyes", + "found_song": { + "artist": "Hall And Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13e7d4b5-b359-c8f4-0d6e-65de6a7e5c78", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hall And Oates - Private Eyes.mp4", + "title": "Private Eyes" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Rick Springfield", + "playlist_title": "Love Is Alright Tonite", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11875738-bf02-a6b2-3bf2-104272904711", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Love Is Alright Tonight.mp4", + "title": "Love Is Alright Tonight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Lulu", + "playlist_title": "If I Were You", + "found_song": { + "artist": "blackbear, Lauv", + "disabled": false, + "favorite": false, + "guid": "39c167c3-a838-45c6-6e82-0b6cec3d07ab", + "path": "z://MP4\\Sing King Karaoke\\blackbear, Lauv - if i were u (Karaoke Version).mp4", + "title": "if i were u" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Greg Lake", + "playlist_title": "Let Me Love You Once", + "found_song": { + "artist": "DJ Snake ft. Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "feb8639f-ca26-dd1c-7c88-d5025b812f16", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake ft. Justin Bieber - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Genesis", + "playlist_title": "No Reply At All", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "guid": "a703045b-1689-d8b4-0763-d8489faee419", + "path": "z://MP4\\Let's Sing Karaoke\\Genesis - Thats All (Karaoke & Lyrics).mp4", + "title": "Thats All" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Luther Vandross", + "playlist_title": "Never Too Much", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "cde6a4ea-4ea3-ebb5-190c-570da149782b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Much - Luther Vandross.mp4", + "title": "Never Too Much" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Ringo Starr", + "playlist_title": "Wrack My Brain", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "19804324-2f61-b1d6-d8a5-455917985cc6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ringo Starr - Back Off Boogaloo.mp4", + "title": "Back Off Boogaloo" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Survivor", + "playlist_title": "Poor Man's Son", + "found_song": { + "artist": "Rockin' Berries", + "disabled": false, + "favorite": false, + "guid": "12ba1c90-73ca-79ce-7985-e07e1c7a6ea7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Rockin' Berries - Poor Man's Son - SF086 - 04.mp3", + "title": "Poor Man's Son" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Al Jarreau", + "playlist_title": "Breakin' Away", + "found_song": { + "artist": "Joe Fagin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27f83d26-7f37-77be-d69b-36c5d7dacb02", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Fagin - Breakin Away.mp4", + "title": "Breakin' Away" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Sheila", + "playlist_title": "Little Darlin'", + "found_song": { + "artist": "The Diamonds", + "disabled": false, + "favorite": false, + "guid": "acd5d378-932c-6aed-0008-60e3172996eb", + "path": "z://MP4\\KaraokeOnVEVO\\The Diamonds - Little Darlin' (Karaoke).mp4", + "title": "Little Darlin'" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Balance", + "playlist_title": "Falling In Love", + "found_song": { + "artist": "Hamilton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f1e88d63-6494-1501-e7f4-d270efa0abcf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hamilton, Joe Frank & Reynolds - Fallin In Love.mp4", + "title": "Fallin' In Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Jennifer Warnes", + "playlist_title": "Could It Be Love", + "found_song": { + "artist": "Jennifer Warnes", + "disabled": false, + "favorite": false, + "guid": "dbf306a2-a5c7-0987-d5d8-cfdf327739b4", + "path": "z://MP4\\KaraFun Karaoke\\It Goes Like It Goes - Jennifer Warnes Karaoke Version KaraFun.mp4", + "title": "It Goes Like It Goes" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Del Shannon", + "playlist_title": "Sea Of Love", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "867d6179-7561-b93d-7839-de1a1855ca05", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 864\\Del Shannon - Kelly - SFMW 864 -15.mp3", + "title": "Kelly" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Bee Gees", + "playlist_title": "Living Eyes", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f593e1dc-8e53-2ae8-1f4f-8078f3feea5e", + "path": "z://MP4\\VocalStarKaraoke\\Bee Gees - Night Fever.mp4", + "title": "Night Fever" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Barry Manilow", + "playlist_title": "Somewhere Down The Road", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Bob Seger & The Silver Bullet Band", + "playlist_title": "Feel Like A Number", + "found_song": { + "artist": "Bob Seger And The Silver Bullet Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27288439-bdba-8f45-7862-9abdff86fa67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bob Seger And The Silver Bullet Band - Old Time Rock And Roll.mp4", + "title": "Old Time Rock And Roll" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Little River Band", + "playlist_title": "The Night Owls", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "e5ed2681-e656-5082-3912-690eb57fad22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Night Owls - Little River Band.mp4", + "title": "The Night Owls" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Crystal Gayle", + "playlist_title": "The Woman In Me", + "found_song": { + "artist": "Eddie Rabbit & Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "8323d837-69e8-69c5-1c12-41e83ba29984", + "path": "z://MP4\\Let's Sing Karaoke\\Rabbit, Eddie & Crystal Gayle - You And I (Karaoke & Lyrics).mp4", + "title": "You And I" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Donnie Iris", + "playlist_title": "Love Is Like A Rock", + "found_song": { + "artist": "Bonnie Raitt", + "disabled": false, + "favorite": false, + "guid": "b14b2406-8953-d371-189b-6df831cc7d06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Me Like A Man - Bonnie Raitt.mp4", + "title": "Love Me Like A Man" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Kiss", + "playlist_title": "A World Without Heroes", + "found_song": { + "artist": "1927", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8879137-e518-2b58-861b-8f2e36cd22ec", + "path": "z://MP4\\ZoomKaraokeOfficial\\1927 - A World Without You.mp4", + "title": "A World Without You" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Neil Young/Crazy Horse", + "playlist_title": "Southern Pacific", + "found_song": { + "artist": "Neil Young With Crazy Horse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25e7edd0-7c4d-e4c6-0062-982c152d93c8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Young & Crazy Horse - Powderfinger.mp4", + "title": "Powderfinger" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Bill Champlin", + "playlist_title": "Tonight Tonight", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "431a2655-6f8a-4e92-b17d-7ab4a52da733", + "path": "z://CDG\\Various\\Phil Collins - Tonight Tonight Tonight.mp3", + "title": "Tonight Tonight Tonight" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Blaze Of Glory", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "d9e2445a-98a2-9c54-a0da-070cefe014be", + "path": "z://MP4\\KaraFun Karaoke\\Lady - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Lady" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Dave Stewart and Barbara Gaskin", + "playlist_title": "It's My Party", + "found_song": { + "artist": "Dave Stewart & Barbara Gaskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a372936f-fc39-263d-c46b-38fbbfe77865", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF105\\Dave Stewart & Barbara Gaskin - It's My Party - SF105 - 09.mp3", + "title": "It's My Party" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Rick James", + "playlist_title": "Super Freak (Part I)", + "found_song": { + "artist": "Rick James", + "disabled": false, + "favorite": false, + "guid": "323235f9-90b7-5a19-5baa-0889506e1920", + "path": "z://MP4\\Let's Sing Karaoke\\James, Rick - Super Freak (Karaoke & Lyrics).mp4", + "title": "Super Freak" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Diana Ross & Lionel Richie", + "playlist_title": "Endless Love", + "found_song": { + "artist": "Lionel Richie & Diana Ross", + "disabled": false, + "favorite": false, + "guid": "9afa9f0b-87fe-5978-a455-5fb98c248b47", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie & Diana Ross - Endless Love (Karaoke Version).mp4", + "title": "Endless Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Hard To Say", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "dc46c4e5-bd44-89ff-06f7-53f98d1d96f1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Band - Dan Fogelberg.mp4", + "title": "Leader Of The Band" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Twilight", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "82ff25f5-6a83-961e-cb28-2bee75bee48d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Blue - Electric Light Orchestra.mp4", + "title": "Midnight Blue" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Daryl Hall John Oates", + "title": "I Can't Go For That (No Can Do)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Royal Philharmonic Orchestra", + "title": "Hooked On Classics", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Air Supply", + "title": "Here I Am (Just When I Thought I Was Over You)", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chilliwack", + "title": "My Girl (Gone, Gone, Gone)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sheena Easton", + "title": "You Could Have Been With Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sneaker", + "title": "More Than Just The Two Of Us", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bertie Higgins", + "title": "Key Largo", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Eddie Schwartz", + "title": "All Our Tomorrows", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mike Post featuring Larry Carlton", + "title": "The Theme From Hill Street Blues", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Irene Cara", + "title": "Anyone Can See", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Steve Carlisle", + "title": "Wkrp In Cincinnati", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Quincy Jones Featuring James Ingram", + "title": "Just Once", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Henry Paul Band", + "title": "Keeping Our Love Alive", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Carpenters", + "title": "Those Good Old Dreams", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Quincy Jones Featuring James Ingram", + "title": "One Hundred Ways", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Patti Austin", + "title": "Every Home Should Have One", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Diesel", + "title": "Sausalito Summernight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The John Hall Band", + "title": "Crazy (Keep On Falling)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Leif Garrett", + "title": "Runaway Rita", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Vangelis", + "title": "Chariots Of Fire - Titles", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Kano", + "title": "Can't Hold Back (Your Loving)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Kinks", + "title": "Better Things", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Chris Christian", + "title": "I Want You, I Need You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Rufus With Chaka Khan", + "title": "Sharing The Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 41, + "missing_count": 24, + "needs_manual_review": 41 + } + }, + { + "playlist_title": "1980 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Johnny Lee", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Johnny Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01e09019-2703-0b07-1a58-b8d3b281a442", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Lee - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Merle Haggard", + "playlist_title": "I Think I'll Stay Here And Drink", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce1bdfd2-de35-f29e-fb80-b0a10dad4e84", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - I Think Ill Stay Here And Drink.mp4", + "title": "I Think I'll Stay Here And Drink" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Bellamy Brothers", + "playlist_title": "Lovers Live Longer", + "found_song": { + "artist": "The Bellamy Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad9e9bf5-3772-9072-09de-3a6587e28c9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Bellamy Brothers - Lovers Live Longer.mp4", + "title": "Lovers Live Longer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mickey Gilley", + "playlist_title": "That's All That Matters To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973e158b-56b2-782c-37f1-f3b159434180", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Thats All That Matters To Me.mp4", + "title": "That's All That Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "I Feel Like Loving You Again", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01ded068-f73a-519d-9e8c-75a0419990ea", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - I Feel Like Loving You Again.mp4", + "title": "I Feel Like Loving You Again" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Charly McClain", + "playlist_title": "Who's Cheatin' Who", + "found_song": { + "artist": "Charly McClain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af64da96-a7b5-dd67-bb67-b54101479725", + "path": "z://MP4\\KaraokeOnVEVO\\Charly McClain - Whos Cheatin Who.mp4", + "title": "Who's Cheatin' Who" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "The Oak Ridge Boys", + "playlist_title": "Beautiful You", + "found_song": { + "artist": "The Oak Ridge Boys", + "disabled": false, + "favorite": false, + "guid": "959d8a4b-fc41-66bb-aa58-c54a6e242d91", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Elvira - The Oak Ridge Boys.mp4", + "title": "Elvira" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Gene Watson", + "playlist_title": "No One Will Ever Know", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "e8863630-9306-79a5-26b5-937864d5ed1c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Will Never Do - Janet Jackson.mp4", + "title": "Love Will Never Do" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "The Statler Brothers", + "playlist_title": "Don't Forget Yourself", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c31b6298-e981-44fd-0aac-fca23c983483", + "path": "z://MP4\\KaraokeOnVEVO\\Statler Brothers - Do You Remember These.mp4", + "title": "Do You Remember These" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Bobby Goldsboro", + "playlist_title": "Goodbye Marie", + "found_song": { + "artist": "Bobby Goldsboro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f34dfa24-e736-8fa2-52d2-113d87c8c451", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Goldsboro - Honey.mp4", + "title": "Honey" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Johnny Duncan", + "playlist_title": "Acapulo", + "found_song": { + "artist": "Johnny Duncan", + "disabled": false, + "favorite": false, + "guid": "6d3c5171-837e-7840-f6cc-b65691ab0592", + "path": "z://MP4\\Let's Sing Karaoke\\Duncan, Johnny - She Can Put Her Shoes (Karaoke & Lyrics).mp4", + "title": "She Can Put Her Shoes" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "John Anderson", + "playlist_title": "1959", + "found_song": { + "artist": "John Anderson", + "disabled": false, + "favorite": false, + "guid": "073ecd3c-f55b-f498-8523-9852b69eac0b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Swingin' - John Anderson.mp4", + "title": "Swingin'" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Conway Twitty", + "title": "A Bridge That Just Won't Burn", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Barbara Mandrell", + "title": "The Best Of Strangers", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Leon Everette", + "title": "Giving Up Easy", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mac Davis", + "title": "Texas In My Rear View Mirror", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Janie Frickie", + "title": "Down To My Last Broken Heart", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Terri Gibbs", + "title": "Somebodys Knockin'", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Porter Wagoner", + "title": "If You Go, I'll Follow You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Razzy Bailey", + "title": "I Keep Coming Back/True Life Country Music", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ed Bruce", + "title": "Girls, Women Ladies", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gail Davies", + "title": "I'll Be There (If You Ever Want Me)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Susie Allanson", + "title": "Dance The Two Step", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 6, + "missing_count": 11, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1980 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "John Lennon", + "playlist_title": "(Just Like) Starting Over", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "9c6ae1d3-a1bb-f8d2-1518-9fd7eb035f2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Just Like) Starting Over - John Lennon.mp4", + "title": "(Just Like) Starting Over" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Neil Diamond", + "playlist_title": "Love On The Rocks", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3644b051-105d-fe04-51c9-1136874798bf", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Love On The Rocks.mp4", + "title": "Love On The Rocks" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Lady", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "d9e2445a-98a2-9c54-a0da-070cefe014be", + "path": "z://MP4\\KaraFun Karaoke\\Lady - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Hungry Heart", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b90d87d-e30f-201e-9055-a1043f0c4541", + "path": "z://MP4\\KaraokeOnVEVO\\Bruce Springsteen - Hungry Heart.mp4", + "title": "Hungry Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Air Supply", + "playlist_title": "Every Woman In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95bbb30c-34f4-69f5-3d73-b8397cd264bd", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Every Woman In The World.mp4", + "title": "Every Woman In The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blondie", + "playlist_title": "The Tide Is High", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1acf653d-d0b4-899c-e976-044aa98534df", + "path": "z://MP4\\KaraokeOnVEVO\\Blondie - The Tide Is High.mp4", + "title": "The Tide Is High" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Pat Benatar", + "playlist_title": "Hit Me With Your Best Shot", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "3d122f45-bef5-9448-31a6-586c77d18f68", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - Hit Me With Your Best Shot (Karaoke Version).mp4", + "title": "Hit Me With Your Best Shot" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Police", + "playlist_title": "De Do Do Do, De Da Da Da", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "e4d6a6e5-73a3-750a-df66-78d2a3c92327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke De Do Do Do, De Da Da Da - The Police.mp4", + "title": "De Do Do Do, De Da Da Da" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Master Blaster (Jammin')", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f471ec92-3eb8-52ab-8275-34c0a57b4025", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Master Blaster (Jammin ) - Stevie Wonder.mp4", + "title": "Master Blaster (Jammin )" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Made It Through The Rain", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a721918-21e5-f478-efce-a33532e9492c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - I Made It Through The Rain.mp4", + "title": "I Made It Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Korgis", + "playlist_title": "Everybody's Got To Learn Sometime", + "found_song": { + "artist": "The Korgis", + "disabled": false, + "favorite": false, + "guid": "987976db-6741-39f1-0fd4-74f971c9e3dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everybody s Got To Learn Sometime - The Korgis.mp4", + "title": "Everybody s Got To Learn Sometime" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Steely Dan", + "playlist_title": "Hey Nineteen", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ab920d9b-aace-6be1-f105-d11f4a102f49", + "path": "z://MP4\\Let's Sing Karaoke\\Steely Dan - Hey Nineteen (Karaoke & Lyrics).mp4", + "title": "Hey Nineteen" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Don Williams", + "playlist_title": "I Believe In You", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "8dd6f516-19cc-b930-b735-16700ac77539", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Believe In You - Don Williams.mp4", + "title": "I Believe In You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Devo", + "playlist_title": "Whip It", + "found_song": { + "artist": "Devo", + "disabled": false, + "favorite": false, + "guid": "4d82452e-af76-e04e-bdd3-de0b3efd993e", + "path": "z://CDG\\Sound Choice Karaoke\\SC2086\\SC2086-04 - Devo - Whip It.mp3", + "title": "Whip It" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Christopher Cross", + "playlist_title": "Never Be The Same", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc4676e4-1bf8-f414-901e-38eaced2ee47", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Never Be The Same.mp4", + "title": "Never Be The Same" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Diana Ross", + "playlist_title": "I'm Coming Out", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "e48b2163-f4c7-136c-31b2-cad8595ac337", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - I'm Coming Out (Karaoke Version).mp4", + "title": "I'm Coming Out" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Dr. Hook", + "playlist_title": "Girls Can Get It", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1fc3aef-88da-a07d-cbfa-5a3eb021760d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Girls Can Get It.mp4", + "title": "Girls Can Get It" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "ABBA", + "playlist_title": "The Winner Takes It All", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "45eb6ff0-a9ce-48ff-8447-717721417d4a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Winner Takes It All (Karaoke Version).mp4", + "title": "The Winner Takes It All" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Same Old Lang Syne", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "fb88cd10-bec5-76aa-72f4-c985e60d5bd3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Same Old Lang Syne - Dan Fogelberg.mp4", + "title": "Same Old Lang Syne" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "REO Speedwagon", + "playlist_title": "Keep On Loving You", + "found_song": { + "artist": "REO Speedwagon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bf7ae8d-b9ec-23f3-3e9c-626c46f08c56", + "path": "z://MP4\\KaraokeOnVEVO\\Reo Speedwagon - Keep On Loving You (2.mp4", + "title": "Keep On Loving You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Teena Marie", + "playlist_title": "I Need Your Lovin'", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "ddbff09c-8aa8-c09f-42c5-468f7dc25a88", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need Your Lovin - Teena Marie.mp4", + "title": "I Need Your Lovin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Smoky Mountain Rain", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05dafd5e-f338-d1f3-3dfe-2e82ff21051f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - Smoky Mountain Rain.mp4", + "title": "Smoky Mountain Rain" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "Love T.K.O.", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "guid": "4a1b802e-fbcc-21e7-4341-cf4af45cf3f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love T.K.O. - Teddy Pendergrass.mp4", + "title": "Love T.K.O." + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Eagles", + "playlist_title": "Seven Bridges Road", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "bca1053b-f35e-fc62-b317-3547ade37b94", + "path": "z://CDG\\Various\\Eagles - Seven Bridges Road.mp3", + "title": "Seven Bridges Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Supertramp", + "playlist_title": "Breakfast In America", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8232174-f1ee-11a8-b311-5cf609b86257", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Supertramp - Breakfast In America - SFMW 876 -04.mp3", + "title": "Breakfast In America" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Blues Brothers", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "guid": "48d7a720-f369-7eed-d518-0d619e776550", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD031 - The Full Monty & Blues Brothers\\Blues Brothers - Who's Making Love - SFG031 - 16.mp3", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Cliff Richard", + "playlist_title": "A Little In Love", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "662b7e3a-3476-f4aa-d3b0-8e1165921378", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cliff Richard - A Little In Love.mp4", + "title": "A Little In Love" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Stephanie Mills", + "playlist_title": "Never Knew Love Like This Before", + "found_song": { + "artist": "Stephanie Mills", + "disabled": false, + "favorite": false, + "guid": "833ec988-3ccf-4fdd-ecb9-3bc95ab1b0d7", + "path": "z://MP4\\Let's Sing Karaoke\\Mills, Stephanie - Never Knew Love Like This Before (Karaoke & Lyrics).mp4", + "title": "Never Knew Love Like This Before" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "David Bowie", + "playlist_title": "Fashion", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "a2457115-22b5-cc6f-af3c-745e0724a05e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD055 - David Bowie And Marc Bolan & T Rex\\David Bowie - Fashion - SFG055 - 08.mp3", + "title": "Fashion" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Vapors", + "playlist_title": "Turning Japanese", + "found_song": { + "artist": "The Vapors", + "disabled": false, + "favorite": false, + "guid": "196321c0-dda9-aa0c-bc3c-c6a32dc7d3ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turning Japanese - The Vapors.mp4", + "title": "Turning Japanese" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Roger Daltrey", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "McVicar Soundtrack / Roger Daltrey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "652151f4-44fb-ab13-179d-e85619a28a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\McVicar Soundtrack Roger Daltrey - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Diana Ross", + "playlist_title": "Upside Down", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c97907b-cd4d-d443-da42-b98677acc064", + "path": "z://MP4\\ZoomKaraokeOfficial\\Diana Ross - Upside Down.mp4", + "title": "Upside Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Outlaws", + "playlist_title": "(Ghost) Riders In The Sky", + "found_song": { + "artist": "Outlaws", + "disabled": false, + "favorite": false, + "guid": "d5b1a673-9042-4266-f3cd-3110c5ca64ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ghost Riders In The Sky - Outlaws.mp4", + "title": "Ghost Riders In The Sky" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Willie Nelson", + "playlist_title": "On The Road Again", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "7aa27b4c-5ee3-dc59-1131-70151271b395", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On The Road Again - Willie Nelson.mp4", + "title": "On The Road Again" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Irene Cara", + "playlist_title": "Out Here On My Own", + "found_song": { + "artist": "Irene Cara", + "disabled": false, + "favorite": false, + "guid": "b6696c92-08c6-1130-256c-8d1d1da6ced3", + "path": "z://MP4\\TheKARAOKEChannel\\Irene Cara - Out Here On My Own.mp4", + "title": "Out Here On My Own" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Carly Simon", + "playlist_title": "Jesse", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "eb146dd5-d382-ee15-21e0-7323ddedc6a4", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Jesse (Karaoke).mp4", + "title": "Jesse" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Leo Sayer", + "playlist_title": "More Than I Can Say", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8a03fe9-8990-f4a6-3f07-f02df45968d4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - More Than I Can Say.mp4", + "title": "More Than I Can Say" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Barbra Streisand & Barry Gibb", + "playlist_title": "Guilty", + "found_song": { + "artist": "Barbra Streisand ft. Barry Gibb", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13f5ade7-9bdf-2182-bdcf-134325b55f3e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barbra Streisand And Barry Gibb - Guilty.mp4", + "title": "Guilty" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Heart", + "playlist_title": "Tell It Like It Is", + "found_song": { + "artist": "Aaron Neville", + "disabled": false, + "favorite": false, + "guid": "f6af5295-6e25-6661-2941-a0c26a394069", + "path": "z://MP4\\Let's Sing Karaoke\\Neville, Aaron - Tell It Like It Is (Karaoke & Lyrics).mp4", + "title": "Tell It Like It Is" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Rod Stewart", + "playlist_title": "Passion", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "bf522b98-1ddf-bb20-e0b9-f4c339540022", + "path": "z://MP4\\KtvEntertainment\\Rod Stewart - Please Karaoke Lyrics.mp4", + "title": "Please" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Diana Ross", + "playlist_title": "It's My Turn", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "e48b2163-f4c7-136c-31b2-cad8595ac337", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - I'm Coming Out (Karaoke Version).mp4", + "title": "I'm Coming Out" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Celebration", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b430092-658e-ce97-6d8c-9d7b641ee2f5", + "path": "z://MP4\\Sing King Karaoke\\Kool & The Gang - Celebration (2.mp4", + "title": "Celebration" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Woman In Love", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd8e983-3178-9bb0-0ae6-06df3d4ec92a", + "path": "z://MP4\\VocalStarKaraoke\\Barbra Streisand - Woman In Love.mp4", + "title": "Woman In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Olivia Newton-John & Cliff Richard", + "playlist_title": "Suddenly", + "found_song": { + "artist": "Olivia Newton-John ft. Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09a58f4d-9316-6111-7165-52a0a3d0995c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Olivia Newton-John And Cliff Richard - Suddenly.mp4", + "title": "Suddenly" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "You've Lost That Lovin' Feeling", + "found_song": { + "artist": "Hall & Oates", + "disabled": false, + "favorite": false, + "guid": "6e801786-164d-a20a-29bf-4613ca1b365e", + "path": "z://CDG\\Various\\Hall & Oates - You've Lost That Lovin' Feeling.mp3", + "title": "You've Lost That Lovin' Feeling" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "One Step Closer", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "guid": "5e5b7e0a-19c7-e57f-1f29-9292c487c48b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Water - The Doobie Brothers.mp4", + "title": "Black Water" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Tierra", + "playlist_title": "Together", + "found_song": { + "artist": "Eyre, Ella", + "disabled": false, + "favorite": false, + "guid": "7181f9a9-4975-65c9-ae69-26da59ba94d8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF352\\Eyre, Ella - Together - SF352 - 14.mp3", + "title": "Together" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Boz Scaggs", + "playlist_title": "Miss Sun", + "found_song": { + "artist": "Boz Scaggs", + "disabled": false, + "favorite": false, + "guid": "29e6a913-0642-6e3c-73ec-c77ef2b5dee4", + "path": "z://MP4\\Let's Sing Karaoke\\Scaggs, Boz - Lido Shuffle (Karaoke & Lyrics).mp4", + "title": "Lido Shuffle" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Donna Summer", + "playlist_title": "Cold Love", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c7a93ca-ea8b-202e-6a8a-dba0e4db5e67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - I Feel Love.mp4", + "title": "I Feel Love" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Queen", + "playlist_title": "Need Your Loving Tonight", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de0a5d37-ad87-a0cd-6b56-f9820540d40f", + "path": "z://CDG\\Various\\Elvis Presley - I Need Your Lovin' Tonight.mp3", + "title": "I Need Your Lovin' Tonight" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Bette Midler", + "playlist_title": "My Mother's Eyes", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "95f43a86-6e1e-f5b0-830c-0ba26728ee82", + "path": "z://MP4\\Sing King Karaoke\\Bette Midler - The Rose (Karaoke Version).mp4", + "title": "The Rose" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "L.T.D.", + "playlist_title": "Shine On", + "found_song": { + "artist": "Jet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23496533-1bd0-0322-6744-6f1843bcf711", + "path": "z://CDG\\SBI\\SBI-04\\SB15519 - Jet - Shine On.mp3", + "title": "Shine On" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "You", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec48fed6-252d-be5e-c7b5-69cd90954808", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - Fantasy.mp4", + "title": "Fantasy" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "The Jacksons", + "playlist_title": "Heartbreak Hotel", + "found_song": { + "artist": "Whitney Houston ft. Price Evans", + "disabled": false, + "favorite": false, + "guid": "dad1c232-d8b9-a796-220e-fd07bbb855ad", + "path": "z://MP4\\Let's Sing Karaoke\\Houston, Whitney & Price Evans - Heartbreak Hotel (Karaoke & Lyrics) (2).mp4", + "title": "Heartbreak Hotel" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "The Alan Parsons Project", + "playlist_title": "Games People Play", + "found_song": { + "artist": "The Alan Parsons Project", + "disabled": false, + "favorite": false, + "guid": "cf3b0336-571d-07c0-ac93-cb789d7a4554", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Eye In The Sky - The Alan Parsons Project.mp4", + "title": "Eye In The Sky" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Ain't Gonna Stand For It", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "da3c707b-c3a5-b01f-1776-0c86268893f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Living For The City - Stevie Wonder.mp4", + "title": "Living For The City" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "John Cougar", + "playlist_title": "This Time", + "found_song": { + "artist": "Lavato, Demi & Joe Jonas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f43aa1c-8df3-4c72-5d4c-efff691f705b", + "path": "z://CDG\\SBI\\SBI-04\\SB18461 - Demi Lavato & Joe Jonas - This Is Me.mp3", + "title": "This Is Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Cliff Richard", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "d98b46e2-8133-b7eb-4683-405bd57fd0ac", + "path": "z://MP4\\KaraFun Karaoke\\Dreamin' - Cliff Richard Karaoke Version KaraFun.mp4", + "title": "Dreamin'" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Donna Summer", + "playlist_title": "The Wanderer", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "c82eed54-aa91-82a4-0af4-b2cc653e67af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On The Radio - Donna Summer.mp4", + "title": "On The Radio" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Rita Coolidge", + "playlist_title": "Fool That I Am", + "found_song": { + "artist": "Etta James", + "disabled": false, + "favorite": false, + "guid": "3a0fe3ef-4e40-f858-f970-5e1e8bc3803b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fool That I Am - Etta James.mp4", + "title": "Fool That I Am" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "He's So Shy", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7225fbd2-a1eb-f587-897d-04e9e0c8ca1e", + "path": "z://MP4\\Sing King Karaoke\\The Pointer Sisters - Slow Hand.mp4", + "title": "Slow Hand" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Could I Be Dreaming", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Oak", + "playlist_title": "Set The Night On Fire", + "found_song": { + "artist": "Roberta Flack ft. Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65fef1c6-eef4-7eed-dc30-4cbc3def269c", + "path": "z://MP4\\KaraokeOnVEVO\\Roberta Flack With Maxi Priest - Set The Night To Music.mp4", + "title": "Set The Night To Music" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Easy Love", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", + "path": "z://MP4\\Let's Sing Karaoke\\Warwick, Dionne - Deja Vu (Karaoke & Lyrics).mp4", + "title": "Deja Vu" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Jacksons", + "playlist_title": "Lovely One", + "found_song": { + "artist": "Janet Jackson & Nelly", + "disabled": false, + "favorite": false, + "guid": "8516a564-702d-2e70-2694-bebce6b402ba", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF247\\Janet Jackson & Nelly - Call On Me - SF247 - 15.mp3", + "title": "Call On Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Dire Straits", + "playlist_title": "Skateaway", + "found_song": { + "artist": "Dire Straits", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd85d98c-122c-6b74-1048-f002ca946b7c", + "path": "z://CDG\\Various\\Dire Straits - So Far Away.mp3", + "title": "So Far Away" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Aretha Franklin", + "playlist_title": "United Together", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "278406b1-e834-7c18-ab03-7c9674e6f9a2", + "path": "z://MP4\\KaraFun Karaoke\\Joy to the World - Aretha Franklin Karaoke Version KaraFun.mp4", + "title": "Joy to the World" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Cheap Trick", + "playlist_title": "Stop This Game", + "found_song": { + "artist": "Cheap Trick", + "disabled": false, + "favorite": false, + "guid": "ba4c239e-25cd-537c-db9c-929d942ba41a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Flame - Cheap Trick.mp4", + "title": "The Flame" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Pendulum", + "playlist_title": "Gypsy Spirit", + "found_song": { + "artist": "Pendulum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "291ae950-43ad-0b67-12e4-f1a130b73302", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF272\\Pendulum - Granite - SF272 - 16.mp3", + "title": "Granite" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "The Manhattan Transfer", + "playlist_title": "Trickle Trickle", + "found_song": { + "artist": "Manhattan Transfer", + "disabled": false, + "favorite": false, + "guid": "c271b534-a392-0658-ac6e-313eb142737b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Route 66 - Manhattan Transfer.mp4", + "title": "Route 66" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Pure Prairie League", + "playlist_title": "I Can't Stop The Feelin'", + "found_song": { + "artist": "Boyce Avenue", + "disabled": false, + "favorite": false, + "guid": "03abd4e0-8d93-9688-bec1-87be4da0cdbe", + "path": "z://MP4\\King of Karaoke\\Boyce Avenue - Can't Stop The Feeling - King of Karaoke.mp4", + "title": "Can't Stop The Feeling" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 21, + "artist": "Andy Gibb", + "title": "Time Is Time", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Delbert McClinton", + "title": "Giving It Up For Your Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Waylon", + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harry Chapin", + "title": "Sequel", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Fred Knoblock & Susan Anton", + "title": "Killin' Time", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Babys", + "title": "Turn And Walk Away", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Michael Stanley Band", + "title": "He Can't Love You", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Climax Blues Band", + "title": "Gotta Have More Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Rockpile", + "title": "Teacher Teacher", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Randy Meisner", + "title": "Deep Inside My Heart", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bob Seger", + "title": "The Horizontal Bop", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Donnie Iris", + "title": "Ah! Leah!", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Shalamar", + "title": "Full Of Fire", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Willis The Guard & Vigorish", + "title": "Merry Christmas In The NFL", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Kings", + "title": "Switchin' To Glide/This Beat Goes On", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Stacy Lattisaw", + "title": "Let Me Be Your Angel", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "J.D. Drews", + "title": "Don't Want No-Body", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kansas", + "title": "Got To Rock On", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 4 Seasons", + "title": "Spend The Night In Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Paul Simon", + "title": "One-Trick Pony", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Reddings", + "title": "Remote Control", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jackie English", + "title": "Once A Night", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Marcy Levy & Robin Gibb", + "title": "Help Me!", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jimmy Hall", + "title": "I'm Happy That Love Has Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 36, + "missing_count": 25, + "needs_manual_review": 36 + } + }, + { + "playlist_title": "1979 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rupert Holmes", + "playlist_title": "Escape (The Pina Colada Song)", + "found_song": { + "artist": "Rupert Holmes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e1fa6ca-0201-4faa-523a-8ab8f8613f4c", + "path": "z://MP4\\Sing King Karaoke\\Rupert Holmes - Escape (The Pina Colada Song.mp4", + "title": "Escape (The Pina Colada Song)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Styx", + "playlist_title": "Babe", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "e5776d60-84e6-7aa4-bcd3-c59bbfc4c40b", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Babe (Karaoke & Lyrics) (2).mp4", + "title": "Babe" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "J.D.Souther", + "playlist_title": "You're Only Lonely", + "found_song": { + "artist": "J. D. Souther", + "disabled": false, + "favorite": false, + "guid": "7a84d28a-9e4b-c930-1ec1-a7d66ffa7690", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re Only Lonely - J. D. Souther.mp4", + "title": "You re Only Lonely" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Supertramp", + "playlist_title": "Take The Long Way Home", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f7e2ab9-6a08-1c7d-64ec-24c8c4d7e9d4", + "path": "z://MP4\\KaraokeOnVEVO\\Supertramp - Take The Long Way Home.mp4", + "title": "Take The Long Way Home" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Michael Jackson", + "playlist_title": "Rock With You", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "77be5301-0d2d-5a5f-d5ee-cfb1dafffebb", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - Rock With You (Karaoke & Lyrics) (2) (2).mp4", + "title": "Rock With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cliff Richard", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "b381b1bd-aa48-d186-8949-2f8a746b19dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Don t Talk Anymore - Cliff Richard.mp4", + "title": "We Don t Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Foreigner", + "playlist_title": "Head Games", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7258bb94-d489-f049-ed96-71be0e29614b", + "path": "z://CDG\\Various\\Foreigner - Head Games.mp3", + "title": "Head Games" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dr. Hook", + "playlist_title": "Better Love Next Time", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4aef2358-9035-be2e-d12d-5a07748da747", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Better Love Next Time.mp4", + "title": "Better Love Next Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Heartache Tonight", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "79b795f7-47d0-a1f8-ac27-d8d3a12729b1", + "path": "z://CDG\\Various\\Eagles - Heartache Tonight.mp3", + "title": "Heartache Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Loggins", + "playlist_title": "This Is It", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31aa53d2-6eed-bb08-67b3-e932001f7c6b", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Loggins - This Is It.mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Coward Of The County", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "c73cf52d-1498-50fc-008e-562ef6488714", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Coward Of The County (Karaoke Version).mp4", + "title": "Coward Of The County" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Don't Do Me Like That", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6bd1e0-c98e-e3af-b5e6-9b1f349ca329", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Dont Do Me Like That.mp4", + "title": "Don't Do Me Like That" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Barry Manilow", + "playlist_title": "Ships", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "901d4952-0094-028d-c937-bbc27bdc7f34", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - Ships.mp4", + "title": "Ships" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "ABBA", + "playlist_title": "Chiquitita", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "8810d678-17bc-554f-430a-ca0cfe9485b1", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Chiquitita (Karaoke Version).mp4", + "title": "Chiquitita" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "M", + "playlist_title": "Pop Muzik", + "found_song": { + "artist": "M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1373d3b-2c44-ae19-bf98-3e9a34982b3e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 828\\M - Pop Muzik - SFMW 828 -10.mp3", + "title": "Pop Muzik" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", + "path": "z://MP4\\Let's Sing Karaoke\\Warwick, Dionne - Deja Vu (Karaoke & Lyrics).mp4", + "title": "Deja Vu" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Sara", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f69d0f15-1f84-f687-4476-282e21d387b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Fleetwood Mac - Sara.mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Anne Murray", + "playlist_title": "Broken Hearted Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2c04d1a-be06-8a44-2693-84f1a8a01a4a", + "path": "z://MP4\\Sing King Karaoke\\Anne Murray - Broken Hearted Me.mp4", + "title": "Broken Hearted Me" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Blackfoot", + "playlist_title": "Train, Train", + "found_song": { + "artist": "Blackfoot", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5819a31b-6820-7998-3d50-fc2b200c774d", + "path": "z://MP4\\KaraokeOnVEVO\\Blackfoot - Train, Train.mp4", + "title": "Train, Train" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Sugarhill Gang", + "playlist_title": "Rapper's Delight", + "found_song": { + "artist": "Sugarhill Gang", + "disabled": false, + "favorite": false, + "guid": "a3d371e0-a965-81e1-57e6-798847e7b1be", + "path": "z://CDG\\Various\\Sugarhill Gang - Rapper's Delight.mp3", + "title": "Rapper's Delight" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Buggles", + "playlist_title": "Video Killed The Radio Star", + "found_song": { + "artist": "The Buggles", + "disabled": false, + "favorite": false, + "guid": "4fe59e34-ea75-1fc8-cfe3-d2c7448b4ee9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Video Killed The Radio Star - The Buggles.mp4", + "title": "Video Killed The Radio Star" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Donna Summer", + "playlist_title": "Dim All The Lights", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "63cca6f3-6806-ce7d-c1e5-5db2ee8faaab", + "path": "z://CDG\\Various\\Donna Summer - Dim All The Lights.mp3", + "title": "Dim All The Lights" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Suzi Quatro", + "playlist_title": "She's In Love With You", + "found_song": { + "artist": "Suzi Quatro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc27d180-78ac-884f-2c24-9c5bfce44bcf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Suzi Quatro - Shes In Love With You.mp4", + "title": "She's In Love With You" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "TUSK", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "78e334f0-551c-d74f-65e0-85f5a13d0a0b", + "path": "z://MP4\\KaraFun Karaoke\\Tusk - Fleetwood Mac Karaoke Version KaraFun.mp4", + "title": "Tusk" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Rainbow", + "playlist_title": "Since You Been Gone", + "found_song": { + "artist": "Rainbow", + "disabled": false, + "favorite": false, + "guid": "9d547c31-f4ca-4ecf-8635-231b09122a4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since You Been Gone - Rainbow.mp4", + "title": "Since You Been Gone" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Last Train To London", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "81ef8af7-7b4d-2f4e-064c-788c3fe92a5c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Train To London - Electric Light Orchestra.mp4", + "title": "Last Train To London" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Fool In The Rain", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "672eec1e-83a4-0f82-0986-62ab8a357a44", + "path": "z://CDG\\Various\\Led Zeppelin - Fool In The Rain.mp3", + "title": "Fool In The Rain" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Neil Diamond", + "playlist_title": "September Morn'", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "4e22fa17-d416-ad7a-c208-6973aaf736e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke September Morn - Neil Diamond.mp4", + "title": "September Morn" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Anne Murray", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b01144c-bf70-c7b8-08dc-ab6f1a68a288", + "path": "z://MP4\\VocalStarKaraoke\\Anne Murray - Daydream Believer.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Police", + "playlist_title": "Message In A Bottle", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "fad72290-cd6e-21f5-8ceb-66d61017bd3d", + "path": "z://MP4\\Sing King Karaoke\\The Police - Message In A Bottle (Karaoke Version).mp4", + "title": "Message In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pat Benatar", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "4d122c4d-b3fc-560d-f634-e4734ffaa916", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbreaker - Pat Benatar.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Longer", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "3844c7cd-be87-40d7-2ba3-f458dd4398af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longer - Dan Fogelberg.mp4", + "title": "Longer" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Shalamar", + "playlist_title": "The Second Time Around", + "found_song": { + "artist": "Shalamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b19ad48-d74f-6e94-fc01-fbd671e03f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Shalamar - The Second Time Around.mp4", + "title": "The Second Time Around" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Rod Stewart", + "playlist_title": "I Don't Want To Talk About It", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "f69a81ed-efc1-7428-80cb-399901dc4bda", + "path": "z://MP4\\Sing King Karaoke\\Rod Stewart - I Don't Want To Talk About It (Karaoke Version).mp4", + "title": "I Don't Want To Talk About It" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Dollar", + "playlist_title": "Shooting Star", + "found_song": { + "artist": "Dollar", + "disabled": false, + "favorite": false, + "guid": "8a85919b-9119-c59c-afd8-004d722f3313", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 914\\Dollar - Shooting Star - SFMW914 - 10.mp3", + "title": "Shooting Star" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Jimmy Buffett", + "playlist_title": "Volcano", + "found_song": { + "artist": "Jimmy Buffett", + "disabled": false, + "favorite": false, + "guid": "7705c23b-7112-f884-10f7-2fe1d0af0715", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Volcano - Jimmy Buffett.mp4", + "title": "Volcano" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kenny Rogers", + "playlist_title": "You Decorated My Life", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "2886776b-05ba-46b6-7d83-39375645cfbf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Decorated My Life - Kenny Rogers.mp4", + "title": "You Decorated My Life" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Blondie", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "afec49e9-b92f-2989-cb63-97958fdc0eb0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Blondie - Dreaming.mp4", + "title": "Dreaming" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Kc And The Sunshine Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95faa1ff-36cb-3a07-2817-fac39fef97d8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 832\\Kc And The Sunshine Band - Please Don't Go - SFMW 832 -07.mp3", + "title": "Please Don't Go" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Send One Your Love", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "db22bd5e-2945-eb7a-ffae-8ee19ee508d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Love - Stevie Wonder.mp4", + "title": "For Your Love" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Commodores", + "playlist_title": "Still", + "found_song": { + "artist": "The Commodores", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e988415e-e8ee-dd82-7147-d50fe0081cef", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Commodores - Still.mp4", + "title": "Still" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Captain & Tennille", + "playlist_title": "Do That To Me One More Time", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "guid": "4a428cb9-beee-0645-ab0e-5833189a7971", + "path": "z://MP4\\Let's Sing Karaoke\\Captain & Tennille - Do That To Me One More Time (Karaoke & Lyrics).mp4", + "title": "Do That To Me One More Time" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Barbra Streisand/Donna Summer", + "playlist_title": "No More Tears (Enough Is Enough)", + "found_song": { + "artist": "Barbra Streisand/Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfefff5f-9d94-c39d-754b-70d2722f3113", + "path": "z://MP4\\KaraokeOnVEVO\\Barbra StreisandDonna Summer - No More Tears (Enough Is Enough.mp4", + "title": "No More Tears (Enough Is Enough)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Ladies Night", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "71134192-c701-e10b-13cf-a6ca0b1e72ac", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ladies Night - Kool And The Gang.mp4", + "title": "Ladies Night" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Little River Band", + "playlist_title": "Cool Change", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "88ba8128-3224-7a6a-c0c2-aa68e30b720c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cool Change - Little River Band.mp4", + "title": "Cool Change" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Smokey Robinson", + "playlist_title": "Cruisin'", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Eagles", + "playlist_title": "The Long Run", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92e004ca-1212-5e50-1a33-45763c4fb0e1", + "path": "z://CDG\\Various\\Eagles - Long Run.mp3", + "title": "Long Run" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Jane", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "7e51306e-2ade-7620-7113-99a611e2f229", + "path": "z://CDG\\Various\\Jefferson Starship - Sara.mp3", + "title": "Sara" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Prince", + "playlist_title": "I Wanna Be Your Lover", + "found_song": { + "artist": "Måneskin", + "disabled": false, + "favorite": false, + "guid": "791c557a-c14d-f468-b820-bae1c1659798", + "path": "z://MP4\\KaraFun Karaoke\\I Wanna Be Your Slave - Måneskin Karaoke Version KaraFun.mp4", + "title": "I Wanna Be Your Slave" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Crystal Gayle", + "playlist_title": "Half The Way", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "e164229e-032a-7c3a-7d8a-725424fde5bd", + "path": "z://MP4\\KaraokeOnVEVO\\Crystal Gayle - I'll Get Over You (Karaoke).mp4", + "title": "I'll Get Over You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Wait For Me", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "The Alan Parsons Project", + "playlist_title": "Damned If I Do", + "found_song": { + "artist": "The Alan Parsons Project", + "disabled": false, + "favorite": false, + "guid": "d0d614f7-270e-0757-4bb6-b2d5739228d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Old And Wise - The Alan Parsons Project.mp4", + "title": "Old And Wise" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Pains", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "The O'Jays", + "playlist_title": "Forever Mine", + "found_song": { + "artist": "The O'Jays", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2546583f-af00-ed7d-18d9-31e633b126ce", + "path": "z://MP4\\ZoomKaraokeOfficial\\The OJays - Love Train.mp4", + "title": "Love Train" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Rita Coolidge", + "playlist_title": "I'd Rather Leave While I'm In Love", + "found_song": { + "artist": "Rita Colerid", + "disabled": false, + "favorite": false, + "guid": "8b9bb87b-0d9d-d54d-a45b-1ee37e02bc2c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF014\\Rita Colerid - I'd Rather Leave While I'm In Love - SF014 - 13.mp3", + "title": "I'd Rather Leave While I'm In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Kermit (Jim Henson)", + "playlist_title": "Rainbow Connection", + "found_song": { + "artist": "Kermit The Frog & Debbie Harry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "063fce94-6979-b286-0c2b-4cd035a344a0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kermit The Frog & Debbie Harry - Rainbow Connection.mp4", + "title": "Rainbow Connection" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Mistress", + "playlist_title": "Mistrusted Love", + "found_song": { + "artist": "Madness", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7b2581a-d92e-760c-2e96-ee89089f3d4b", + "path": "z://MP4\\KaraokeOnVEVO\\Madness - It Must Be Love.mp4", + "title": "It Must Be Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Santana", + "playlist_title": "You Know That I Love You", + "found_song": { + "artist": "Rihanna ft. Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2396f25a-8792-4f96-8008-c0e79c3cb38d", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna Featuring Ne-Yo - Hate That I Love You.mp4", + "title": "Hate That I Love You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Robert John", + "playlist_title": "Lonely Eyes", + "found_song": { + "artist": "Robert John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91f2c704-b141-117d-1aa0-447ddb293004", + "path": "z://MP4\\ZoomKaraokeOfficial\\Robert John - Sad Eyes.mp4", + "title": "Sad Eyes" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Cheap Trick", + "playlist_title": "Voices", + "found_song": { + "artist": "Cheap Trick", + "disabled": false, + "favorite": false, + "guid": "80e01d55-0f23-6d69-3593-3ee0f0429f43", + "path": "z://MP4\\Stingray Karaoke\\She's Tight in the style of Cheap Trick karaoke video.mp4", + "title": "She's Tight" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "John Stewart", + "playlist_title": "Lost Her In The Sun", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "589eda65-f578-c706-c712-5fc458df5307", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Stewart, Rod - Lost In You.mp3", + "title": "Lost In You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Commodores", + "playlist_title": "Wonderland", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4574aa75-220d-384c-0ece-06a09e4f1b68", + "path": "z://MP4\\Sing King Karaoke\\Commodores - Lady.mp4", + "title": "Lady" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Spinners", + "playlist_title": "Working My Way Back To You/Forgive Me, Girl", + "found_song": { + "artist": "The Spinners", + "disabled": false, + "favorite": false, + "guid": "d61baec2-6093-c93a-78cc-90819cf7c968", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working My Way Back To You Forgive Me Girl (LP version) - The Spinners.mp4", + "title": "Working My Way Back To You Forgive Me Girl (LP version)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Barry Manilow", + "playlist_title": "When I Wanted You", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "95372004-a9c7-4dd9-138f-8ba368ed9d56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When October Goes - Barry Manilow.mp4", + "title": "When October Goes" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Star", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab95b129-8e2b-7de8-1227-75713361334b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - September.mp4", + "title": "September" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Bonnie Pointer", + "playlist_title": "I Can't Help Myself (Sugar Pie, Honey Bunch)", + "found_song": { + "artist": "The Four Tops", + "disabled": false, + "favorite": false, + "guid": "0d82014f-96f7-5b7a-e3ca-3219f15903d4", + "path": "z://MP4\\KaraFun Karaoke\\The Four Tops - I Can't Help Myself (Sugar Pie, Honey Bunch).mp4", + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Jennifer Warnes", + "playlist_title": "Don't Make Me Over", + "found_song": { + "artist": "The Swinging Blue Jeans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e1ba8ff-2520-99d0-0b1a-9b1270aef338", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Swinging Blue Jeans - Dont Make Me Over.mp4", + "title": "Don't Make Me Over" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Switch", + "playlist_title": "I Call Your Name", + "found_song": { + "artist": "Beatles", + "disabled": false, + "favorite": false, + "guid": "8b60d683-b5dd-06f9-3c17-3483176694f1", + "path": "z://CDG\\Various\\Beatles - I Call Your Name.mp3", + "title": "I Call Your Name" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Billy Preston & Syreeta", + "playlist_title": "With You I'm Born Again", + "found_song": { + "artist": "Billy Preston", + "disabled": false, + "favorite": false, + "guid": "88bbb0b5-4e4b-f7d4-2d35-c12867a6be25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke With You I'm Born Again - Billy Preston.mp4", + "title": "With You I'm Born Again" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Village People", + "playlist_title": "Ready For The 80's", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "guid": "a9bcd05e-8569-a603-305b-8f395ab4f914", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF156\\Village People - Cant Stop The Music - SF156 - 09.mp3", + "title": "Cant Stop The Music" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Lauren Wood", + "playlist_title": "Please Don't Leave", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3675b624-6a69-6880-9d5f-c7c8212f1c0b", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Please Dont Leave Me.mp4", + "title": "Please Don't Leave Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 19, + "artist": "Pablo Cruise", + "title": "I Want You Tonight", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Isaac Hayes", + "title": "Don't Let Go", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Foghat", + "title": "Third Time Lucky (First Time I Was A Fool)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "John Cougar", + "title": "I Need A Lover", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Teri DeSario With K.C.", + "title": "Yes, I'm Ready", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Richie Furay", + "title": "I Still Have Dreams", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Herb Alpert", + "title": "Rotation", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Tom Johnston", + "title": "Savannah Nights", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Steve Forbert", + "title": "Romeo's Tune", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Rufus & Chaka", + "title": "Do You Love What You Feel", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Flying Lizards", + "title": "Money", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Bar-Kays", + "title": "Move Your Boogie Body", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Joyce Cobb", + "title": "Dig The Gold", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Styx", + "title": "Why Me", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Inmates", + "title": "Dirty Water", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Dirt Band", + "title": "An American Dream", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Dann Rogers", + "title": "Looks Like Love Again", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Pleasure", + "title": "Glide", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bonnie Raitt", + "title": "You're Gonna Get What's Coming", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Peter Brown", + "title": "Stargazer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Leif Garrett", + "title": "Memorize Your Number", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Robert Palmer", + "title": "Can We Still Be Friends", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Toto", + "title": "99", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Cugini", + "title": "Let Me Sleep Alone", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Lobo", + "title": "Holdin' On For Dear Love", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Chris Thompson & Night", + "title": "If You Remember Me", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Herb Alpert", + "title": "Rise", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Frank Mills", + "title": "Peter Piper", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 33, + "missing_count": 28, + "needs_manual_review": 33 + } + }, + { + "playlist_title": "1978 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chic", + "playlist_title": "Le Freak", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5abf394-6ffe-e92d-01ae-4f37994dd07d", + "path": "z://MP4\\Sing King Karaoke\\Chic - Le Freak.mp4", + "title": "Le Freak" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bee Gees", + "playlist_title": "Too Much Heaven", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "da4476fb-ab2f-b8e3-4925-72fef1b3d153", + "path": "z://CDG\\Various\\Bee Gees - Too Much Heaven.mp3", + "title": "Too Much Heaven" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Billy Joel", + "playlist_title": "My Life", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "275d0a4a-71ea-121a-8fe3-6776ad62624e", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - My Life.mp4", + "title": "My Life" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Dr. Hook", + "playlist_title": "Sharing The Night Together", + "found_song": { + "artist": "Dr. Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36213bb8-a127-1c6c-65d9-040c4d8019d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook - Sharing The Night Together.mp4", + "title": "Sharing The Night Together" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Toto", + "playlist_title": "Hold The Line", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "guid": "6a133bc5-c6b7-7174-48dd-040c1d50aadc", + "path": "z://MP4\\KaraFun Karaoke\\Hold the Line - Toto Karaoke Version KaraFun.mp4", + "title": "Hold the Line" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Ooh Baby Baby", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "6cafdf1d-b296-22b0-d6b4-d99251ec07c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ooh Baby Baby - Linda Ronstadt.mp4", + "title": "Ooh Baby Baby" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "MacArthur Park", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "87e8a086-df91-0b62-002b-c8f5767e7275", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke MacArthur Park - Donna Summer.mp4", + "title": "MacArthur Park" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "A Little More Love", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8cd8197-d049-dfd5-bddd-c6e7edfc13ac", + "path": "z://MP4\\ZoomKaraokeOfficial\\Olivia Newton-John - A Little More Love.mp4", + "title": "A Little More Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79ac7b14-6c5b-51d8-b2c0-4167170b196d", + "path": "z://MP4\\KaraokeOnVEVO\\Eagles - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chaka Khan", + "playlist_title": "I'm Every Woman", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3e15c32-5c21-48bb-919f-bcd0ad3c9646", + "path": "z://MP4\\KaraokeOnVEVO\\Chaka Khan - Im Every Woman.mp4", + "title": "I'm Every Woman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hot Chocolate", + "playlist_title": "Every 1's A Winner", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f527d7-c2cb-ccb7-3728-cadeef862586", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hot Chocolate - Every 1s A Winner.mp4", + "title": "Every 1's A Winner" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Nicolette Larson", + "playlist_title": "Lotta Love", + "found_song": { + "artist": "Nicolette Larson", + "disabled": false, + "favorite": false, + "guid": "505ea347-37d6-5e3c-eaba-f574f07793bd", + "path": "z://MP4\\Let's Sing Karaoke\\Nicolette Larson - Lotta Love (Karaoke & Lyrics).mp4", + "title": "Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fire", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Ambrosia", + "playlist_title": "How Much I Feel", + "found_song": { + "artist": "Ambrosia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a00fe174-4288-9df4-5721-d142c87bf1d7", + "path": "z://CDG\\Various\\Ambrosia - How Much I Feel.mp3", + "title": "How Much I Feel" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Heart", + "playlist_title": "Straight On", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "b3d7d263-1f91-d616-52b1-8c88b2c67029", + "path": "z://MP4\\Let's Sing Karaoke\\Heart - Straight On (Karaoke & Lyrics).mp4", + "title": "Straight On" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Elton John", + "playlist_title": "Part-Time Love", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e68df877-4e49-fde4-499d-9c8a53d1c3a0", + "path": "z://MP4\\singsongsmusic\\Part Time Love - Karaoke HD (In the style of Elton John).mp4", + "title": "Part Time Love" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Boston", + "playlist_title": "A Man I'll Never Be", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf991361-0b07-6665-1731-c2a64c7c9421", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - A Man Ill Never Be.mp4", + "title": "A Man I'll Never Be" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kenny Rogers", + "playlist_title": "The Gambler", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "ee3113cf-c1d5-3888-9389-7600a7ad05b2", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - The Gambler (Karaoke Version).mp4", + "title": "The Gambler" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Talking Heads", + "playlist_title": "Take Me To The River", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "guid": "50660a60-f2c6-5a7e-63dd-3dcf062fb327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take Me To The River - Talking Heads.mp4", + "title": "Take Me To The River" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Rod Stewart", + "playlist_title": "Da Ya Think I'm Sexy?", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "90e9c708-1024-642c-be4d-721aea09f6e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Da Ya Think I m Sexy - Rod Stewart.mp4", + "title": "Da Ya Think I m Sexy" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Melissa Manchester", + "playlist_title": "Don't Cry Out Loud", + "found_song": { + "artist": "Melissa Manchester", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e708b1d-9ba8-5366-e8ac-bd53f596648c", + "path": "z://MP4\\Sing King Karaoke\\Melissa Manchester - Dont Cry Out Loud.mp4", + "title": "Don't Cry Out Loud" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Rick James", + "playlist_title": "Mary Jane", + "found_song": { + "artist": "Rick James", + "disabled": false, + "favorite": false, + "guid": "e67697f0-a082-ca0f-eccd-e26e4c958fbf", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Rick James - Mary Jane (Karaoke) (Vocal Reduction).mp4", + "title": "Mary Jane" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cheryl Lynn", + "playlist_title": "Got To Be Real", + "found_song": { + "artist": "Cheryl Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6718ef7a-9a9e-ab1e-6c7e-27a2e5f8002f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Cheryl Lynn - Got To Be Real - SFMW 827 -06.mp3", + "title": "Got To Be Real" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Meat Loaf", + "playlist_title": "You Took The Words Right Out Of My Mouth", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f99a7346-bc91-20e1-41e2-18c411eaf937", + "path": "z://MP4\\KaraokeOnVEVO\\Meat Loaf - You Took The Words Right Out Of My Mouth.mp4", + "title": "You Took The Words Right Out Of My Mouth" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Foreigner", + "playlist_title": "Double Vision", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "800c3280-2836-7d6d-07d7-203d3a615eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Double Vision - Foreigner.mp4", + "title": "Double Vision" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rose Royce", + "playlist_title": "Love Don't Live Here Anymore", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4e9ed-bc20-0d23-3395-035e771618bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Rose Royce - Love Don't Live Here Anymore - SF103 - 09.mp3", + "title": "Love Don't Live Here Anymore" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blues Brothers", + "playlist_title": "Soul Man", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a743b8a-d4d8-016b-7bb1-a3c4780c2c7d", + "path": "z://MP4\\VocalStarKaraoke\\Blues Brothers - Soul Man.mp4", + "title": "Soul Man" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry Manilow", + "playlist_title": "Somewhere In The Night", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Player", + "playlist_title": "Silver Lining", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecb1a978-5fb4-35bf-6661-4944a4e1ad3a", + "path": "z://MP4\\Sing King Karaoke\\Player - Silver Lining.mp4", + "title": "Silver Lining" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Lindisfarne", + "playlist_title": "Run For Home", + "found_song": { + "artist": "Lindisfarne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6112c2f6-7457-ac92-06fa-296240373cbb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lindisfarne - Run For Home.mp4", + "title": "Run For Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Foreigner", + "playlist_title": "Blue Morning, Blue Day", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "756f7e22-64f9-3d9f-230b-d5e10b412f7c", + "path": "z://CDG\\Various\\Foreigner - Blue Morning Blue Day.mp3", + "title": "Blue Morning Blue Day" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Marshall Hain", + "playlist_title": "Dancing In The City", + "found_song": { + "artist": "Marshall Hain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eed99ea4-59f0-b12b-918e-a8e6f69172c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 872\\Marshall Hain - Dancing In The City - SFMW 872 -04.mp3", + "title": "Dancing In The City" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Justin Hayward", + "playlist_title": "Forever Autumn", + "found_song": { + "artist": "Justin Hayward", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e938e55e-b53a-d088-e296-093c39df04ea", + "path": "z://MP4\\KaraokeOnVEVO\\Justin Hayward - Forever Autumn.mp4", + "title": "Forever Autumn" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Bobby Caldwell", + "playlist_title": "What You Won't Do For Love", + "found_song": { + "artist": "Bobby Caldwell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bedb2d91-5207-c23f-0a1b-a1aa182f797c", + "path": "z://MP4\\Sing King Karaoke\\Bobby Caldwell - What You Wont Do For Love.mp4", + "title": "What You Won't Do For Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "This Moment In Time", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "18bbb746-6ffb-f3ad-b9ee-6e7237731596", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Moment In Time - Engelbert Humperdinck.mp4", + "title": "This Moment In Time" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boney M", + "playlist_title": "Mary's Boy Child/Oh My Lord", + "found_song": { + "artist": "Boney M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8393e23-f04d-2bb6-112e-a76ea3bc5f60", + "path": "z://MP4\\ZoomKaraokeOfficial\\Boney M - Marys Boy Child (Oh My Lord).mp4", + "title": "Mary's Boy Child (Oh My Lord)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Anne Murray", + "playlist_title": "You Needed Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "guid": "6cc719e4-1d60-e6dc-9418-d84c240396ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Needed Me - Anne Murray.mp4", + "title": "You Needed Me" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Nick Gilder", + "playlist_title": "Hot Child In The City", + "found_song": { + "artist": "Nick Gilder", + "disabled": false, + "favorite": false, + "guid": "e3a54ad4-5464-8d5c-f6c9-fdcf50da58f8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hot Child In The City - Nick Gilder.mp4", + "title": "Hot Child In The City" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Barbra Streisand & Neil Diamond", + "playlist_title": "You Don't Bring Me Flowers", + "found_song": { + "artist": "Barbra Streis ft. Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d758763b-1511-9ad9-a7ca-e7bd5bc797bf", + "path": "z://MP4\\KaraokeOnVEVO\\Barbra Streisand & Neil Diamond - You Dont Bring Me Flowers.mp4", + "title": "You Don't Bring Me Flowers" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Alicia Bridges", + "playlist_title": "I Love The Nightlife (Disco 'Round)", + "found_song": { + "artist": "Alicia Bridges", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bb7ba372-c1ac-b004-c2da-85c5476aa7e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alicia Bridges - I Love The Night Life (Disco Round).mp4", + "title": "I Love The Night Life (Disco Round)" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Andy Gibb", + "playlist_title": "(Our Love) Don't Throw It All Away", + "found_song": { + "artist": "Gary Benson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c304e2e-b9ad-81b3-6967-391d9741faf5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gary Benson - Dont Throw It All Away.mp4", + "title": "Don't Throw It All Away" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Alice Cooper", + "playlist_title": "How You Gonna See Me Now", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0265c21e-8db3-fc7d-2e14-63d9f705df27", + "path": "z://CDG\\Various\\Alice Cooper - You And Me.mp3", + "title": "You And Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Eric Clapton And His Band", + "playlist_title": "Promises", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "guid": "06d0aff2-2284-a350-5b7b-3c7a8ccb3166", + "path": "z://MP4\\Let's Sing Karaoke\\Clapton, Eric - Promises (Karaoke & Lyrics).mp4", + "title": "Promises" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Firefall", + "playlist_title": "Strange Way", + "found_song": { + "artist": "Cream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae788d94-2cd9-ed96-80ca-76d1bdd9aba1", + "path": "z://MP4\\VocalStarKaraoke\\Cream - Strange Brew.mp4", + "title": "Strange Brew" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Bob Seger & The Silver Bullet Band", + "playlist_title": "We've Got Tonight", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "3c86c402-a3d1-6417-406b-c542f9fa6735", + "path": "z://CDG\\Various\\Bob Seger - We've Got Tonight.mp3", + "title": "We've Got Tonight" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "September", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab95b129-8e2b-7de8-1227-75713361334b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - September.mp4", + "title": "September" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Ace Frehley", + "playlist_title": "New York Groove", + "found_song": { + "artist": "Hello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2d20a41-946f-cb3a-2faa-9091acf07076", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hello - New York Groove.mp4", + "title": "New York Groove" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Queen", + "playlist_title": "Bicycle Race/Fat Bottomed Girls", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "72634af2-46a7-deba-6d54-666ba5e54ed9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fat Bottomed Girls - Queen.mp4", + "title": "Fat Bottomed Girls" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Leif Garrett", + "playlist_title": "I Was Made For Dancin'", + "found_song": { + "artist": "Leif Garrett", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86abe258-91bd-7dd9-a7d2-ed34a8aafee9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leif Garrett - I Was Made For Dancing.mp4", + "title": "I Was Made For Dancing" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Chanson", + "playlist_title": "Don't Hold Back", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "guid": "ccb5506b-904c-b90d-4cb7-74e904594b8a", + "path": "z://MP4\\KaraFun Karaoke\\Don't Look Back - Boston Karaoke Version KaraFun.mp4", + "title": "Don't Look Back" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Dan Hartman", + "playlist_title": "Instant Replay", + "found_song": { + "artist": "Dan Hartman", + "disabled": false, + "favorite": false, + "guid": "c83cad2a-8d77-6bb4-6b8b-05476050864b", + "path": "z://MP4\\KaraFun Karaoke\\I Can Dream About You - Dan Hartman Karaoke Version KaraFun.mp4", + "title": "I Can Dream About You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Livingston Taylor", + "playlist_title": "I Will Be In Love With You", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "bd06d2f1-a2b7-d569-d34e-490fa4e41fd5", + "path": "z://MP4\\Let's Sing Karaoke\\Paul, Sean - I'm Still In Love With You (Karaoke & Lyrics).mp4", + "title": "I'm Still In Love With You" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "The Cars", + "playlist_title": "My Best Friend's Girl", + "found_song": { + "artist": "Cars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a7ad90-5359-6146-6317-22e865aa8291", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 808\\Cars - My Best Friends Girl - SFMW 808 -09.mp3", + "title": "My Best Friends Girl" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The J. Geils Band", + "playlist_title": "One Last Kiss", + "found_song": { + "artist": "J Geils Band", + "disabled": false, + "favorite": false, + "guid": "cfe2c910-6d85-7cd3-aeb5-8ddb6a76a584", + "path": "z://CDG\\Various\\J Geils Band - One Last Kiss.mp3", + "title": "One Last Kiss" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Exile", + "playlist_title": "You Thrill Me", + "found_song": { + "artist": "Exile", + "disabled": false, + "favorite": false, + "guid": "467e2ab9-ba47-aaa9-93cf-a6cc536a1c94", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kiss You All Over - Exile.mp4", + "title": "Kiss You All Over" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Gene Simmons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Shattered", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "d13740e3-e6ce-0344-7bf6-1739797be372", + "path": "z://MP4\\The Rolling Stones - Angie.mp4", + "title": "Angie" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Captain & Tennille", + "playlist_title": "You Need A Woman Tonight", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "baa322e9-6861-69a6-eb7f-d787be12d253", + "path": "z://MP4\\KaraokeOnVEVO\\Captain & Tennille - You Need A Woman Tonight.mp4", + "title": "You Need A Woman Tonight" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Chicago", + "playlist_title": "Alive Again", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "e794f4cc-cb52-6d27-7e23-94bfec345bd6", + "path": "z://CDG\\Various\\Chicago - I'm A Man.mp3", + "title": "I'm A Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Kenny Loggins", + "playlist_title": "Easy Driver", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "guid": "50247e77-1a4c-e386-1a9d-6e322dbd63f6", + "path": "z://MP4\\Stingray Karaoke\\Forever Kenny Loggins Karaoke with Lyrics.mp4", + "title": "Forever" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Fotomaker", + "playlist_title": "Miles Away", + "found_song": { + "artist": "Winger", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0b8442-d996-b273-6e79-3a2ab336ca71", + "path": "z://MP4\\KaraokeOnVEVO\\Winger - Miles Away.mp4", + "title": "Miles Away" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "I Don't Wanna Lose You", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Light The Sky On Fire", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "36b70452-8332-7fd3-3bab-7fa7e6a2705f", + "path": "z://CDG\\Various\\Jefferson Starship - Count On Me.mp3", + "title": "Count On Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Carpenters", + "playlist_title": "I Believe You", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "7ef813b2-8828-3c09-b2d7-c3e8bac48129", + "path": "z://MP4\\Let's Sing Karaoke\\Carpenters - Close To You (Karaoke & Lyrics).mp4", + "title": "Close To You" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Santana", + "playlist_title": "Well All Right", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5acacbe7-d757-4baa-c5ef-74b151e1cc55", + "path": "z://MP4\\King of Karaoke\\Ariana Grande - Be Alright - King of Karaoke.mp4", + "title": "Be Alright" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "John Paul Young", + "playlist_title": "Lost In Your Love", + "found_song": { + "artist": "John Paul Young", + "disabled": false, + "favorite": false, + "guid": "fa629714-7115-3881-3b73-52640e6e0abb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF098\\John Paul Young - Love Is In The Air - SF098 - 11.mp3", + "title": "Love Is In The Air" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Peaches & Herb", + "playlist_title": "Shake Your Groove Thing", + "found_song": { + "artist": "Peaches And Herb", + "disabled": false, + "favorite": false, + "guid": "70d7b36c-bc4a-4d37-6f1f-13c7bd5fe397", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake Your Groove Thing - Peaches And Herb.mp4", + "title": "Shake Your Groove Thing" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Eddie Money", + "playlist_title": "You've Really Got A Hold On Me", + "found_song": { + "artist": "The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb557a16-ff82-f35d-85d6-96013b86c6db", + "path": "z://MP4\\KaraokeOnVEVO\\The Miracles - Youve Really Got A Hold On Me.mp4", + "title": "You've Really Got A Hold On Me" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Faith Band", + "playlist_title": "Dancin' Shoes", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "d8f04891-64e6-785d-cb67-92f6f5b643dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancing Shoes - Cliff Richard.mp4", + "title": "Dancing Shoes" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "Who Do Ya Love", + "found_song": { + "artist": "KC And The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "f4b5a6d5-4622-9e96-9856-b1c2e45b83aa", + "path": "z://MP4\\Stingray Karaoke\\Get Down Tonight KC And The Sunshine Band Karaoke with Lyrics.mp4", + "title": "Get Down Tonight" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Dobie Gray", + "playlist_title": "You Can Do It", + "found_song": { + "artist": "Eddie Rabbit & Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "8323d837-69e8-69c5-1c12-41e83ba29984", + "path": "z://MP4\\Let's Sing Karaoke\\Rabbit, Eddie & Crystal Gayle - You And I (Karaoke & Lyrics).mp4", + "title": "You And I" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Eric Carmen", + "playlist_title": "Change Of Heart", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ac5b018-10b8-6ad6-254e-ad2e13d8c878", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Change Of Heart.mp4", + "title": "Change Of Heart" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Stephen Bishop", + "playlist_title": "Animal House", + "found_song": { + "artist": "Stephen Bishop", + "disabled": false, + "favorite": false, + "guid": "3418137d-7695-4b3d-e065-0d7e66b91f24", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On And On - Stephen Bishop.mp4", + "title": "On And On" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Moment By Moment", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "The Blend", + "playlist_title": "I'm Gonna Make You Love Me", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "7d886435-7d73-e429-1d06-63e10f534ebf", + "path": "z://MP4\\Karaoke Sing Sing\\Adele - I Can't Make You Love Me (Karaoke Version) (2).mp4", + "title": "I Can't Make You Love Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Glen Campbell", + "playlist_title": "Can You Fool", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a2e3408-95da-958c-d94d-c8974327e41a", + "path": "z://MP4\\KaraokeOnVEVO\\Glen Campbell - I Have You.mp4", + "title": "I Have You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Pablo Cruise", + "playlist_title": "Don't Want To Live Without It", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "dce57fcb-850f-578c-90dc-829a5575a01e", + "path": "z://CDG\\Various\\Foreigner - I Don't Want To Live Without You.mp3", + "title": "I Don't Want To Live Without You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Barry Manilow", + "playlist_title": "Ready To Take A Chance Again", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71decf95-207c-8817-2479-24187f50d6d0", + "path": "z://MP4\\VocalStarKaraoke\\Barry Manilow - Trying To Get The Feeling Again.mp4", + "title": "Trying To Get The Feeling Again" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Jimmy Buffett", + "playlist_title": "Ma??�ana", + "found_song": { + "artist": "Jimmy Buffett", + "disabled": false, + "favorite": false, + "guid": "7705c23b-7112-f884-10f7-2fe1d0af0715", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Volcano - Jimmy Buffett.mp4", + "title": "Volcano" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Gino Vannelli", + "title": "I Just Wanna Stop", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Al Stewart", + "title": "Time Passages", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Paul Davis", + "title": "Sweet Life", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ian Matthews", + "title": "Shake It", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Gerry Rafferty", + "title": "Home And Dry", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Paul Stanley", + "title": "Hold Me, Touch Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cooper Brothers", + "title": "The Dream Never Dies", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dan Fogelberg/Tim Weisberg", + "title": "The Power Of Gold", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Dolly Parton", + "title": "Baby I'm Burnin'", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Musique", + "title": "In The Bush", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Barry White", + "title": "Your Sweetness Is My Weakness", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Nigel Olsson", + "title": "Dancin' Shoes", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Don Ray", + "title": "Got To Have Loving", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Chicago", + "title": "No Tell Lover", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Switch", + "title": "There'll Never Be", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Bonnie Pointer", + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "John Davis And The Monster Orchestra", + "title": "Ain't That Enough For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Raes", + "title": "A Little Lovin' (Keeps The Doctor Away)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Captain & Tennille", + "title": "You Never Done It Like That", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 41, + "missing_count": 19, + "needs_manual_review": 41 + } + }, + { + "playlist_title": "1977 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bee Gees", + "playlist_title": "How Deep Is Your Love", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "4f0637db-e2d1-7cee-448f-f8d79564d859", + "path": "z://MP4\\Sing King Karaoke\\Bee Gees - How Deep Is Your Love (Karaoke Version).mp4", + "title": "How Deep Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Debby Boone", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "Debby Boone", + "disabled": false, + "favorite": false, + "guid": "b7162a5a-6c18-b06f-84dd-3dcc8af0e8f1", + "path": "z://MP4\\Sing King Karaoke\\Debby Boone - You Light Up My Life (Karaoke Version).mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Blue Bayou", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "4c8c6465-0756-34f1-3b89-7726e3c143a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Bayou - Linda Ronstadt.mp4", + "title": "Blue Bayou" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LTD", + "playlist_title": "(Every Time I Turn Around) Back In Love Again", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "f671125e-b3b8-826e-827a-8193a987bd8f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Every Time I Turn Around) Back in Love Again - LTD.mp4", + "title": "(Every Time I Turn Around) Back in Love Again" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "It's So Easy", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636124b2-b054-a436-e941-ac48b66b9365", + "path": "z://MP4\\KaraokeOnVEVO\\Linda Ronstadt - Its So Easy.mp4", + "title": "It's So Easy" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Player", + "playlist_title": "Baby Come Back", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "guid": "70eb27a8-6ace-2ab2-bd9d-021cc9640cc4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby Come Back - Player.mp4", + "title": "Baby Come Back" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Crystal Gayle", + "playlist_title": "Don't It Make My Brown Eyes Blue", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "526f20e1-f00e-7071-55f4-37b1e70f53a2", + "path": "z://MP4\\Stingray Karaoke\\Don't It Make My Brown Eyes Blue in the Style of Crystal Gayle karaoke with lyrics (no lead vocal).mp4", + "title": "Don't It Make My Brown Eyes Blue" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Dolly Parton", + "playlist_title": "Here You Come Again", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "b1db8473-37a0-8602-ebfc-1fe173cfd7b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here You Come Again - Dolly Parton.mp4", + "title": "Here You Come Again" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bob Welch", + "playlist_title": "Sentimental Lady", + "found_song": { + "artist": "Bob Welch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d358d001-5e78-351e-7b27-0220588d5cfd", + "path": "z://MP4\\KaraokeOnVEVO\\Bob Welch - Sentimental Lady.mp4", + "title": "Sentimental Lady" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Paul Simon", + "playlist_title": "Slip Slidin' Away", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50fcb524-0101-658e-7f0a-e353d59c0211", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Simon - Slip Slidin Away.mp4", + "title": "Slip Slidin' Away" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Styx", + "playlist_title": "Come Sail Away", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "2ba66c42-8545-2089-5ef7-0ddccb6fdcee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Sail Away - Styx.mp4", + "title": "Come Sail Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rita Coolidge", + "playlist_title": "We're All Alone", + "found_song": { + "artist": "Rita Coolidge", + "disabled": false, + "favorite": false, + "guid": "8372f7c0-5b6b-02cb-1264-43c9b94b9f06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We're All Alone - Rita Coolidge.mp4", + "title": "We're All Alone" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "You Make Loving Fun", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "b7566a6f-8ba1-4a76-8d4b-4a9d33927a72", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Loving Fun - Fleetwood Mac.mp4", + "title": "You Make Loving Fun" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Elvis Presley", + "playlist_title": "My Way", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "65abe184-84e4-f78e-ed48-97a95bc649ee", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - My Way (Karaoke).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Paul Davis", + "playlist_title": "I Go Crazy", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "9c2a06d5-1dfe-ff6c-dae0-c320314bba9f", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - I Go Crazy (Karaoke & Lyrics).mp4", + "title": "I Go Crazy" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Turn To Stone", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37d84af4-571d-4673-2f05-0fea7aaed7d1", + "path": "z://MP4\\KaraokeOnVEVO\\Electric Light Orchestra - Turn To Stone.mp4", + "title": "Turn To Stone" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "a028fc8c-aaed-7099-65a4-c3feae1b866b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just The Way You Are - Billy Joel.mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chic", + "playlist_title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "guid": "b67a9986-8618-0d01-9b24-3bf97ba77f12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance Dance Dance (Yowsah Yowsah Yowsah) - Chic.mp4", + "title": "Dance Dance Dance (Yowsah Yowsah Yowsah)" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Andy Gibb", + "playlist_title": "(Love Is) Thicker Than Water", + "found_song": { + "artist": "Andy Gibb", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e749fe4e-13e0-3412-fab5-6fc4507a336f", + "path": "z://CDG\\Various\\Andy Gibb - Love Is Thicker Than Water.mp3", + "title": "Love Is Thicker Than Water" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Odyssey", + "playlist_title": "Native New Yorker", + "found_song": { + "artist": "Odyssey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f08a3f5c-fdf4-caad-d7e9-5bae73766788", + "path": "z://MP4\\ZoomKaraokeOfficial\\Odyssey - Native New Yorker.mp4", + "title": "Native New Yorker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Bee Gees", + "playlist_title": "Stayin' Alive", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "dd62403e-a847-308b-4ad2-9a3a7124bbd3", + "path": "z://CDG\\Various\\Bee Gees - Stayin' Alive.mp3", + "title": "Stayin' Alive" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dan Hill", + "playlist_title": "Sometimes When We Touch", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "guid": "9fd9c589-00e3-9984-173d-85387a2f662c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sometimes When We Touch - Dan Hill.mp4", + "title": "Sometimes When We Touch" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Steely Dan", + "playlist_title": "Peg", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ce648556-ffce-67de-b533-8e0b90317f6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Peg - Steely Dan.mp4", + "title": "Peg" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Heatwave", + "playlist_title": "Boogie Nights", + "found_song": { + "artist": "Heatwave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79744d57-d741-857f-8751-cd3265886d0d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heatwave - Boogie Nights.mp4", + "title": "Boogie Nights" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Bill Withers", + "playlist_title": "Lovely Day", + "found_song": { + "artist": "Bill Withers", + "disabled": false, + "favorite": false, + "guid": "d6890dcb-ce4d-e30c-1c8a-6b8dfacf7d06", + "path": "z://MP4\\Sing King Karaoke\\Bill Withers - Lovely Day (Karaoke Version).mp4", + "title": "Lovely Day" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Stevie Wonder", + "playlist_title": "As", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f74b5080-7ce5-2616-ca02-0339a5a26db6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke As - Stevie Wonder.mp4", + "title": "As" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "What's Your Name", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "guid": "f9f528cc-69c2-9d3a-2bcd-5109ac51431a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s Your Name - Lynyrd Skynyrd.mp4", + "title": "What s Your Name" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Santana", + "playlist_title": "She's Not There", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be610af8-e508-6958-4db2-8adbea575f79", + "path": "z://CDG\\SBI\\SBI-01\\SB03802 - Santana - She's Not There.mp3", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry White", + "playlist_title": "It's Ecstasy When You Lay Down Next To Me", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "b846ba3a-fca6-cdfc-0430-93a0368cd4e8", + "path": "z://CDG\\Various\\Barry White - It's Ecstasy When You Lay Down Next To Me.mp3", + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Foreigner", + "playlist_title": "Long, Long Way From Home", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d86def2-f95c-3ca7-8422-e5ed6c0fac99", + "path": "z://CDG\\Various\\Foreigner - Long, Long Way From Home.mp3", + "title": "Long, Long Way From Home" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Dave Mason", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Dave Mason", + "disabled": false, + "favorite": false, + "guid": "d095d90e-073c-a972-fcff-3b630ce9e868", + "path": "z://MP4\\KaraFun Karaoke\\We Just Disagree - Dave Mason Karaoke Version KaraFun.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carly Simon", + "playlist_title": "Nobody Does It Better", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7423bad7-0939-92ea-3dcf-d88310f3332d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Carly Simon - Nobody Does It Better - SFMW 850 -05.mp3", + "title": "Nobody Does It Better" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Judy Collins", + "playlist_title": "Send In The Clowns", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "773719a8-c788-88d8-0964-23c6d91da9bd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Send In The Clowns.mp4", + "title": "Send In The Clowns" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Donna Summer", + "playlist_title": "I Feel Love", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c7a93ca-ea8b-202e-6a8a-dba0e4db5e67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - I Feel Love.mp4", + "title": "I Feel Love" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Breakdown", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cc1b489-631b-c2e1-31f3-2f9d71eb04ab", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Breakdown.mp4", + "title": "Breakdown" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "I Honestly Love You", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "fdad03b1-2a92-51aa-5b8b-6a875299f8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Honestly Love You - Olivia Newton-John.mp4", + "title": "I Honestly Love You" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "ABBA", + "playlist_title": "The Name Of The Game", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "06c83cf6-f390-a3c6-3c40-c9bf4a73af6a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Name Of The Game (Karaoke Version).mp4", + "title": "The Name Of The Game" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "What A Difference You've Made In My Life", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84b6eb3c-c81c-b847-ecc5-5111f1dbb3e6", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - What A Difference You've Made In My Life.mp4", + "title": "What A Difference You've Made In My Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Aerosmith", + "playlist_title": "Draw The Line", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1691dd1f-4c7e-8cc7-700d-d9f227f7ae5d", + "path": "z://CDG\\Various\\Aerosmith - Draw The Line.mp3", + "title": "Draw The Line" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Tavares", + "playlist_title": "More Than A Woman", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f643a20-8c1c-407e-144c-2b58966ae6a2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tavares - More Than A Woman.mp4", + "title": "More Than A Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Rod Stewart", + "playlist_title": "You're In My Heart (The Final Acclaim)", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "2f83dcc4-06af-0a76-7396-e9ddc07a766d", + "path": "z://MP4\\KtvEntertainment\\Rod Stewart - You're In My Heart (Karaoke without Vocal).mp4", + "title": "You're In My Heart" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "Swingtown", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cbb89f1-0b1e-0a21-455e-a921fb53329a", + "path": "z://MP4\\VocalStarKaraoke\\The Steve Miller Band - The Joker.mp4", + "title": "The Joker" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You/We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a7eb1c74-5d02-ff6d-edbb-e767359d9885", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Will Rock You We Are The Champions (Live) - Queen.mp4", + "title": "We Will Rock You We Are The Champions (Live)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Leif Garrett", + "playlist_title": "Runaround Sue", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "ff4a2c79-c0ec-bb68-bc59-35343cebb706", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Runaround Sue - Dion.mp4", + "title": "Runaround Sue" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Serpentine Fire", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab95b129-8e2b-7de8-1227-75713361334b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - September.mp4", + "title": "September" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Bay City Rollers", + "playlist_title": "The Way I Feel Tonight", + "found_song": { + "artist": "Bay City Rollers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859fe149-5fb9-1127-6c50-b2f5e17dfe02", + "path": "z://MP4\\KaraokeOnVEVO\\Bay City Rollers - Saturday Night.mp4", + "title": "Saturday Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Diana Ross", + "playlist_title": "Gettin' Ready For Love", + "found_song": { + "artist": "Martha & The Vandellas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "586a6bd2-987a-0e3c-88bf-9403a4a2ff41", + "path": "z://MP4\\KaraokeOnVEVO\\Martha & The Vandellas - Im Ready For Love.mp4", + "title": "I'm Ready For Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Santa Esmeralda Starring Leroy Gomez", + "playlist_title": "Don't Let Me Be Misunderstood", + "found_song": { + "artist": "Santa Esmeralda", + "disabled": false, + "favorite": false, + "guid": "fd1dd96f-6dc8-8b3a-f7b2-7be88a532669", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Misunderstood - Santa Esmeralda.mp4", + "title": "Don t Let Me Be Misunderstood" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Neil Diamond", + "playlist_title": "Desir??�e", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eba88b1-37b1-f7c7-8d21-a76debb6397c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Desiree.mp4", + "title": "Desiree" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "James Taylor", + "playlist_title": "Your Smiling Face", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "ae39f501-c5f1-9038-4ce9-586d5f5a252f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Copperline - James Taylor.mp4", + "title": "Copperline" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Donny & Marie Osmond", + "playlist_title": "(You're My) Soul And Inspiration", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "f2c7fffb-6b05-2108-b60f-1fc2eb91582b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You re My) Soul And Inspiration - The Righteous Brothers.mp4", + "title": "(You re My) Soul And Inspiration" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Commodores", + "playlist_title": "Too Hot Ta Trot", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "e99e217f-4a21-b901-21a7-a414559ca3ec", + "path": "z://CDG\\Various\\Commodores - Too Hot To Trot.mp3", + "title": "Too Hot To Trot" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Carpenters", + "playlist_title": "Calling Occupants Of Interplanetary Craft", + "found_song": { + "artist": "The Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41511a87-3617-83df-d78b-e86cacf34ead", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Carpenters - Calling Occupants Of Interplanetary Craft.mp4", + "title": "Calling Occupants Of Interplanetary Craft" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Al Martino", + "playlist_title": "The Next Hundred Years", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4e6c101-67a1-7f79-34fb-a8ac5582e877", + "path": "z://MP4\\ZoomKaraokeOfficial\\Al Martino - Here In My Heart.mp4", + "title": "Here In My Heart" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Leo Sayer", + "playlist_title": "Easy To Love", + "found_song": { + "artist": "Leo Sayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2aac79a-feb5-1aeb-51e5-a5b6d85e7f50", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leo Sayer - How Much Love.mp4", + "title": "How Much Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Sammy Hagar", + "playlist_title": "You Make Me Crazy", + "found_song": { + "artist": "Avicii ft. Salem Al Fakir", + "disabled": false, + "favorite": false, + "guid": "a848878d-9a2b-b915-d52a-b63985ea1dba", + "path": "z://MP4\\singsongsmusic\\You Make me - Karaoke HD (In the style of Avicii & Salem Al Fakir).mp4", + "title": "You Make me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Sylvers", + "playlist_title": "Any Way You Want Me", + "found_song": { + "artist": "The Troggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88970dc3-bee6-fb59-df0c-adef9f248010", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Troggs - Any Way That You Want Me.mp4", + "title": "Any Way That You Want Me" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Sweet Music Man", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "e742aa78-cbd0-49f0-bc72-ee9246405fd5", + "path": "z://CDG\\Various\\Kenny Rogers - Something Burning.mp3", + "title": "Something Burning" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Marilyn Scott", + "playlist_title": "God Only Knows", + "found_song": { + "artist": "MKTO", + "disabled": false, + "favorite": false, + "guid": "1d8dc04b-212c-4932-3a70-5268e29434b8", + "path": "z://CDG\\Big Hits Karaoke\\BHK049\\BHK049-07 - MKTO - God Only Knows.mp3", + "title": "God Only Knows" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Donna Summer", + "playlist_title": "I Love You", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c7a93ca-ea8b-202e-6a8a-dba0e4db5e67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - I Feel Love.mp4", + "title": "I Feel Love" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Little River Band", + "playlist_title": "Happy Anniversary", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "738874d8-bd9d-2151-9940-e79a645d2230", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Anniversary - Little River Band.mp4", + "title": "Happy Anniversary" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "David Gates", + "playlist_title": "Goodbye Girl", + "found_song": { + "artist": "Jason Derulo & David Guetta ft. Nicki Minaj & Willy W", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f8ff91e-2d02-2fde-6821-d07dd4ee4582", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jason Derulo & David Guetta feat Nicki Minaj & Willy W - Goodbye.mp4", + "title": "Goodbye" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "El Coco", + "playlist_title": "Cocomotion", + "found_song": { + "artist": "OMD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "268bcf18-51c4-5cdd-9d43-2d0515e80f57", + "path": "z://MP4\\ZoomKaraokeOfficial\\OMD - Locomotion.mp4", + "title": "Locomotion" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Alan Parsons Project", + "playlist_title": "Don't Let It Show", + "found_song": { + "artist": "The Alan Parsons Project", + "disabled": false, + "favorite": false, + "guid": "a4a1775a-8495-592d-5da4-f2b7c182d977", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Answer Me - The Alan Parsons Project.mp4", + "title": "Don t Answer Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Jackie DeShannon", + "playlist_title": "Don't Let The Flame Burn Out", + "found_song": { + "artist": "Jackie DeShannon", + "disabled": false, + "favorite": false, + "guid": "145409ef-5311-faed-06f8-cbec1c081be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Put A Little Love In Your Heart - Jackie DeShannon.mp4", + "title": "Put A Little Love In Your Heart" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Little River Band", + "playlist_title": "Help Is On Its Way", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "9a4fc5c9-12c7-d73c-4637-888c216d646d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Help Is On Its Way - Little River Band.mp4", + "title": "Help Is On Its Way" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "High Inergy", + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Babys", + "title": "Isn't It Time", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Shaun Cassidy", + "title": "Hey Deanie", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Randy Newman", + "title": "Short People", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Chicago", + "title": "Baby, What A Big Surprise", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Paul Nicholas", + "title": "Heaven On The 7th Floor", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Kansas", + "title": "Point Of Know Return", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Wings", + "title": "Girls' School", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Samantha Sang", + "title": "Emotion", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Cheech & Chong", + "title": "Bloat On Featuring the Bloaters", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Peter Frampton", + "title": "Tried To Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Millie Jackson", + "title": "If You're Not Back In Love By Monday", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "KC And The Sunshine Band", + "title": "Wrap Your Arms Around Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Emotions", + "title": "Don't Ask My Neighbors", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "John Denver", + "title": "How Can I Leave You Again", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wet Willie", + "title": "Street Corner Serenade", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "England Dan & John Ford Coley", + "title": "Gone Too Far", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ramones", + "title": "Rockaway Beach", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "LeBlanc & Carr", + "title": "Falling", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Con Funk Shun", + "title": "Ffun", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Cat Stevens", + "title": "Was Dog A Doughnut", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jay Ferguson", + "title": "Thunder Island", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Stillwater", + "title": "Mind Bender", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Addrisi Brothers", + "title": "Never My Love", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "John Williams", + "title": "Theme From Close Encounters Of The Third Kind", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kellee Patterson", + "title": "If It Don't Fit, Don't Force It", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Johnny Rivers", + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rose Royce", + "title": "Ooh Boy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Le Pamplemousse", + "title": "Le Spank", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Eric Carmen", + "title": "Boats Against The Current", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Bobby Arvon", + "title": "Until Now", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Brick", + "title": "Dusic", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Shaun Cassidy", + "title": "That's Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Firefall", + "title": "Just Remember I Love You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 26, + "missing_count": 34, + "needs_manual_review": 26 + } + }, + { + "playlist_title": "1976 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rod Stewart", + "playlist_title": "Tonight's The Night (Gonna Be Alright)", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5666bad4-5895-4767-3dd3-49ed04873591", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Tonights The Night (Gonna Be Alright).mp4", + "title": "Tonight's The Night (Gonna Be Alright)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Leo Sayer", + "playlist_title": "You Make Me Feel Like Dancing", + "found_song": { + "artist": "Leo Sayer", + "disabled": false, + "favorite": false, + "guid": "c9a665d0-1b3b-18b3-1ec7-45918f03db04", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Feel Like Dancing - Leo Sayer.mp4", + "title": "You Make Me Feel Like Dancing" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boston", + "playlist_title": "More Than A Feeling", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "368fe08a-dfa9-f2a5-d864-aac4b5ff2f75", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - More Than A Feeling.mp4", + "title": "More Than A Feeling" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elton John", + "playlist_title": "Sorry Seems To Be The Hardest Word", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "52ac9f5f-8d36-79fc-6d0b-e6c7a897f04c", + "path": "z://MP4\\KaraFun Karaoke\\Elton John - Sorry Seems To Be The Hardest Word.mp4", + "title": "Sorry Seems To Be The Hardest Word" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Wish", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "00642160-065d-3a56-b670-f243ce08d852", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Wish - Stevie Wonder.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rose Royce", + "playlist_title": "Car Wash", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "guid": "05ecb4ca-9c37-17da-b0e2-094bec16d131", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Car Wash - Rose Royce.mp4", + "title": "Car Wash" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "After The Lovin'", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "9a423a38-1fd0-b742-b471-43369c6b1bff", + "path": "z://MP4\\Stingray Karaoke\\After The Lovin' in the Style of Engelbert Humperdinck karaoke video with lyrics (no lead vocal).mp4", + "title": "After The Lovin'" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Me", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Livin' Thing", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "685ee3a0-6d75-6d44-eaa6-aff529101f25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Livin Thing - Electric Light Orchestra.mp4", + "title": "Livin Thing" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "New Kid In Town", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "956c36af-901a-7840-dc23-80c24feb348e", + "path": "z://CDG\\Various\\Eagles - New Kid In Town.mp3", + "title": "New Kid In Town" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Bread", + "playlist_title": "Lost Without Your Love", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "2d4eec04-1c10-33f5-5ed3-cf833b9479a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lost Without Your Love - Bread.mp4", + "title": "Lost Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "David Dundas", + "playlist_title": "Jeans On", + "found_song": { + "artist": "David Dundas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3329806-aeb0-2cad-b0e7-bff57722eecc", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Dundas - Jeans On.mp4", + "title": "Jeans On" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Aerosmith", + "playlist_title": "Walk This Way", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "3a3169a7-52e6-be2b-103d-b6e4f679270b", + "path": "z://MP4\\Stingray Karaoke\\Aerosmith - Walk This Way (Karaoke Version).mp4", + "title": "Walk This Way" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Mary Macgregor", + "playlist_title": "Torn Between Two Lovers", + "found_song": { + "artist": "Mary MacGregor", + "disabled": false, + "favorite": false, + "guid": "ad1c3df8-0445-d8e1-c728-50612d53c7c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Torn Between Two Lovers - Mary MacGregor.mp4", + "title": "Torn Between Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kenny Nolan", + "playlist_title": "I Like Dreamin'", + "found_song": { + "artist": "Kenny Nolan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb43df8d-1338-ccd1-169a-191dfa9584cd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Nolan - I Like Dreamin.mp4", + "title": "I Like Dreamin'" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bee Gees", + "playlist_title": "Love So Right", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cff7f448-6cd4-9f33-0fa7-d15f74989ec0", + "path": "z://CDG\\Various\\Bee Gees - Love So Right.mp3", + "title": "Love So Right" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Barry Manilow", + "playlist_title": "Weekend In New England", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "f1710641-ceb0-862f-81c2-b2f54f46c0b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Weekend In New England - Barry Manilow.mp4", + "title": "Weekend In New England" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "It Keeps You Runnin'", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "427cb523-d8c0-2f4e-5013-a3a1985b0dc1", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - It Keeps You Runnin.mp4", + "title": "It Keeps You Runnin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Smokie", + "playlist_title": "Living Next Door To Alice", + "found_song": { + "artist": "Smokie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1a53037-514b-1b71-9bed-2237de32944d", + "path": "z://MP4\\KaraokeOnVEVO\\Smokie - Living Next Door To Alice.mp4", + "title": "Living Next Door To Alice" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dr. Hook", + "playlist_title": "If Not You", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6ff18be-9337-cefd-65bf-2ff345519418", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - If Not You.mp4", + "title": "If Not You" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Commodores", + "playlist_title": "Just To Be Close To You", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "bb46d58e-610c-ae5f-73a0-d7f51095e5b0", + "path": "z://CDG\\Various\\Commodores - Just To Be Close To You.mp3", + "title": "Just To Be Close To You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Tavares", + "playlist_title": "Don't Take Away The Music", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2d59ea7-62c8-d4ff-bc9f-e7a6369a8084", + "path": "z://MP4\\KaraokeOnVEVO\\Tavares - Don't Take Away The Music.mp4", + "title": "Don't Take Away The Music" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Bob Seger", + "playlist_title": "Night Moves", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "9b1a6abb-6a20-0b99-2e86-6fd9047960ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Night Moves - Bob Seger.mp4", + "title": "Night Moves" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Kiss", + "playlist_title": "Hard Luck Woman", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "d84602c2-1337-2858-d1b1-aa353d8f83ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Luck Woman - Kiss.mp4", + "title": "Hard Luck Woman" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "ABBA", + "playlist_title": "Dancing Queen", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee292e40-26f4-97c6-081a-ffbcfc772f07", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Dancing Queen.mp4", + "title": "Dancing Queen" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "The Beatles", + "playlist_title": "Ob-la-di, Ob-la-da", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3bb5c4c3-3c35-e652-031e-bcf455d67f11", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Ob-La-Di, Ob-La-Da (Karaoke Version).mp4", + "title": "Ob-La-Di, Ob-La-Da" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Deniece Williams", + "playlist_title": "Free", + "found_song": { + "artist": "Deniece Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cfbb8da-3c18-83d6-56c7-cc96ac9dda20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Deniece Williams - Free - SF103 - 01.mp3", + "title": "Free" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Thelma Houston", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Thelma Houston", + "disabled": false, + "favorite": false, + "guid": "71def665-46dd-6b16-caa0-7100b68a54a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Leave Me This Way - Thelma Houston.mp4", + "title": "Don t Leave Me This Way" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Chicago", + "playlist_title": "If You Leave Me Now", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38ba257-4e3b-4b04-10a2-3d7ef66fa8c3", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - If You Leave Me Now.mp4", + "title": "If You Leave Me Now" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Al Stewart", + "playlist_title": "Year Of The Cat", + "found_song": { + "artist": "Al Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3daf9d83-5c4e-38a1-cab4-cd15886af06f", + "path": "z://MP4\\KaraokeOnVEVO\\Al Stewart - Year Of The Cat.mp4", + "title": "Year Of The Cat" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Kansas", + "playlist_title": "Carry On Wayward Son", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "guid": "5c7b4eaf-027d-7c17-6166-3a5175b010d5", + "path": "z://MP4\\TheKARAOKEChannel\\Carry On Wayward Son in the Style of Kansas karaoke with lyrics (no lead vocal).mp4", + "title": "Carry On Wayward Son" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Marilyn McCoo & Billy Davis, Jr.", + "playlist_title": "You Don't Have To Be A Star (To Be In My Show)", + "found_song": { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "987bafbd-7d75-9d8f-cb86-1da3e6b7b98e", + "path": "z://MP4\\KaraokeOnVEVO\\Marilyn McCoo & Billy Davis, Jr. - You Dont Have To Be A Star (To Be In My Show.mp4", + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Sylvers", + "playlist_title": "Hot Line", + "found_song": { + "artist": "The Eagles", + "disabled": false, + "favorite": false, + "guid": "8d0cbf03-7932-727f-18bf-6a3784f43e28", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Long - The Eagles.mp4", + "title": "How Long" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Alice Cooper", + "playlist_title": "I Never Cry", + "found_song": { + "artist": "Cooper, Alice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd8ec42e-2597-9bcc-cb67-ecb1205709cb", + "path": "z://CDG\\SBI\\SBI-04\\SB18319 - Alice Cooper - I Never Cry.mp3", + "title": "I Never Cry" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "England Dan & John Ford Coley", + "playlist_title": "Nights Are Forever Without You", + "found_song": { + "artist": "England Dan & John Ford Coley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99851d44-3ea1-bdbb-a037-28df72e3f891", + "path": "z://MP4\\ZoomKaraokeOfficial\\England Dan & John Ford Coley - Nights Are Forever Without You.mp4", + "title": "Nights Are Forever Without You" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Jacksons", + "playlist_title": "Enjoy Yourself", + "found_song": { + "artist": "The Jacksons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9ae5b7b-a14d-862d-6660-498cc8cb22e1", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Jacksons - Can You Feel It.mp4", + "title": "Can You Feel It" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Saturday Nite", + "found_song": { + "artist": "Earth, Wind & Fire", + "disabled": false, + "favorite": false, + "guid": "c809d50e-6fb3-fd6c-b31f-2b12abe4c429", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Saturday Nite - Earth, Wind & Fire.mp4", + "title": "Saturday Nite" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "George Harrison", + "playlist_title": "This Song", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4ccd35-dec8-0bba-5195-dd890bc1c5bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\George Harrison - What Is Life.mp4", + "title": "What Is Life" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Manfred Mann's Earth Band", + "playlist_title": "Blinded By The Light", + "found_song": { + "artist": "Manfred Mann's Earth Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f1ce37-ca34-0cdd-8722-2109cfb50a43", + "path": "z://MP4\\KaraokeOnVEVO\\Manfred Manns Earth Band - Blinded By The Light.mp4", + "title": "Blinded By The Light" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "L.T.D.", + "playlist_title": "Love Ballad", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "65114b2d-3cf1-86b7-b374-8591bcd6cb41", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Ballad - LTD.mp4", + "title": "Love Ballad" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Donny & Marie Osmond", + "playlist_title": "Ain't Nothing Like The Real Thing", + "found_song": { + "artist": "Marvin Gaye ft. Tammy Terrell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3cf8b585-02d6-f258-78fb-1c7dd2a5636b", + "path": "z://MP4\\KaraokeOnVEVO\\Marvin Gaye And Tammy Terrell - Ain't Nothing Like The Real Thing.mp4", + "title": "Ain't Nothing Like The Real Thing" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Kiss", + "playlist_title": "Beth/Detroit Rock City", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "b4deaba4-b1d7-e8d7-2f81-24f468535733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Detroit Rock City - Kiss.mp4", + "title": "Detroit Rock City" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Boz Scaggs", + "playlist_title": "What Can I Say", + "found_song": { + "artist": "Boz Craggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973fce5f-d08c-8731-63e7-73f928e186b8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 801\\Boz Craggs - What Can I Say - SFMW 801 -10.mp3", + "title": "What Can I Say" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Eric Clapton", + "playlist_title": "Hello Old Friend", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f667e6a5-c5b8-2d0e-169e-92adcb25c76f", + "path": "z://CDG\\Various\\Eric Clapton - Let It Rain.mp3", + "title": "Let It Rain" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Someone To Lay Down Beside Me", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "a4be69c0-c37d-9b49-6d72-93d7cec58f14", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Someone To Watch Over Me - Linda Ronstadt.mp4", + "title": "Someone To Watch Over Me" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "I Like To Do It", + "found_song": { + "artist": "KC And The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "f4b5a6d5-4622-9e96-9856-b1c2e45b83aa", + "path": "z://MP4\\Stingray Karaoke\\Get Down Tonight KC And The Sunshine Band Karaoke with Lyrics.mp4", + "title": "Get Down Tonight" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Rick Dees & His Cast Of Idiots", + "playlist_title": "Disco Duck (Part I)", + "found_song": { + "artist": "Rick Dees & His Cast Of Idiots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdc0ec5a-5ada-8b9e-e89f-48ec1ef11bf0", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Dees & His Cast Of Idiots - Disco Duck (Part I.mp4", + "title": "Disco Duck (Part I)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Johnny Bristol", + "playlist_title": "Do It To My Mind", + "found_song": { + "artist": "John Holt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e9ff15dc-d1a5-03bd-4363-85b62b9d2564", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Holt - Stoned Out Of My Mind.mp4", + "title": "Stoned Out Of My Mind" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Steve Miller", + "playlist_title": "Fly Like An Eagle", + "found_song": { + "artist": "Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "7298be75-5106-b014-461b-7db40c868b1e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fly Like An Eagle - Steve Miller Band.mp4", + "title": "Fly Like An Eagle" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Bay City Rollers", + "playlist_title": "Yesterday's Hero", + "found_song": { + "artist": "Bay City Rollers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859fe149-5fb9-1127-6c50-b2f5e17dfe02", + "path": "z://MP4\\KaraokeOnVEVO\\Bay City Rollers - Saturday Night.mp4", + "title": "Saturday Night" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Funky Kings", + "playlist_title": "Slow Dancing", + "found_song": { + "artist": "Indiana", + "disabled": false, + "favorite": false, + "guid": "a0b65c41-4919-097b-b20a-27d563d94a85", + "path": "z://MP4\\Let's Sing Karaoke\\Indiana - Solo Dancing (Karaoke & Lyrics).mp4", + "title": "Solo Dancing" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Jefferson Starship", + "playlist_title": "St. Charles", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "7e51306e-2ade-7620-7113-99a611e2f229", + "path": "z://CDG\\Various\\Jefferson Starship - Sara.mp3", + "title": "Sara" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "The Wreck Of The Edmund Fitzgerald", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "1f1ce3b4-6e1e-c123-c610-2a21dee33ea5", + "path": "z://MP4\\Let's Sing Karaoke\\Lightfoot, Gordon - Wreck Of The Edmund Fitzgerald, The (Karaoke & Lyrics).mp4", + "title": "Wreck Of The Edmund Fitzgerald, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Donna Summer", + "playlist_title": "Spring Affair/Winter Melody", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "7afacb12-1a1f-8540-5846-6696488da05d", + "path": "z://CDG\\Various\\Donna Summer - Spring Affair.mp3", + "title": "Spring Affair" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Starbuck", + "playlist_title": "Lucky Man", + "found_song": { + "artist": "Verve", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a74deb7-2f51-f11b-d771-1799e9fd1654", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF117\\Verve - Lucky Man - SF117 - 01.mp3", + "title": "Lucky Man" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Paul Anka", + "playlist_title": "Happier", + "found_song": { + "artist": "Paul Anka", + "disabled": false, + "favorite": false, + "guid": "bed665fa-2a7e-6a38-a208-5741e8ec9fa7", + "path": "z://MP4\\KaraFun Karaoke\\Jump - Paul Anka Karaoke Version KaraFun.mp4", + "title": "Jump" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Every Face Tells A Story", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "c1b8fc75-fac0-b76c-c66f-fd2d80647079", + "path": "z://MP4\\Sing King Karaoke\\Olivia Newton-John - Let Me Be There (Karaoke Version).mp4", + "title": "Let Me Be There" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Cliff Richard", + "playlist_title": "I Can't Ask For Anymore Than You", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c87bae4-dc44-b355-3fa7-b997420c104d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cliff Richard - We Dont Talk Anymore.mp4", + "title": "We Don't Talk Anymore" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Elvis Presley", + "playlist_title": "Moody Blue/she Thinks I Still Care", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6da7ece0-d9dc-48e7-933b-bef968d280d9", + "path": "z://CDG\\Various\\Elvis Presley - She Thinks I Still Care.mp3", + "title": "She Thinks I Still Care" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "The Supremes", + "playlist_title": "You're My Driving Wheel", + "found_song": { + "artist": "Diana Ross & The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c2ad0dda-30ca-50c2-5a94-92307e6f15f8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Diana Ross & The Supremes - Im Living In Shame.mp4", + "title": "I'm Living In Shame" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Bryan Ferry", + "playlist_title": "Heart On My Sleeve", + "found_song": { + "artist": "Gallagher & Lyle", + "disabled": false, + "favorite": false, + "guid": "5f57d68a-8a72-0922-7be1-0bf38dc39f62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF168\\Gallagher & Lyle - Heart On My Sleeve - SF168 - 12.mp3", + "title": "Heart On My Sleeve" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Little River Band", + "playlist_title": "It's A Long Way There", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "2554b6f8-5c5b-5fa2-fc5b-40cc614b6013", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s A Long Way There - Little River Band.mp4", + "title": "It s A Long Way There" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "JJ Cale", + "playlist_title": "Hey Baby", + "found_song": { + "artist": "Pitbull ft. T Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0c0673e-4aa4-284d-e2f4-5ffb17cd9637", + "path": "z://MP4\\Sing King Karaoke\\Pitbull & T Pain - Hey Baby, Drop It To The Floor.mp4", + "title": "Hey Baby" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "The Spinners", + "title": "The Rubberband Man", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Brick", + "title": "Dazz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Burton Cummings", + "title": "Stand Tall", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Captain & Tennille", + "title": "Muskrat Love", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "title": "Nadia's Theme (The Young And The Restless)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Firefall", + "title": "You Are The Woman", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Bar-Kays", + "title": "Shake Your Rump To The Funk", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Dr. Buzzard's Original Savannah Band", + "title": "Whispering/Cherchez La Femme/Se Si Bon", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Styx", + "title": "Mademoiselle", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Al Green", + "title": "Keep Me Cryin'", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Daryl Hall John Oates", + "title": "Do What You Want, Be What You Are", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Foghat", + "title": "Drivin' Wheel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Walter Murphy Band", + "title": "Flight '76", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Barbra Streisand", + "title": "Evergreen (Love Theme From A Star Is Born)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dickey Lee", + "title": "9,999,999 Tears", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gene Cotton", + "title": "You've Got Me Runnin'", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mary Kay Place As Loretta Haggers", + "title": "Baby Boy", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Robert Palmer", + "title": "Man Smart, Woman Smarter", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Stephen Bishop", + "title": "Save It For A Rainy Day", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Peter Frampton", + "title": "Do You Feel Like We Do", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Heart", + "title": "Dreamboat Annie", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Kool & The Gang", + "title": "Open Sesame - Part 1", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "John Denver", + "title": "Baby, You Look Good To Me Tonight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Robin Trower", + "title": "Caledonia", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Arthur Prysock", + "title": "When Love Is New", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rod Hart", + "title": "C.b. Savage", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brass Construction", + "title": "Ha Cha Cha (funktion)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "David Laflamme", + "title": "White Bird", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "L.A. Jets", + "title": "Prisoner (Captured By Your Eyes)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bumble Bee Unlimited", + "title": "Love Bug", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Walter Jackson", + "title": "Feelings", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Elvin Bishop Featuring Mickey Thomas", + "title": "Spend Some Time", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Starz", + "title": "(She's Just A) Fallen Angel", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Seals & Crofts", + "title": "Baby, I'll Give It To You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Ritchie Family", + "title": "The Best Disco In Town", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 32, + "missing_count": 35, + "needs_manual_review": 32 + } + }, + { + "playlist_title": "1975 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bay City Rollers", + "playlist_title": "Saturday Night", + "found_song": { + "artist": "Bay City Rollers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859fe149-5fb9-1127-6c50-b2f5e17dfe02", + "path": "z://MP4\\KaraokeOnVEVO\\Bay City Rollers - Saturday Night.mp4", + "title": "Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Diana Ross", + "playlist_title": "Theme From Mahogany (Do You Know Where You're Going To)", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17485a0c-1a98-467a-dd7c-108ffff0d546", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - Theme From Mahogany (Do You Know Where Youre Going To.mp4", + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Write The Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6c9b535-ae4d-44a1-6349-a8b79d8c9fa3", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - I Write The Songs.mp4", + "title": "I Write The Songs" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "C.W. McCall", + "playlist_title": "Convoy", + "found_song": { + "artist": "C.W. McCall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71406095-e2d6-25f3-f06a-c2fa25f8d3cf", + "path": "z://MP4\\KaraokeOnVEVO\\C.W. McCall - Convoy.mp4", + "title": "Convoy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sweet", + "playlist_title": "Fox On The Run", + "found_song": { + "artist": "Sweet", + "disabled": false, + "favorite": false, + "guid": "7a8beb49-589b-1ffe-4113-f70d2b7b4901", + "path": "z://MP4\\KaraFun Karaoke\\Fox On The Run - Sweet Karaoke Version KaraFun.mp4", + "title": "Fox On The Run" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jigsaw", + "playlist_title": "Sky High", + "found_song": { + "artist": "Jigsaw", + "disabled": false, + "favorite": false, + "guid": "2ff39e4b-87fd-9e3d-1a3e-c61c788d41f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sky High - Jigsaw.mp4", + "title": "Sky High" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bee Gees", + "playlist_title": "Nights On Broadway", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "2a5e5e3b-32c8-458e-2008-639df8e66713", + "path": "z://CDG\\Various\\Bee Gees - Nights On Broadway.mp3", + "title": "Nights On Broadway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "Love To Love You Baby", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afdfc83-11e3-3637-ebce-bc7c594e095d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - Love To Love You Baby.mp4", + "title": "Love To Love You Baby" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Glen Campbell", + "playlist_title": "Country Boy (You Got Your Feet In L.A.)", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d569208-3c2b-d7fc-339d-6b709a933d82", + "path": "z://MP4\\KaraokeOnVEVO\\Glen Campbell - Country Boy (You Got Your Feet In LA.mp4", + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hot Chocolate", + "playlist_title": "You Sexy Thing", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "guid": "b9e6c3df-c2ae-8414-0c61-9c752cb553aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Sexy Thing - Hot Chocolate.mp4", + "title": "You Sexy Thing" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "John Denver", + "playlist_title": "Fly Away", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "6e31be31-854c-1793-7f1f-1725e458f8f2", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Fly Away (Karaoke).mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Evil Woman", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "6d8befeb-1efb-bc94-5c60-44552b538a9c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Evil Woman - Electric Light Orchestra.mp4", + "title": "Evil Woman" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Over My Head", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "5de11425-847d-4e16-9e46-8c8875e88586", + "path": "z://MP4\\KtvEntertainment\\Fleetwood Mac - Over My Head Karaoke Lyrics.mp4", + "title": "Over My Head" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Elton John", + "playlist_title": "Island Girl", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b452a1fc-6d92-efca-eab5-45534991d5c3", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Island Girl.mp4", + "title": "Island Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Breaking Up Is Hard To Do", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "7ab837d0-a19b-a75a-208c-5baca3a0a127", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breaking Up Is Hard To Do - Neil Sedaka.mp4", + "title": "Breaking Up Is Hard To Do" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Al Martino", + "playlist_title": "Volare", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34aa0800-d293-0762-a477-fe63155e1e2c", + "path": "z://MP4\\VocalStarKaraoke\\Al Martino - Volare.mp4", + "title": "Volare" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Nazareth", + "playlist_title": "Love Hurts", + "found_song": { + "artist": "Nazareth", + "disabled": false, + "favorite": false, + "guid": "7253dbac-bab1-cad0-d19f-1218668aca65", + "path": "z://MP4\\Stingray Karaoke\\Love Hurts Nazareth Karaoke with Lyrics.mp4", + "title": "Love Hurts" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Who", + "playlist_title": "Squeeze Box", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fdc99a7-3985-5550-05c1-f1d97cadba9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Who - Squeeze Box.mp4", + "title": "Squeeze Box" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "War", + "playlist_title": "Low Rider", + "found_song": { + "artist": "War", + "disabled": false, + "favorite": false, + "guid": "09f68070-76ff-bc91-aeed-3964199c4f29", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Low Rider - War.mp4", + "title": "Low Rider" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Golden Years", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45b399ba-4279-d912-0d1b-9d5c68f0d661", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Bowie - Golden Years.mp4", + "title": "Golden Years" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Morris Albert", + "playlist_title": "Feelings", + "found_song": { + "artist": "Morris Albert", + "disabled": false, + "favorite": false, + "guid": "7b6c4c3d-4f30-9e74-c647-f0829ace4634", + "path": "z://MP4\\Let's Sing Karaoke\\Albert, Morris - Feelings (Karaoke & Lyrics).mp4", + "title": "Feelings" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Foghat", + "playlist_title": "Slow Ride", + "found_song": { + "artist": "Foghat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b88e806c-3ba1-2a3a-222a-94094af51f8d", + "path": "z://MP4\\KaraokeOnVEVO\\Foghat - Slow Ride.mp4", + "title": "Slow Ride" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Eagles", + "playlist_title": "Take It To The Limit", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "0b3dc0be-318b-da03-f8c0-50ce3a6778f7", + "path": "z://CDG\\Various\\Eagles - Take It To The Limit.mp3", + "title": "Take It To The Limit" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Natalie Cole", + "playlist_title": "Inseparable", + "found_song": { + "artist": "Natalie Cole", + "disabled": false, + "favorite": false, + "guid": "fff53bc6-d461-11e2-d19f-877262be8281", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Inseparable - Natalie Cole.mp4", + "title": "Inseparable" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eric Carmen", + "playlist_title": "All By Myself", + "found_song": { + "artist": "Eric Carmen", + "disabled": false, + "favorite": false, + "guid": "3d9f9b37-4c3f-3780-81ba-7208d0865370", + "path": "z://MP4\\Let's Sing Karaoke\\Carmen, Eric - All By Myself (Karaoke & Lyrics).mp4", + "title": "All By Myself" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Barry White", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e5e63c5b-4e47-678c-9199-0f076dec0a01", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let The Music Play - Barry White.mp4", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Willie Nelson", + "playlist_title": "Blue Eyes Crying In The Rain", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "38fa7e65-4b0f-0b1d-0378-7bec98ea4a55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Eyes Crying In The Rain - Willie Nelson.mp4", + "title": "Blue Eyes Crying In The Rain" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Commodores", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "2f3534c6-e650-0af2-c84b-db2d56f521cb", + "path": "z://CDG\\Various\\Commodores - Sweet Love.mp3", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "The 4 Seasons", + "playlist_title": "December, 1963 (Oh, What a Night)", + "found_song": { + "artist": "The 4 Seasons", + "disabled": false, + "favorite": false, + "guid": "ed6afb7e-23ab-cd12-0a42-692dedeb0164", + "path": "z://MP4\\Stingray Karaoke\\December, 1963 (Oh, What A Night) The 4 Seasons Karaoke with Lyrics.mp4", + "title": "December, 1963 (Oh, What A Night)" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Roxy Music", + "playlist_title": "Love Is The Drug", + "found_song": { + "artist": "Roxy Music", + "disabled": false, + "favorite": false, + "guid": "d2018bd2-4313-d17f-bbfa-92a34992ff6a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Is The Drug - Roxy Music.mp4", + "title": "Love Is The Drug" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Greg Lake", + "playlist_title": "I Believe In Father Christmas", + "found_song": { + "artist": "Greg Lake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d5598f9-d4fb-8fdf-db23-6ae211019da7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Greg Lake - I Believe In Father Christmas.mp4", + "title": "I Believe In Father Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "That's The Way (I Like It)", + "found_song": { + "artist": "KC And The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "e9754772-36e1-2c31-35c8-fc6b7a3373ba", + "path": "z://MP4\\Stingray Karaoke\\That's The Way (I Like It) in the style of KC And The Sunshine Band karaoke.mp4", + "title": "That's The Way (I Like It)" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Ohio Players", + "playlist_title": "Love Rollercoaster", + "found_song": { + "artist": "Red Hot Chili Peppers, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6e9b792-a2f2-c453-313c-c4a04f7c0227", + "path": "z://CDG\\SBI\\SBI-04\\SB13193 - The Red Hot Chili Peppers - Love Rollercoaster.mp3", + "title": "Love Rollercoaster" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Frankie Valli", + "playlist_title": "Our Day Will Come", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "5cb29498-9574-94e5-78e1-dcc170a29630", + "path": "z://CDG\\Various\\Frankie Valli & The Four Seasons - Rag Doll.mp3", + "title": "Rag Doll" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Paul Anka", + "playlist_title": "Times Of Your Life", + "found_song": { + "artist": "Pitbull ft. Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b634f678-8305-d47c-4fb4-a26db6829aeb", + "path": "z://MP4\\Sing King Karaoke\\Pitbull ft. Ne-Yo - Time Of Our Lives (Karaoke Version).mp4", + "title": "Time Of Our Lives" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Sing A Song", + "found_song": { + "artist": "Earth, Wind & Fire", + "disabled": false, + "favorite": false, + "guid": "1afe1fe3-83c1-e569-e78d-03e76195de91", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sing A Song - Earth, Wind & Fire.mp4", + "title": "Sing A Song" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kiss", + "playlist_title": "Rock And Roll All Nite (live)", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7cdca01a-00b3-6194-f66c-0c45d032dee8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock And Roll All Nite - Kiss.mp4", + "title": "Rock And Roll All Nite" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "The Isley Brothers", + "playlist_title": "For The Love Of You (Part 1&2)", + "found_song": { + "artist": "The Isley Brothers", + "disabled": false, + "favorite": false, + "guid": "564c7416-e7d4-ab64-0081-f6293f95c91a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Love Of You - The Isley Brothers.mp4", + "title": "For The Love Of You" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Al Green", + "playlist_title": "Full Of Fire", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "47a66eed-449a-6908-3190-b13ab1b8b527", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - Call Me (Come Back Home) (Karaoke & Lyrics).mp4", + "title": "Call Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Captain & Tennille", + "playlist_title": "The Way I Want To Touch You", + "found_song": { + "artist": "Captain & Tenille", + "disabled": false, + "favorite": false, + "guid": "33109fd2-a63f-676b-dcbb-744647051617", + "path": "z://CDG\\Various\\Captain & Tenille - Way I Want To Touch You.mp3", + "title": "Way I Want To Touch You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Harold Melvin And The Blue Notes", + "playlist_title": "Wake Up Everybody (Part 1)", + "found_song": { + "artist": "Harold Melvin & the Blue Notes", + "disabled": false, + "favorite": false, + "guid": "42f0fcc4-d15b-3e0b-bcb0-471645f2696f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Up Everybody - Harold Melvin & the Blue Notes.mp4", + "title": "Wake Up Everybody" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Helen Reddy", + "playlist_title": "Somewhere In The Night", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "The Marshall Tucker Band", + "playlist_title": "Fire On The Mountain", + "found_song": { + "artist": "The Marshall Tucker Band", + "disabled": false, + "favorite": false, + "guid": "389bad52-c78a-bb2e-01e8-f7ba5f31823a", + "path": "z://MP4\\KaraokeOnVEVO\\The Marshall Tucker Band - Fire On The Mountain (Karaoke).mp4", + "title": "Fire On The Mountain" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Bob Dylan", + "playlist_title": "Hurricane (Part I)", + "found_song": { + "artist": "Bob Dylan", + "disabled": false, + "favorite": false, + "guid": "7f8713ec-e624-dd16-be98-61cc0c77c918", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hurricane - Bob Dylan.mp4", + "title": "Hurricane" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "George Baker Selection", + "playlist_title": "Paloma Blanca", + "found_song": { + "artist": "George Baker Selection", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fece5c80-0907-8908-68b3-2da667ace91e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 872\\George Baker Selection - Little Green Bag - SFMW 872 -15.mp3", + "title": "Little Green Bag" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Paul Simon", + "playlist_title": "50 Ways To Leave Your Lover", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "48295303-eecd-0fe9-cfaf-c0b39ca7723d", + "path": "z://CDG\\Various\\Paul Simon - Fifty Ways To Leave Your Lover.mp3", + "title": "Fifty Ways To Leave Your Lover" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Freddy Fender", + "playlist_title": "Secret Love", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "e0c127cf-7035-e7f5-0c4d-5d86470f3fc2", + "path": "z://MP4\\Karaoke Sing Sing\\Bee Gees - Secret Love (Karaoke Version).mp4", + "title": "Secret Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Bachman-Turner Overdrive", + "playlist_title": "Down To The Line", + "found_song": { + "artist": "Bachman-Turner Overdrive", + "disabled": false, + "favorite": false, + "guid": "978cc141-5e1f-e809-095c-8af21053b889", + "path": "z://MP4\\Let's Sing Karaoke\\Bachman-Turner Overdrive - Let It Ride (Karaoke & Lyrics).mp4", + "title": "Let It Ride" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Play On Love", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "36b70452-8332-7fd3-3bab-7fa7e6a2705f", + "path": "z://CDG\\Various\\Jefferson Starship - Count On Me.mp3", + "title": "Count On Me" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Tavares", + "playlist_title": "Free Ride", + "found_song": { + "artist": "Edgar Winter", + "disabled": false, + "favorite": false, + "guid": "0db46359-9fe3-c66f-500e-dc5ac1615214", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free Ride - Edgar Winter.mp4", + "title": "Free Ride" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Who Loves You", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "50d96413-e787-93f3-8bfe-470441c55096", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Loves You - Frankie Valli & The Four Seasons.mp4", + "title": "Who Loves You" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Going Down Slowly", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2abcad4a-0107-2fd6-f943-8e05e9530af6", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters - Slowhand.mp4", + "title": "Slowhand" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "John Denver", + "playlist_title": "Christmas For Cowboys", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "d4fd9d61-7ed6-5e9e-c5ba-e401337d9837", + "path": "z://CDG\\Various\\John Denver - Im Sorry.mp3", + "title": "Im Sorry" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Billy Crash Craddock", + "playlist_title": "Easy As Pie", + "found_song": { + "artist": "Billy Crash Craddock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "013aa183-64fa-efe8-89e7-90700565fbfe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Crash Craddock - Ruby, Baby.mp4", + "title": "Ruby, Baby" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Batdorf & Rodney", + "playlist_title": "Somewhere In The Night", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Tracks Of My Tears", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "41bbd1ba-aded-7f38-258d-b43c05e3d30f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Tracks Of My Tears - Linda Ronstadt.mp4", + "title": "The Tracks Of My Tears" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "How High The Moon", + "found_song": { + "artist": "Ella Fitzgerald", + "disabled": false, + "favorite": false, + "guid": "294ca9dd-d7bb-c2c8-8152-3e9bc03d2c7a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How High The Moon - Ella Fitzgerald.mp4", + "title": "How High The Moon" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "John Fogerty", + "playlist_title": "Almost Saturday Night", + "found_song": { + "artist": "John Fogerty", + "disabled": false, + "favorite": false, + "guid": "45d5fc58-f8d9-a8a5-e573-62ed3ddb2ff8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Moon Nights - John Fogerty.mp4", + "title": "Blue Moon Nights" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Prelude", + "playlist_title": "For A Dancer", + "found_song": { + "artist": "Marmalade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43eb7cf3-e276-f5cf-e517-e6eabba2f3a1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marmalade - Radancer.mp4", + "title": "Radancer" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Art Garfunkel", + "playlist_title": "Break Away", + "found_song": { + "artist": "Art Garfunkel", + "disabled": false, + "favorite": false, + "guid": "97231e16-f05c-ba02-ab83-53670e03e22f", + "path": "z://MP4\\KaraFun Karaoke\\Bright Eyes - Art Garfunkel Karaoke Version KaraFun.mp4", + "title": "Bright Eyes" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "I Cheat The Hangman", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "guid": "45faff84-d162-45c9-f22b-83aa0b17e1db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Listen To The Music - The Doobie Brothers.mp4", + "title": "Listen To The Music" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "The Stylistics", + "playlist_title": "Funky Weekend", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "6f137d12-5bc7-fb09-5d76-9dfdcf60bc33", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are Everything - The Stylistics.mp4", + "title": "You Are Everything" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Crown Heights Affair", + "playlist_title": "Every Beat Of My Heart", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09de27fd-2942-9efe-4f9e-ac91c0bfb7c8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Every Beat Of My Heart.mp4", + "title": "Every Beat Of My Heart" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bill Withers", + "playlist_title": "Make Love To Your Mind", + "found_song": { + "artist": "Bill Withers", + "disabled": false, + "favorite": false, + "guid": "d6890dcb-ce4d-e30c-1c8a-6b8dfacf7d06", + "path": "z://MP4\\Sing King Karaoke\\Bill Withers - Lovely Day (Karaoke Version).mp4", + "title": "Lovely Day" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Wings", + "playlist_title": "Venus And Mars Rock Show", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "8a75dccb-245a-175e-38c0-ef80e1bb8cc4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Venus and Mars Rock Show - Paul McCartney.mp4", + "title": "Venus and Mars Rock Show" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Staple Singers", + "title": "Let's Do It Again", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Silver Convention", + "title": "Fly, Robin, Fly", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The O'Jays", + "title": "I Love Music (Part 1)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "David Ruffin", + "title": "Walk Away From Love", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "David Geddes", + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gladys Knight And The Pips", + "title": "Part Time Love", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Miracles", + "title": "Love Machine (Part 1)", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Simon & Garfunkel", + "title": "My Little Town", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Winners And Losers", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "AWB", + "title": "School Boy Crush", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "title": "Baby Face", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Road Apples", + "title": "Let's Live Together", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Olivia Newton-John", + "title": "Let It Shine/He Ain't Heavy...He's My Brother", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Leon Haywood", + "title": "I Want'a Do Something Freaky To You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "America", + "title": "Woman Tonight", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Purple Reign", + "title": "This Old Man", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kenny Starr", + "title": "The Blind Man In The Bleachers", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Rhythm Heritage", + "title": "Theme From S.W.A.T.", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Donny & Marie Osmond", + "title": "Deep Purple", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Eddie Kendricks", + "title": "Happy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bee Gees", + "title": "Fanny (be Tender With My Love)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hagood Hardy", + "title": "The Homecoming", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Soul Train Gang", + "title": "Soul Train 75", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Spinners", + "title": "Love Or Leave", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "John Paul Young", + "title": "Yesterday's Hero", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "10cc", + "title": "Art For Art's Sake", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Ritchie Family", + "title": "I Want To Dance With You (Dance With Me)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Cledus Maggard And The Citizen's Band", + "title": "The White Knight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Conway Twitty with Joni Lee", + "title": "Don't Cry Joni", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "The Eleventh Hour", + "title": "Hollywood Hot", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Mfsb", + "title": "The Zip", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amazing Rhythm Aces", + "title": "Amazing Grace (used To Be Her Favorite Song)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Justin Hayward & John Lodge", + "title": "Blue Guitar", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Pete Wingfield", + "title": "Eighteen With A Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Country Joe McDonald", + "title": "Breakfast For Two", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 34, + "missing_count": 35, + "needs_manual_review": 34 + } + }, + { + "playlist_title": "1974 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Helen Reddy", + "playlist_title": "Angie Baby", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "72e0535d-217b-7009-e5d8-35da016d827d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angie Baby - Helen Reddy.mp4", + "title": "Angie Baby" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Elton John", + "playlist_title": "Lucy In The Sky With Diamonds", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0e9f233-408f-e998-782f-2c15ab7a88c8", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Lucy In The Sky With Diamonds.mp4", + "title": "Lucy In The Sky With Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Barry White", + "playlist_title": "You're The First, The Last, My Everything", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "3d2fb8c7-1604-d971-e34e-6ff474ea4bed", + "path": "z://MP4\\KaraFun Karaoke\\Barry White - You're The First, The Last, My Everything.mp4", + "title": "You're The First, The Last, My Everything" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carl Douglas", + "playlist_title": "Kung Fu Fighting", + "found_song": { + "artist": "Carl Douglas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65677f28-2d26-e515-cf4c-fcab56986b97", + "path": "z://MP4\\Stingray Karaoke\\Carl Douglas - Kung Fu Fighting.mp4", + "title": "Kung Fu Fighting" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Harry Chapin", + "playlist_title": "Cat's In The Cradle", + "found_song": { + "artist": "Harry Chapin", + "disabled": false, + "favorite": false, + "guid": "7a046965-f76c-54fe-61da-43e4cbbd3d54", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cat s In The Cradle - Harry Chapin.mp4", + "title": "Cat s In The Cradle" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Three Degrees", + "playlist_title": "When Will I See You Again", + "found_song": { + "artist": "The Three Degrees", + "disabled": false, + "favorite": false, + "guid": "743ec6e8-8dfe-8f2a-bb9e-d005b3b5b863", + "path": "z://MP4\\Let's Sing Karaoke\\Three Degrees, The - When Will I See You Again (Karaoke & Lyrics).mp4", + "title": "When Will I See You Again" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Laughter In The Rain", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a671ea9-6c96-bd29-c15a-181e103f4f4f", + "path": "z://MP4\\sing2karaoke\\Neil Sedaka - Laughter In The Rain.mp4", + "title": "Laughter In The Rain" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carpenters", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "b92f785e-5a19-a83c-e563-77e63b997b6c", + "path": "z://CDG\\Various\\Carpenters - Please Mr. Postman.mp3", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Barry Manilow", + "playlist_title": "Mandy", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "4c119a40-2365-7ded-d1b8-d265baa8ce7b", + "path": "z://MP4\\Sing King Karaoke\\Barry Manilow - Mandy (Karaoke Version).mp4", + "title": "Mandy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Al Green", + "playlist_title": "Sha-La-La (Make Me Happy)", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80c58ea6-068e-f4b6-3143-014d276e14e4", + "path": "z://MP4\\KaraokeOnVEVO\\Al Green - Sha-La-La (Make Me Happy.mp4", + "title": "Sha-La-La (Make Me Happy)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "Never Can Say Goodbye", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "5cc12159-cfba-ad02-06bd-16a04181174e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Can Say Goodbye - Gloria Gaynor.mp4", + "title": "Never Can Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Billy Swan", + "playlist_title": "I Can Help", + "found_song": { + "artist": "Billy Swan", + "disabled": false, + "favorite": false, + "guid": "17fa78ec-4ec4-87b1-d0f9-c71d0adb1dd1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Can Help - Billy Swan.mp4", + "title": "I Can Help" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ohio Players", + "playlist_title": "Fire", + "found_song": { + "artist": "Ohio Players, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61574209-f3b6-8a7c-cec1-d003640190c7", + "path": "z://CDG\\SBI\\SBI-01\\SB05516 - The Ohio Players - Fire.mp3", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carol Douglas", + "playlist_title": "Doctor's Orders", + "found_song": { + "artist": "Carol Douglas", + "disabled": false, + "favorite": false, + "guid": "ed26f19c-9a39-42de-c394-d59f68904aab", + "path": "z://MP4\\KaraokeOnVEVO\\Carol Douglas - Doctor's Orders (Karaoke).mp4", + "title": "Doctor's Orders" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Elvis Presley", + "playlist_title": "Promised Land", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b052ac0c-91cb-6c4d-6098-25367cd82819", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Promised Land.mp4", + "title": "Promised Land" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Ain't Too Proud To Beg", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "70d8888e-5dda-e641-2da6-7c05026623e8", + "path": "z://MP4\\Stingray Karaoke\\Ain't Too Proud To Beg in the style of The Rolling Stones - karaoke video with lyrics.mp4", + "title": "Ain't Too Proud To Beg" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Mac Davis", + "playlist_title": "Rock N' Roll (I Gave You The Best Years Of My Life)", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74e0e193-ec6e-2fef-19be-93a9f85a2322", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Rock N Roll (I Gave You The Best Years Of My Life.mp4", + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Shirley Brown", + "playlist_title": "Woman To Woman", + "found_song": { + "artist": "Shirley Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f86102b-4f27-f5c7-4efe-8a48d50219a0", + "path": "z://MP4\\KaraokeOnVEVO\\Shirley Brown - Woman To Woman.mp4", + "title": "Woman To Woman" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Crash Craddock", + "playlist_title": "Ruby, Baby", + "found_song": { + "artist": "Billy Crash Craddock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "013aa183-64fa-efe8-89e7-90700565fbfe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Crash Craddock - Ruby, Baby.mp4", + "title": "Ruby, Baby" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eagles", + "playlist_title": "Best Of My Love", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92c02359-0c20-10f7-fee4-ca9666eeed00", + "path": "z://CDG\\Various\\Eagles - Best Of My Love.mp3", + "title": "Best Of My Love" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bachman-Turner Overdrive", + "playlist_title": "You Ain't Seen Nothing Yet/Free Wheelin'", + "found_song": { + "artist": "Bachman-Turner Overdrive", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6b5cb9f-cc3c-0b6b-86c1-7c33a6f5c985", + "path": "z://MP4\\KaraokeOnVEVO\\Bachman-Turner Overdrive - You Ain't Seen Nothing YetFree Wheelin'.mp4", + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Neil Diamond", + "playlist_title": "Longfellow Serenade", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "43ec422f-b2f2-2f18-6343-2fb0d0cbcddc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longfellow Serenade - Neil Diamond.mp4", + "title": "Longfellow Serenade" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Eric Clapton", + "playlist_title": "Willie And The Hand Jive", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64d56d87-999d-ba21-7b5a-952b3b1a02ac", + "path": "z://CDG\\Various\\Eric Clapton - Willie And The Hand Jive.mp3", + "title": "Willie And The Hand Jive" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Frankie Valli", + "playlist_title": "My Eyes Adored You", + "found_song": { + "artist": "Frankie Valli", + "disabled": false, + "favorite": false, + "guid": "5e059d27-e5cd-c0b9-e0c3-f7f6fdb63bb7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Eyes Adored You - Frankie Valli.mp4", + "title": "My Eyes Adored You" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "David Bowie", + "playlist_title": "Changes", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "583cd470-7087-e842-c6ed-618c77421ef3", + "path": "z://MP4\\TheKARAOKEChannel\\Changes in the style of David Bowie Karaoke with Lyrics.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Black Water", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "guid": "5e5b7e0a-19c7-e57f-1f29-9292c487c48b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Water - The Doobie Brothers.mp4", + "title": "Black Water" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carl Carlton", + "playlist_title": "Everlasting Love", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e81e43bb-fb16-ab18-68f6-c229939b4411", + "path": "z://MP4\\KaraokeOnVEVO\\Carl Carlton - Everlasting Love.mp4", + "title": "Everlasting Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "John Denver", + "playlist_title": "Back Home Again", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "1f1c7bec-e3eb-79c9-4838-7d52e4f41d97", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Back Home Again (Karaoke).mp4", + "title": "Back Home Again" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Styx", + "playlist_title": "Lady", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "719ee096-2f29-6b66-d55f-a6183c6e77b0", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Lady (Karaoke & Lyrics).mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "John Denver", + "playlist_title": "Sweet Surrender", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8002f0-5b1a-119a-0ee9-fa7b2bbf473a", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Sweet Surrender.mp4", + "title": "Sweet Surrender" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Joni Mitchell", + "playlist_title": "Big Yellow Taxi", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "5c7a0add-fbaf-487e-5b21-47a5269e7343", + "path": "z://MP4\\Stingray Karaoke\\Big Yellow Taxi Joni Mitchell Karaoke with Lyrics.mp4", + "title": "Big Yellow Taxi" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Peter Shelley", + "playlist_title": "Gee Baby", + "found_song": { + "artist": "Peter Shelley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05db10e6-52f3-7d03-f5d8-d6433874d75d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter Shelley - Gee Baby.mp4", + "title": "Gee Baby" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Tymes", + "playlist_title": "Ms. Grace", + "found_song": { + "artist": "The Tymes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14512ba-e380-121c-059d-5bc42baa019c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Tymes - Ms Grace.mp4", + "title": "Ms Grace" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Paul McCartney & Wings", + "playlist_title": "Junior's Farm/Sally G", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "30217281-a964-f57e-7047-b7693dae5c88", + "path": "z://CDG\\Various\\Paul McCartney - Juniors Farm.mp3", + "title": "Juniors Farm" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Ringo Starr", + "playlist_title": "Only You", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87eb02b4-5c48-c59a-68ed-a9039de79b12", + "path": "z://MP4\\KaraokeOnVEVO\\Ringo Starr - Photograph.mp4", + "title": "Photograph" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The J. Geils Band", + "playlist_title": "Must Of Got Lost", + "found_song": { + "artist": "J Geils Band", + "disabled": false, + "favorite": false, + "guid": "32b2dd2c-fd5b-c767-f68f-4565c12b47b8", + "path": "z://CDG\\Various\\J Geils Band - Must Have Got Lost.mp3", + "title": "Must Have Got Lost" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Jethro Tull", + "playlist_title": "Bungle In The Jungle", + "found_song": { + "artist": "Jethro Tull", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d43c9f2-116e-17a0-a895-4cfb454a8b3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jethro Tull - Living In The Past.mp4", + "title": "Living In The Past" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "George Harrison", + "playlist_title": "Dark Horse", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4ccd35-dec8-0bba-5195-dd890bc1c5bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\George Harrison - What Is Life.mp4", + "title": "What Is Life" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "AWB", + "playlist_title": "Pick Up The Pieces", + "found_song": { + "artist": "Paloma Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb3f6f48-ab9b-7566-9d3a-958728a3c7e0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paloma Faith - Picking Up The Pieces.mp4", + "title": "Picking Up The Pieces" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Paul Davis", + "playlist_title": "Ride 'em Cowboy", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "9c2a06d5-1dfe-ff6c-dae0-c320314bba9f", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - I Go Crazy (Karaoke & Lyrics).mp4", + "title": "I Go Crazy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Grand Funk", + "playlist_title": "Some Kind Of Wonderful", + "found_song": { + "artist": "Grand Funk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3757dd9-8a32-ec55-b308-9a572b04a30c", + "path": "z://MP4\\VocalStarKaraoke\\Grand Funk - Some Kind Of Wonderful.mp4", + "title": "Some Kind Of Wonderful" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "The Guess Who", + "playlist_title": "Dancin' Fool", + "found_song": { + "artist": "The Guess Who", + "disabled": false, + "favorite": false, + "guid": "79bf9966-8eb0-0140-1254-4ae82142e82a", + "path": "z://MP4\\TheKARAOKEChannel\\Shakin All Over in the style of The Guess Who karaoke video.mp4", + "title": "Shakin All Over" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Chicago", + "playlist_title": "Wishing You Were Here", + "found_song": { + "artist": "Incubus", + "disabled": false, + "favorite": false, + "guid": "57897604-1afa-d58d-da39-0b14e56b113e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wish You Were Here - Incubus.mp4", + "title": "Wish You Were Here" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fairytale", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Billy Joel", + "playlist_title": "The Entertainer", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "93c5c387-b76a-6105-19e4-cf7db9d269e3", + "path": "z://CDG\\Various\\Billy Joel - Entertainer.mp3", + "title": "Entertainer" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Without Love", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "360c1d42-9753-8c2c-ee46-b59210b449d0", + "path": "z://CDG\\Various\\Aretha Franklin - Freeway Of Love.mp3", + "title": "Freeway Of Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "You're No Good", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb35189e-9c5f-7434-f2fd-fcb9ce755902", + "path": "z://MP4\\VocalStarKaraoke\\Linda Ronstadt - Youre No Good.mp4", + "title": "Youre No Good" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "Dream On", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "10206fa1-36c8-14c1-a9a2-e50312e3b888", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ebb Tide - The Righteous Brothers.mp4", + "title": "Ebb Tide" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Bobby Vinton", + "playlist_title": "My Melody Of Love", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "18fae4d6-c5ef-4b27-4338-d89913792710", + "path": "z://MP4\\KaraFun Karaoke\\I Love How You Love Me - Bobby Vinton Karaoke Version KaraFun.mp4", + "title": "I Love How You Love Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Tavares", + "playlist_title": "She's Gone", + "found_song": { + "artist": "Hall & Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7665c903-e76e-b509-c631-5d135995e83d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hall & Oates - Shes Gone.mp4", + "title": "She's Gone" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Kiki Dee Band", + "playlist_title": "I've Got The Music In Me", + "found_song": { + "artist": "Kiki Dee", + "disabled": false, + "favorite": false, + "guid": "50d48ad5-b8ed-f842-7d4b-d76f73c7d845", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF162\\Kiki Dee - Ive Got The Music In Me - SF162 - 03.mp3", + "title": "Ive Got The Music In Me" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Cat Stevens", + "playlist_title": "Ready", + "found_song": { + "artist": "Cat Stevens", + "disabled": false, + "favorite": false, + "guid": "0fbd95c4-f6c4-1143-2a22-c00a3e2ff71e", + "path": "z://MP4\\KaraFun Karaoke\\Sad Lisa - Cat Stevens Karaoke Version KaraFun.mp4", + "title": "Sad Lisa" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "John Lennon", + "playlist_title": "#9 Dream", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "d4a37b0f-2789-8bd7-99ff-3414cd7b6563", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD061 - John Lennon & Paul McCartney\\John Lennon - Number 9 Dream - SFG061 - 07.mp3", + "title": "Number 9 Dream" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Jackson 5", + "playlist_title": "Whatever You Got, I Want", + "found_song": { + "artist": "Joe Milian, Christina ft Budden", + "disabled": false, + "favorite": false, + "guid": "c822c9b6-ba74-e74e-b5ce-bdc0e93f9e2b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF223\\Joe Milian, Christina ft Budden - Whatever You Want - Sf223 - 08.mp3", + "title": "Whatever You Want" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "The Stylistics", + "playlist_title": "Heavy Fallin' Out", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "fe805f10-584d-51ee-c6d6-da2798e58403", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Betcha By Golly, Wow - The Stylistics.mp4", + "title": "Betcha By Golly, Wow" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "John Lennon With The Plastic Ono Nuclear Band", + "playlist_title": "Whatever Gets You Thru The Night", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c37f7c1b-9bfe-f5d2-5086-08681be67fe8", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Lennon - Whatever Gets You Thru The Night.mp4", + "title": "Whatever Gets You Thru The Night" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "B.B. King", + "playlist_title": "Philadelphia", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "809007e5-3a77-f513-9e2d-559f8055e791", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Young - Philadelphia.mp4", + "title": "Philadelphia" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Eddie Kendricks", + "playlist_title": "One Tear", + "found_song": { + "artist": "Eddie Kendricks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "762708d7-270c-95a1-4245-d2fdeacda57c", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Kendricks - Keep On Truckin' (Part 1).mp4", + "title": "Keep On Truckin' (Part 1)" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Michael Holm", + "playlist_title": "When A Child Is Born", + "found_song": { + "artist": "Johnny Mathis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f316d82-dce5-f001-b378-0c0290ad537d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Mathis - When A Child Is Born.mp4", + "title": "When A Child Is Born" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "The Temptations", + "playlist_title": "Happy People", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "9c0b428f-fc6f-20ac-9502-a933e9ad2b89", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lady Soul - The Temptations.mp4", + "title": "Lady Soul" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Smokey Robinson", + "playlist_title": "I Am I Am", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Can't Get It Out Of My Head", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "6a7c9e31-2843-022b-657d-10ad60e5e86f", + "path": "z://MP4\\KtvEntertainment\\Electric Light Orchestra - Ain't It a Drag Karaoke Lyrics.mp4", + "title": "Ain't It a Drag" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Anne Murray", + "playlist_title": "Day Tripper", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b01144c-bf70-c7b8-08dc-ab6f1a68a288", + "path": "z://MP4\\VocalStarKaraoke\\Anne Murray - Daydream Believer.mp4", + "title": "Daydream Believer" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "The Miracles", + "playlist_title": "Don't Cha Love It", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Perry Como", + "playlist_title": "Christmas Dream", + "found_song": { + "artist": "NINA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ea055c52-84e6-6de0-7d58-b1fc9c3f10a8", + "path": "z://MP4\\ZoomKaraokeOfficial\\NINA - Christmas Dream.mp4", + "title": "Christmas Dream" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "The Hues Corporation", + "playlist_title": "Rockin' Soul", + "found_song": { + "artist": "Hues Corporation", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70d01efa-27e0-0b89-04dd-e8b82a172f97", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hues Corporation - Rock The Boat.mp4", + "title": "Rock The Boat" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Johnny Bristol", + "playlist_title": "You And I", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1315c47b-47b4-ced1-e206-14f4ec1d324f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers - You And I.mp4", + "title": "You And I" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Prelude", + "playlist_title": "After The Goldrush", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "298e082a-2001-4187-9fcd-e0eb2225f124", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Young - After The Gold Rush.mp4", + "title": "After The Gold Rush" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Stevie Wonder", + "title": "Boogie On Reggae Woman", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Paul Anka with Odia Coates", + "title": "One Man Woman/One Woman Man", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Rufus Featuring Chaka Khan", + "title": "You Got The Love", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Donny & Marie Osmond", + "title": "Morning Side Of The Mountain", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "B.T. Express", + "title": "Do It ('Til You're Satisfied)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gladys Knight And The Pips", + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Disco Tex & The Sex-O-Lettes", + "title": "Get Dancin'", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Barbara Mason", + "title": "From His Woman To You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Love Unlimited", + "title": "I Belong To You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "James Brown", + "title": "Funky President (People It's Bad)/Coldblooded", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Joneses", + "title": "Sugar Pie Guy Pt. 1", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Billy Preston", + "title": "Struttin'", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Tony Orlando & Dawn", + "title": "Look In My Eyes Pretty Woman", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The O'Jays", + "title": "Sunshine Part II", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bo Donaldson And The Heywoods", + "title": "The Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jim Stafford", + "title": "Your Bulldog Drinks Champagne", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Carl Graves", + "title": "Baby, Hang Up The Phone", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "America", + "title": "Lonely People", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Latimore", + "title": "Let's Straighten It Out", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Roy Rogers", + "title": "Hoppy, Gene And Me", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Al Martino", + "title": "To The Door Of The Sun (Alle Porte Del Sole)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Sugarloaf/Jerry Corbetta", + "title": "Don't Call Us, We'll Call You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Candi Staton", + "title": "As Long As He Takes Care Of Home", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Splinter", + "title": "Costafine Town", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Maria Muldaur", + "title": "I'm A Woman", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Commodores", + "title": "I Feel Sanctified", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Bill Withers", + "title": "Heartbreak Road", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Margie Joseph", + "title": "Words (are Impossible)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jim Weatherly", + "title": "The Need To Be", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Bland", + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chilliwack", + "title": "Crazy Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 34, + "fuzzy_match_count": 35, + "missing_count": 31, + "needs_manual_review": 35 + } + }, + { + "playlist_title": "1973 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Jim Croce", + "playlist_title": "Time In A Bottle", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5662d5e-9b8e-c33f-456a-8d7b4444869e", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Time In A Bottle.mp4", + "title": "Time In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Charlie Rich", + "playlist_title": "The Most Beautiful Girl", + "found_song": { + "artist": "Charlie Rich", + "disabled": false, + "favorite": false, + "guid": "25249141-6b69-b746-113a-d90a48b53b59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Most Beautiful Girl - Charlie Rich.mp4", + "title": "The Most Beautiful Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Elton John", + "playlist_title": "GOODBYE YELLOW BRICK ROAD", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "3308988f-229f-b8c4-b59c-d8e57fc748ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goodbye Yellow Brick Road - Elton John.mp4", + "title": "Goodbye Yellow Brick Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Todd Rundgren", + "playlist_title": "Hello It's Me", + "found_song": { + "artist": "Todd Rundgren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b20749a1-b2c3-0e2a-6f85-ecca09a6590d", + "path": "z://MP4\\KaraokeOnVEVO\\Todd Rundgren - Hello Its Me.mp4", + "title": "Hello It's Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Carpenters", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e76caaae-7dd5-f551-86f3-a8d39627f36a", + "path": "z://MP4\\KaraokeOnVEVO\\Carpenters - Top Of The World.mp4", + "title": "Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Al Wilson", + "playlist_title": "Show And Tell", + "found_song": { + "artist": "Al Wilson", + "disabled": false, + "favorite": false, + "guid": "5f850116-7a7a-84d0-d3df-6772ca525079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show And Tell - Al Wilson.mp4", + "title": "Show And Tell" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brownsville Station", + "playlist_title": "Smokin' In The Boy's Room", + "found_song": { + "artist": "Brownsville Station", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34927557-1909-bfbd-6c50-34556b0e031a", + "path": "z://MP4\\KaraokeOnVEVO\\Brownsville Station - Smokin In The Boys Room.mp4", + "title": "Smokin' In The Boy's Room" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Living For The City", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "da3c707b-c3a5-b01f-1776-0c86268893f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Living For The City - Stevie Wonder.mp4", + "title": "Living For The City" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "If You're Ready (Come Go With Me)", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eab4280e-4649-688c-77fc-328d521400de", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - If Youre Ready (Come Go With Me.mp4", + "title": "If You're Ready (Come Go With Me)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Chicago", + "playlist_title": "Just You 'n' Me", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6c606e-e002-f992-cbe3-95c604ac60bd", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Just You n Me.mp4", + "title": "Just You 'n' Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Let Me Be There", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "c1b8fc75-fac0-b76c-c66f-fd2d80647079", + "path": "z://MP4\\Sing King Karaoke\\Olivia Newton-John - Let Me Be There (Karaoke Version).mp4", + "title": "Let Me Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Lennon", + "playlist_title": "MIND GAMES", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "2aa09c65-8d9d-d987-5981-14fae2a30397", + "path": "z://CDG\\Various\\John Lennon - Mind Games.mp3", + "title": "Mind Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Until You Come Back To Me (That's What I'm Gonna Do)", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1d223ad-1e0a-43eb-37ed-33bd6d551979", + "path": "z://MP4\\KaraokeOnVEVO\\Aretha Franklin - Until You Come Back To Me (Thats What Im Gonna Do.mp4", + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Led Zeppelin", + "playlist_title": "D'yer Mak'er", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0ea182f2-52a9-6b1d-0b22-6311b5a778e2", + "path": "z://CDG\\Various\\Led Zeppelin - D'yer Mak'er.mp3", + "title": "D'yer Mak'er" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "The Whole Town's Laughing At Me", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d483b1c-b706-04a6-a792-d6f3c63df9c4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Teddy Pendergrass - The Whole Towns Laughing At Me.mp4", + "title": "The Whole Town's Laughing At Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ringo Starr", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "guid": "4f665551-902c-0dfc-18cc-8d627917ecec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF035\\Ringo Starr - You're Sixteen - SF035 - 13.mp3", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ringo Starr", + "playlist_title": "Photograph", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87eb02b4-5c48-c59a-68ed-a9039de79b12", + "path": "z://MP4\\KaraokeOnVEVO\\Ringo Starr - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Come Get To This", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "da6e9dae-7c81-27c5-536f-bda7aa7f7bad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Get To This - Marvin Gaye.mp4", + "title": "Come Get To This" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jim Croce", + "playlist_title": "I Got A Name", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "guid": "faabc721-8e69-1f67-f3af-51267a0e7a98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Got A Name - Jim Croce.mp4", + "title": "I Got A Name" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jim Stafford", + "playlist_title": "Spiders & Snakes", + "found_song": { + "artist": "Jim Stafford", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c49003db-4a0f-2669-26c3-f4c604cce60b", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Stafford - Spiders & Snakes.mp4", + "title": "Spiders & Snakes" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eddie Kendricks", + "playlist_title": "Keep On Truckin' (Part 1)", + "found_song": { + "artist": "Eddie Kendricks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "762708d7-270c-95a1-4245-d2fdeacda57c", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Kendricks - Keep On Truckin' (Part 1).mp4", + "title": "Keep On Truckin' (Part 1)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ann Peebles", + "playlist_title": "I Can't Stand The Rain", + "found_song": { + "artist": "Ann Peebles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "469c591a-6ee5-3322-f1f7-cdcef8cbb153", + "path": "z://MP4\\KaraokeOnVEVO\\Ann Peebles - I Cant Stand The Rain.mp4", + "title": "I Can't Stand The Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "El Chicano", + "playlist_title": "Tell Her She's Lovely", + "found_song": { + "artist": "El Chicano", + "disabled": false, + "favorite": false, + "guid": "64a71f0c-a2b0-2a77-73d4-a1c0577e6db4", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - El Chicano - Tell Her She's Lovely (Karaoke).mp4", + "title": "Tell Her She's Lovely" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marie Osmond", + "playlist_title": "Paper Roses", + "found_song": { + "artist": "Marie Osmond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3df2106-3163-1edf-e724-fefcdea0cb0f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marie Osmond - Paper Roses.mp4", + "title": "Paper Roses" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Merle Haggard", + "playlist_title": "If We Make It Through December", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "747626a6-ffc4-86c7-0e22-be7ef618397e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If We Make It Through December - Merle Haggard.mp4", + "title": "If We Make It Through December" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "David Essex", + "playlist_title": "Rock On", + "found_song": { + "artist": "David Essex", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb5971a7-4c0b-f943-4c4e-5d2f9f85625f", + "path": "z://MP4\\KaraokeOnVEVO\\David Essex - Rock On.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Tom T. Hall", + "playlist_title": "I Love", + "found_song": { + "artist": "Tom T. Hall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0fade696-4ffe-a54e-c3d5-3998f479c63a", + "path": "z://MP4\\KaraokeOnVEVO\\Tom T. Hall - I Love.mp4", + "title": "I Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Love Has No Pride", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "feb22dfd-a1ad-851b-03b0-eda48003da10", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Has No Pride - Linda Ronstadt.mp4", + "title": "Love Has No Pride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Steely Dan", + "playlist_title": "My Old School", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "4137b363-2ba6-dc08-4539-bfef494251a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Old School - Steely Dan.mp4", + "title": "My Old School" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Coven", + "playlist_title": "One Tin Soldier, The Legend of Billy Jack", + "found_song": { + "artist": "Coven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "410fe011-6b01-315e-18fc-66c18f22d46d", + "path": "z://MP4\\KaraokeOnVEVO\\Coven - One Tin Soldier, The Legend of Billy Jack.mp4", + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "The Joker", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cbb89f1-0b1e-0a21-455e-a921fb53329a", + "path": "z://MP4\\VocalStarKaraoke\\The Steve Miller Band - The Joker.mp4", + "title": "The Joker" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Barry White", + "playlist_title": "Never, Never Gonna Give Ya Up", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e0ef4ba3-305e-cb9a-ee61-65538a7e1307", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never, Never Gonna Give You Up - Barry White.mp4", + "title": "Never, Never Gonna Give You Up" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I've Got To Use My Imagination", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "a56f26ea-c812-ecd5-81ce-46daa4e37e2f", + "path": "z://MP4\\Stingray Karaoke\\I've Got To Use My Imagination in the style of Gladys Knight & The Pips karaoke video.mp4", + "title": "I've Got To Use My Imagination" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "The Stylistics", + "playlist_title": "Rockin' Roll Baby", + "found_song": { + "artist": "Stylistics", + "disabled": false, + "favorite": false, + "guid": "f7d0d1c5-3e66-79a4-0869-dc7f087fe90f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF091\\Stylistics - Rockin' Roll Baby - SF091 - 05.mp3", + "title": "Rockin' Roll Baby" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Paul McCartney & Wings", + "playlist_title": "Helen Wheels", + "found_song": { + "artist": "Paul McCartney ft. Wings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b958fe0-368b-5ab5-20c4-4291cf597b6b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul McCartney & Wings - Helen Wheels.mp4", + "title": "Helen Wheels" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way We Were", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "06822cb5-9ea9-e911-e5ed-d3f06cc98423", + "path": "z://MP4\\KaraFun Karaoke\\Barbra Streisand - The Way We Were.mp4", + "title": "The Way We Were" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "Midnight Train To Georgia", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "f7466c3d-b4e6-42a3-fdd5-94bfaac0fccb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Train To Georgia - Gladys Knight & The Pips.mp4", + "title": "Midnight Train To Georgia" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Grand Funk", + "playlist_title": "Walk Like A Man", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "dbd2f19a-74f0-db69-a1dd-144ee8d8f860", + "path": "z://CDG\\Various\\Frankie Valli & The Four Seasons - Walk Like A Man.mp3", + "title": "Walk Like A Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "The DeFranco Family featuring Tony DeFranco", + "playlist_title": "Heartbeat - It's A Lovebeat", + "found_song": { + "artist": "The DeFranco Family featuring Tony DeFranco", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ff0d66f-a468-894b-2fbc-beac8dc5a006", + "path": "z://MP4\\KaraokeOnVEVO\\The DeFranco Family featuring Tony DeFranco - Heartbeat Its A Lovebeat.mp4", + "title": "Heartbeat - It's A Lovebeat" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Three Dog Night", + "playlist_title": "Let Me Serenade You", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "a1502024-3c06-ca16-0efc-dfba91b8d840", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Easy To Be Hard - Three Dog Night.mp4", + "title": "Easy To Be Hard" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Paul Simon", + "playlist_title": "American Tune", + "found_song": { + "artist": "Eva Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7298c613-5130-9d29-f551-29e91678e3e1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eva Cassidy - American Tune.mp4", + "title": "American Tune" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Chi-lites", + "playlist_title": "I Found Sunshine", + "found_song": { + "artist": "The Chi-Lites", + "disabled": false, + "favorite": false, + "guid": "f011e231-adac-a897-4083-462e101a9831", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have You Seen Her - The Chi-Lites.mp4", + "title": "Have You Seen Her" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "The Persuaders", + "playlist_title": "Some Guys Have All The Luck", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0083d9c7-2aba-8b1e-63a8-37bdc39b9248", + "path": "z://MP4\\ZoomKaraokeOfficial\\Maxi Priest - Some Guys Have All The Luck.mp4", + "title": "Some Guys Have All The Luck" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Carole King", + "playlist_title": "Coraz??�n", + "found_song": { + "artist": "Carole King", + "disabled": false, + "favorite": false, + "guid": "6ee0ac7d-a7b6-f187-f972-53448b204efa", + "path": "z://MP4\\KaraFun Karaoke\\Jazzman - Carole King Karaoke Version KaraFun.mp4", + "title": "Jazzman" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Jungle Boogie", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "a2979ff9-c786-ae17-f642-acf76a1b40bc", + "path": "z://CDG\\Various\\Kool & The Gang - Jungle Boogie.mp3", + "title": "Jungle Boogie" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Smokey Robinson", + "playlist_title": "Baby Come Close", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "883fe387-4a4c-7f77-6b61-f3180171d02d", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Tears Of A Clown.mp4", + "title": "Tears Of A Clown" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Let Me Try Again (Laisse Moi Le Temps)", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c46e477a-e37b-c735-5ef8-c26a538137bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frank Sinatra - Let Me Try Again.mp4", + "title": "Let Me Try Again" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Joe Simon", + "playlist_title": "River", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "13741899-607b-4081-10d4-14b356579fd5", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - River (Karaoke Version).mp4", + "title": "River" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "The Temptations", + "playlist_title": "Let Your Hair Down", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "8cd20575-1e5d-306f-64a1-9d2282ed4d20", + "path": "z://MP4\\Sing King Karaoke\\The Temptations - Get Ready (Karaoke Version).mp4", + "title": "Get Ready" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Showdown", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "d56f128c-c656-2f8b-1452-d19fee39ed39", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 912\\Electric Light Orchestra - Do Ya - SFMW912 - 01.mp3", + "title": "Do Ya" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Bachman-Turner Overdrive", + "playlist_title": "Blue Collar", + "found_song": { + "artist": "Bachman-Turner Overdrive", + "disabled": false, + "favorite": false, + "guid": "978cc141-5e1f-e809-095c-8af21053b889", + "path": "z://MP4\\Let's Sing Karaoke\\Bachman-Turner Overdrive - Let It Ride (Karaoke & Lyrics).mp4", + "title": "Let It Ride" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Bob Dylan", + "playlist_title": "A Fool Such As I", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "8c8eead1-b45e-f1cf-b063-4e1a76c2214e", + "path": "z://MP4\\Stingray Karaoke\\A Fool Such As I in the Style of Elvis Presley karaoke video with lyrics (no lead vocal) (2).mp4", + "title": "A Fool Such As I" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Anne Murray", + "playlist_title": "Love Song", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "guid": "594ecdc1-b68e-03ab-d248-3cbb007ceaf7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Danny s Song - Anne Murray.mp4", + "title": "Danny s Song" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Edgar Winter Group", + "playlist_title": "Hangin' Around", + "found_song": { + "artist": "The Whites", + "disabled": false, + "favorite": false, + "guid": "a2f036c2-c632-1313-df8d-6ca38fda8128", + "path": "z://MP4\\KaraokeOnVEVO\\The Whites - Hangin' Around (Karaoke).mp4", + "title": "Hangin' Around" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Gregg Allman", + "playlist_title": "Midnight Rider", + "found_song": { + "artist": "The Allman Brothers Band", + "disabled": false, + "favorite": false, + "guid": "9e4ec3b2-eb5e-1e0c-cfc6-074af96a75bd", + "path": "z://MP4\\KtvEntertainment\\The Allman Brothers Band - Midnight Rider Karaoke Lyrics.mp4", + "title": "Midnight Rider" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Wednesday", + "playlist_title": "Last Kiss", + "found_song": { + "artist": "David Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c7488a6-0616-a93a-40fa-d6d5030bb809", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 838\\David Cassidy - Last Kiss - SFMW 838 -09.mp3", + "title": "Last Kiss" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Jim Croce", + "playlist_title": "It Doesn't Have To Be That Way", + "found_song": { + "artist": "Blow Monkeys", + "disabled": false, + "favorite": false, + "guid": "6b75a9fe-73cf-ad04-f5f7-fd0d99f24135", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF075\\Blow Monkeys - It Doesn't Have To Be That Way - SF075 - 08.mp3", + "title": "It Doesn't Have To Be That Way" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "John Denver", + "playlist_title": "Please, Daddy", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "9ac99db9-c97d-668e-d0e4-1b05e6f186e5", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - My Sweet Lady (Karaoke).mp4", + "title": "My Sweet Lady" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Melanie", + "playlist_title": "Will You Love Me Tomorrow?", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "67016874-ff96-ff33-28c6-1038cfa94122", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Love Me Tomorrow - The Shirelles.mp4", + "title": "Will You Love Me Tomorrow" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Don Goodwin", + "playlist_title": "This Is Your Song", + "found_song": { + "artist": "Ronan Keating", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fff9adc0-ffa7-44ac-b146-c71d105e7961", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronan Keating - This Is Your Song.mp4", + "title": "This Is Your Song" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Garfunkel", + "playlist_title": "I Shall Sing", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52b54ed2-f7ec-42ee-a17b-8f84a06daed5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Simon And Garfunkel - Cecilia.mp4", + "title": "Cecilia" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Wang Dang Doodle", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7225fbd2-a1eb-f587-897d-04e9e0c8ca1e", + "path": "z://MP4\\Sing King Karaoke\\The Pointer Sisters - Slow Hand.mp4", + "title": "Slow Hand" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Joni Mitchell", + "playlist_title": "Raised On Robbery", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edad6b48-6e5b-9b36-637d-1538ebe63536", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joni Mitchell - River.mp4", + "title": "River" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "J. Frank Wilson and The Cavaliers", + "playlist_title": "Last Kiss", + "found_song": { + "artist": "J. Frank Wilson and The Cavaliers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56788bcd-61d5-1e49-83c0-01229d7a4769", + "path": "z://MP4\\KaraokeOnVEVO\\J. Frank Wilson and The Cavaliers - Last Kiss.mp4", + "title": "Last Kiss" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "The Isley Brothers", + "playlist_title": "What It Comes Down To", + "found_song": { + "artist": "The Isley Brothers", + "disabled": false, + "favorite": false, + "guid": "efbaadcf-675b-3069-df27-a71079ea5418", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Your Thing - The Isley Brothers.mp4", + "title": "It s Your Thing" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Helen Reddy", + "title": "Leave Me Alone (ruby Red Dress)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Love Unlimited Orchestra", + "title": "Love's Theme", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "War", + "title": "Me And Baby Brother", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Donny Osmond", + "title": "When I Fall In Love/Are You Lonesome Tonight", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Loggins & Messina", + "title": "My Music", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Billy Preston", + "title": "Space Race", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Al Green", + "title": "Livin' For You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tony Orlando & Dawn", + "title": "Who's In The Strawberry Patch With Sally", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Cheech & Chong", + "title": "Sister Mary Elephant (Shudd-Up!)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ian Thomas", + "title": "Painted Ladies", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bobby Blue Bland", + "title": "This Time I'm Gone For Good", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Kris Kristofferson & Rita Coolidge", + "title": "A Song I'd Like To Sing", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Earth, Wind & Fire", + "title": "Keep Your Head To The Sky", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.W. Stevenson", + "title": "The River Of Love", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "First Choice", + "title": "Smarty Pants", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Intruders", + "title": "I Wanna Know Your Name", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The O'Jays", + "title": "Put Your Hands Together", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Isaac Hayes", + "title": "Joy Pt. I", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Black Oak Arkansas", + "title": "Jim Dandy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Band", + "title": "Ain't Got No Home", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "B.B. King", + "title": "I Like To Live The Love", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Who", + "title": "Love, Reign O'er Me", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown", + "title": "Stoned To The Bone - Part 1", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Keith Hampshire", + "title": "Big Time Operator", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Love Unlimited", + "title": "It May Be Winter Outside, (But In My Heart It's Spring)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Alice Cooper", + "title": "Teenage Lament '74", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Roy Clark", + "title": "Somewhere Between Love And Tomorrow", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 5th Dimension", + "title": "Flashback", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Lamont Dozier", + "title": "Trying To Hold On To My Woman", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Gary & Dave", + "title": "Could You Ever Love Me Again", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Albert Hammond", + "title": "Half A Million Miles From Home", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The De Franco Family", + "title": "Abra-Ca-Dabra", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Dramatics", + "title": "Fell For You", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Johnny Mathis", + "title": "Life Is A Song Worth Singing", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Curtis Mayfield", + "title": "Can't Say Nothin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 35, + "missing_count": 35, + "needs_manual_review": 35 + } + }, + { + "playlist_title": "1972 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Paul", + "playlist_title": "Me And Mrs. Jones", + "found_song": { + "artist": "Billy Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b4cbdd2-975e-434a-4f2b-8835c905b6af", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Paul - Me And Mrs Jones.mp4", + "title": "Me And Mrs Jones" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Gilbert O'Sullivan", + "playlist_title": "Clair", + "found_song": { + "artist": "Gilbert O'Sullivan", + "disabled": false, + "favorite": false, + "guid": "f12b21af-4df1-ab5d-5f59-8518098ce3ba", + "path": "z://MP4\\KaraFun Karaoke\\Clair - Gilbert O'Sullivan Karaoke Version KaraFun.mp4", + "title": "Clair" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Al Green", + "playlist_title": "You Ought To Be With Me", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "744538c3-97bd-a9ba-fd8f-21ea99a954b4", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - You Ought To Be With Me (Karaoke & Lyrics).mp4", + "title": "You Ought To Be With Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carly Simon", + "playlist_title": "You're So Vain", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "b31261c5-14ac-0770-063c-2a2fe289753a", + "path": "z://MP4\\Stingray Karaoke\\You're So Vain Carly Simon Karaoke with Lyrics.mp4", + "title": "You're So Vain" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Albert Hammond", + "playlist_title": "It Never Rains In Southern California", + "found_song": { + "artist": "Albert Hammond", + "disabled": false, + "favorite": false, + "guid": "8db6601e-7ce4-96f3-071b-e624476cbeec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Never Rains In Southern California - Albert Hammond.mp4", + "title": "It Never Rains In Southern California" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donna Fargo", + "playlist_title": "Funny Face", + "found_song": { + "artist": "Donna Fargo", + "disabled": false, + "favorite": false, + "guid": "3c119ce4-7dc3-045f-3d53-915d6e2f8405", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Funny Face - Donna Fargo.mp4", + "title": "Funny Face" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Helen Reddy", + "playlist_title": "I Am Woman", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "622d6395-55d9-5246-9d67-5dccdde2fd40", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am Woman - Helen Reddy.mp4", + "title": "I Am Woman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Curtis Mayfield", + "playlist_title": "Superfly", + "found_song": { + "artist": "Curtis Mayfield", + "disabled": false, + "favorite": false, + "guid": "9d5f4dfb-028a-6f63-e338-ec290b2a0659", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superfly - Curtis Mayfield.mp4", + "title": "Superfly" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Four Tops", + "playlist_title": "Keeper Of The Castle", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a73e6be-4a54-aeee-65bc-67ed6ba2fc8f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Keeper Of The Castle.mp4", + "title": "Keeper Of The Castle" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jethro Tull", + "playlist_title": "Living In The Past", + "found_song": { + "artist": "Jethro Tull", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d43c9f2-116e-17a0-a895-4cfb454a8b3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jethro Tull - Living In The Past.mp4", + "title": "Living In The Past" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Temptations", + "playlist_title": "Papa Was A Rollin' Stone", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e489222-6983-3a1e-676b-e513ebbefd1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Papa Was A Rollin Stone.mp4", + "title": "Papa Was A Rollin' Stone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Superstition", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "e8f2c86c-11c0-5db7-ab70-29e4b6aebbf7", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Superstition (Karaoke Version).mp4", + "title": "Superstition" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Elton John", + "playlist_title": "Crocodile Rock", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "779e40c1-544b-81e0-d61a-62e097970bbe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crocodile Rock - Elton John.mp4", + "title": "Crocodile Rock" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "James Taylor", + "playlist_title": "Don't Let Me Be Lonely Tonight", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "79903b1d-d87d-50b2-a07c-f30f16db96f7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Lonely Tonight - James Taylor.mp4", + "title": "Don t Let Me Be Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Nash", + "playlist_title": "I Can See Clearly Now", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "9cf36048-f45d-f51b-8edd-48b52936a0af", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Nash - I Can See Clearly Now (Karaoke).mp4", + "title": "I Can See Clearly Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Three Dog Night", + "playlist_title": "Pieces Of April", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "766f5f3b-c8b1-be54-5f9b-161715f4f098", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Pieces Of April.mp4", + "title": "Pieces Of April" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Timmy Thomas", + "playlist_title": "Why Can't We Live Together", + "found_song": { + "artist": "Timmy Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1351569a-f1fc-5576-f152-f355ff64174b", + "path": "z://MP4\\KaraokeOnVEVO\\Timmy Thomas - Why Cant We Live Together.mp4", + "title": "Why Can't We Live Together" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carole King", + "playlist_title": "Been To Canaan", + "found_song": { + "artist": "Carole King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f3e568e-302f-b686-cf0c-5708cc7e16d7", + "path": "z://MP4\\KaraokeOnVEVO\\Carole King - Been To Canaan.mp4", + "title": "Been To Canaan" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hurricane Smith", + "playlist_title": "Oh, Babe, What Would You Say?", + "found_song": { + "artist": "Hurricane Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87141556-f110-fe82-7d8c-fa479a7f15e1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hurricane Smith - Oh Babe What Would You Say.mp4", + "title": "Oh Babe What Would You Say" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Elvis Presley", + "playlist_title": "Separate Ways", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9ba9f49a-b290-2300-1e5c-070a861a45a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Separate Ways - Elvis Presley.mp4", + "title": "Separate Ways" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "America", + "playlist_title": "Ventura Highway", + "found_song": { + "artist": "America", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b31c4f6-8e1e-8095-d89e-8d612cdf9aaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\America - Ventura Highway.mp4", + "title": "Ventura Highway" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Steely Dan", + "playlist_title": "Do It Again", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "bf186305-ea78-86b1-c1a8-053726d78c78", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do It Again - Steely Dan.mp4", + "title": "Do It Again" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Stylistics", + "playlist_title": "I'm Stone In Love With You", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "f25e5ab0-01a2-66de-ca47-e930e7ccb8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Stone In Love With You - The Stylistics.mp4", + "title": "I m Stone In Love With You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Osmonds", + "playlist_title": "Crazy Horses", + "found_song": { + "artist": "The Osmonds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88c8717e-1122-05d1-0294-8a609136ada3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Osmonds - Crazy Horses.mp4", + "title": "Crazy Horses" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Joni Mitchell", + "playlist_title": "You Turn Me On, I'm A Radio", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "88a77813-74fd-ef9a-2ac8-9d6870300445", + "path": "z://MP4\\Stingray Karaoke\\You Turn Me On I'm A Radio Joni Mitchell Karaoke with Lyrics.mp4", + "title": "You Turn Me On I'm A Radio" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "John Denver", + "playlist_title": "Rocky Mountain High", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "bafcb602-84dd-1f92-35d5-ff9dae2052d9", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Rocky Mountain High (Karaoke).mp4", + "title": "Rocky Mountain High" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Chuck Berry", + "playlist_title": "Reelin' & Rockin'", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "90508730-7a99-b666-6ba5-581b16fc52f4", + "path": "z://CDG\\Various\\Chuck Berry - Reelin' & Rockin'.mp3", + "title": "Reelin' & Rockin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Jim Croce", + "playlist_title": "Operator (That's Not the Way it Feels)", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32b8d2b-74f4-4900-a23d-eb92be2167cd", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Operator (Thats Not the Way it Feels.mp4", + "title": "Operator (That's Not the Way it Feels)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Rod Stewart", + "playlist_title": "Angel", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "994b1d51-d783-1845-1040-dcd566ee8a77", + "path": "z://CDG\\Various\\Rod Stewart - Angel.mp3", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eagles", + "playlist_title": "Peaceful Easy Feeling", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "91dec07c-0d85-22fa-be2b-c63d135ebb3e", + "path": "z://MP4\\TheKARAOKEChannel\\Peaceful Easy Feeling Eagles Karaoke with Lyrics.mp4", + "title": "Peaceful Easy Feeling" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dr. Hook And The Medicine Show", + "playlist_title": "The Cover Of Rolling Stone", + "found_song": { + "artist": "Dr. Hook And The Medicine Show", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2566cfb1-4988-fddc-8dbb-c084b846890f", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook And The Medicine Show - The Cover Of Rolling Stone.mp4", + "title": "The Cover Of Rolling Stone" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Slade", + "playlist_title": "Mama Weer All Crazee Now", + "found_song": { + "artist": "Slade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da0cf45a-1c3d-873e-17b0-94341e85e39e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Slade - Mama Weer All Crazee Now.mp4", + "title": "Mama Weer All Crazee Now" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Jesus Is Just Alright", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f8b85-7305-221c-0512-02080cf9ce29", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - Jesus Is Just Alright.mp4", + "title": "Jesus Is Just Alright" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Knock Knock Who's There", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14345e44-29fa-7eb1-ecad-88cfa40424e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Knock Knock Whos There.mp4", + "title": "Knock Knock Who's There" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "I Never Said Goodbye", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ca06b2b-bfd6-d05a-b1a3-109156ade717", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - I Never Said Goodbye.mp4", + "title": "I Never Said Goodbye" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Rockin' Pneumonia - Boogie Woogie Flu", + "found_song": { + "artist": "Johnny Rivers", + "disabled": false, + "favorite": false, + "guid": "2bbe8159-a591-4b9f-95d4-87f7547134d3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin Pneumonia And The Boogie Woogie Flu - Johnny Rivers.mp4", + "title": "Rockin Pneumonia And The Boogie Woogie Flu" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Kenny Loggins & Jim Messina", + "playlist_title": "Your Mama Don't Dance", + "found_song": { + "artist": "Kenny Loggins & Jim Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb5ede7f-30a3-14de-e535-89e0dc3127c4", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Loggins & Jim Messina - Your Mama Don't Dance.mp4", + "title": "Your Mama Don't Dance" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Bread", + "playlist_title": "Sweet Surrender", + "found_song": { + "artist": "Birdy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "345775e2-a843-6182-4f56-cb1803ff189f", + "path": "z://MP4\\sing2karaoke\\Birdy - Surrender.mp4", + "title": "Surrender" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Neil Diamond", + "playlist_title": "Walk On Water", + "found_song": { + "artist": "Milk Inc", + "disabled": false, + "favorite": false, + "guid": "3c7bd8ee-c6de-4426-1723-6d6c8f1fbabc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF197\\Milk Inc - Walk On Water - SF197 - 11.mp3", + "title": "Walk On Water" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Cat Stevens", + "playlist_title": "Sitting", + "found_song": { + "artist": "Cat Stevens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c87174d-c514-a32c-3e63-e7aca06e617a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cat Stevens - The Wind.mp4", + "title": "The Wind" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Harold Melvin And The Blue Notes", + "playlist_title": "If You Don't Know Me By Now", + "found_song": { + "artist": "Harold Melvin & The Blue Notes", + "disabled": false, + "favorite": false, + "guid": "34fa1ee8-899a-8574-5989-eaaeb8622a9d", + "path": "z://MP4\\Let's Sing Karaoke\\Harold Melvin & The Blue Notes - If You Don't Know Me By Now (Karaoke & Lyrics).mp4", + "title": "If You Don't Know Me By Now" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Jackson 5", + "playlist_title": "Corner Of The Sky", + "found_song": { + "artist": "Pippin", + "disabled": false, + "favorite": false, + "guid": "2096b7e1-e6f3-2f87-b935-17b1c374e7eb", + "path": "z://MP4\\KaraFun Karaoke\\Corner of the Sky - Pippin Karaoke Version KaraFun.mp4", + "title": "Corner of the Sky" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Raspberries", + "playlist_title": "I Wanna Be With You", + "found_song": { + "artist": "Hootie & the Blowfish", + "disabled": false, + "favorite": false, + "guid": "2b60e7ba-57ae-f935-36b5-ce0c72b08a51", + "path": "z://MP4\\KaraFun Karaoke\\Only Wanna Be With You - Hootie & the Blowfish Karaoke Version KaraFun.mp4", + "title": "Only Wanna Be With You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Seals & Crofts", + "playlist_title": "Summer Breeze", + "found_song": { + "artist": "Everly Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7b4cefa-e606-b2c8-bd61-d65d51e79c28", + "path": "z://CDG\\Sunfly Collection\\Sunfly Aribter\\FLY024\\Everly Brothers - Summer Breeze - FLY024 - 03.mp3", + "title": "Summer Breeze" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Blue Haze", + "playlist_title": "Smoke Gets In Your Eyes", + "found_song": { + "artist": "Platters", + "disabled": false, + "favorite": false, + "guid": "df116a95-a7f5-a5ee-4dee-848d2362e009", + "path": "z://MP4\\Let's Sing Karaoke\\Platters - Smoke Gets In Your Eyes (Karaoke & Lyrics).mp4", + "title": "Smoke Gets In Your Eyes" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The Hollies", + "playlist_title": "Long Dark Road", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "guid": "f4c82606-8f57-f70b-890c-df6a4114963e", + "path": "z://MP4\\Let's Sing Karaoke\\Hollies, The - Long Cool Woman (Karaoke & Lyrics).mp4", + "title": "Long Cool Woman" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Trouble Man", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "c0add826-eee9-7b65-9bdf-3d41f9e385bd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pride And Joy - Marvin Gaye.mp4", + "title": "Pride And Joy" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Bee Gees", + "playlist_title": "Alive", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "dd62403e-a847-308b-4ad2-9a3a7124bbd3", + "path": "z://CDG\\Various\\Bee Gees - Stayin' Alive.mp3", + "title": "Stayin' Alive" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "King Harvest", + "playlist_title": "Dancing In The Moonlight", + "found_song": { + "artist": "King Harvest", + "disabled": false, + "favorite": false, + "guid": "09b04506-c965-88ab-a2bb-f818833412a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancin In The Moonlight - King Harvest.mp4", + "title": "Dancin In The Moonlight" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Who", + "playlist_title": "The Relay", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "97e3bb5b-9ae4-ca5a-af33-26415702ac28", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Who - The Real Me (Karaoke).mp4", + "title": "The Real Me" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Blue Ridge Rangers", + "playlist_title": "Jambalaya (On The Bayou)", + "found_song": { + "artist": "Hank Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b871ae8-4d44-049d-6490-300534d87fcd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hank Williams - Jambalaya (On The Bayou).mp4", + "title": "Jambalaya (On The Bayou)" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Bill Withers", + "playlist_title": "Let Us Love", + "found_song": { + "artist": "Bill Withers", + "disabled": false, + "favorite": false, + "guid": "c4ba62aa-68e8-4134-2188-4387f31c022e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Use Me - Bill Withers.mp4", + "title": "Use Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Jermaine Jackson", + "playlist_title": "Daddy's Home", + "found_song": { + "artist": "Jermaine Jackson", + "disabled": false, + "favorite": false, + "guid": "9756e887-9d1d-f608-02cd-25ce4b46c6c4", + "path": "z://MP4\\KaraFun Karaoke\\Do What You Do - Jermaine Jackson Karaoke Version KaraFun.mp4", + "title": "Do What You Do" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "James Brown", + "playlist_title": "I Got A Bag Of My Own", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f8714515-a6d0-5583-3eb4-ca5bcca74d9c", + "path": "z://MP4\\Sing King Karaoke\\James Brown - I Got You (ifeel Good.mp4", + "title": "I Got You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "The Chi-lites", + "playlist_title": "We Need Order", + "found_song": { + "artist": "The Chi-Lites", + "disabled": false, + "favorite": false, + "guid": "f011e231-adac-a897-4083-462e101a9831", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have You Seen Her - The Chi-Lites.mp4", + "title": "Have You Seen Her" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Mac Davis", + "playlist_title": "Everybody Loves A Love Song", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "532bd604-d1ba-df83-d28c-b76b308a29e8", + "path": "z://MP4\\KaraokeOnVEVO\\B. J. Thomas - Everybody Loves A Rain Song.mp4", + "title": "Everybody Loves A Rain Song" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Don McLean", + "playlist_title": "Dreidel", + "found_song": { + "artist": "Don Mclean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28b02031-fb52-d9a1-b675-27937f0af7d5", + "path": "z://MP4\\KaraokeOnVEVO\\Don Mclean - Crying.mp4", + "title": "Crying" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Bette Midler", + "playlist_title": "Do You Want To Dance?", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "7a1850ae-d8f2-27fe-367e-384d298dedbb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do You Wanna Dance - Bette Midler.mp4", + "title": "Do You Wanna Dance" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Wayne Newton", + "playlist_title": "Anthem", + "found_song": { + "artist": "Wayne Newton", + "disabled": false, + "favorite": false, + "guid": "420f6cc7-8e02-77d5-6e08-a96134a85bee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Danke Schoen - Wayne Newton.mp4", + "title": "Danke Schoen" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Spinners", + "playlist_title": "Could It Be I'm Falling In Love", + "found_song": { + "artist": "Spinners", + "disabled": false, + "favorite": false, + "guid": "8ed772d4-455d-20e8-c1e6-15ea58dd40bd", + "path": "z://CDG\\Various\\Spinners - Could It Be I'm Falling In Love.mp3", + "title": "Could It Be I'm Falling In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Glen Campbell", + "playlist_title": "One Last Time", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "054f171c-afd2-88a6-0768-86005ba6d0f5", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - One Last Time (Karaoke Version).mp4", + "title": "One Last Time" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Merry Clayton", + "playlist_title": "Oh No, Not My Baby", + "found_song": { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "guid": "ecb493e9-d4d6-8c72-0040-ac8c9125e83c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Manfred Mann - Oh No Not My Baby - SF086 - 02.mp3", + "title": "Oh No Not My Baby" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Limmie & Family Cookin'", + "playlist_title": "You Can Do Magic", + "found_song": { + "artist": "Limmie & Family Cookin'", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8010b8ae-821e-a3d7-7ff3-550e48aeec0b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limmie and Family Cookin - You Can Do Magic.mp4", + "title": "You Can Do Magic" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Kris Kristofferson", + "playlist_title": "Jesus Was A Capricorn", + "found_song": { + "artist": "Kris Kristofferson", + "disabled": false, + "favorite": false, + "guid": "0fb63490-9e7e-37a6-8743-114832b11ac9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Me Lord - Kris Kristofferson.mp4", + "title": "Why Me Lord" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Joey Heatherton", + "playlist_title": "I'm Sorry", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "38d3759d-6f02-860a-aaa4-a8369c63fd52", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - I'm Sorry (Karaoke).mp4", + "title": "I'm Sorry" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Didn't We", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "205547ac-2911-70da-1032-cbc02976892b", + "path": "z://CDG\\Various\\Barbra Streisand - Main Event.mp3", + "title": "Main Event" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Bobby Vinton", + "playlist_title": "But I Do", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "1554998d-baef-6d3d-b714-25f28babcb20", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Vinton - Blue On Blue (Karaoke).mp4", + "title": "Blue On Blue" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Austin Roberts", + "title": "Something's Wrong With Me", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Wings", + "title": "Hi, Hi, Hi", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "War", + "title": "The World Is A Ghetto", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bulldog", + "title": "No", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bobby Womack & Peace", + "title": "Harry Hippie", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brighter Side Of Darkness", + "title": "Love Jones", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Chicago", + "title": "Dialogue (Part I & II)", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Joe Simon", + "title": "Trouble In My Home/I Found My Dad", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Clean Living", + "title": "In Heaven There Is No Beer", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Peter Skellern", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Dennis Yost And The Classics IV", + "title": "What Am I Crying For?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Joe Cocker and The Chris Stainton Band", + "title": "Woman To Woman", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Luther Ingram", + "title": "I'll Be Your Shelter (In Time Of Storm)", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Smokey Robinson & The Miracles", + "title": "I Can't Stand To See You Cry", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "Looking Through The Eyes Of Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The Main Ingredient", + "title": "You've Got To Take It (If You Want It)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The O'Jays", + "title": "992 Arguments", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Cornelius Brothers & Sister Rose", + "title": "I'm Never Gonna Be Alone Anymore", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Nilsson", + "title": "Remember (Christmas)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gary Glitter", + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dawn Featuring Tony Orlando", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Keith Hampshire", + "title": "Daytime Night-Time", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown-Lyn Collins", + "title": "What My Baby Needs Now Is A Little More Lovin'", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Edward Bear", + "title": "Last Song", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lobo", + "title": "Don't Expect Me To Be Your Friend", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Cashman & West", + "title": "Songman", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Valerie Simpson", + "title": "Silly Wasn't I", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Emerson, Lake & Palmer", + "title": "Lucky Man", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gallery", + "title": "Big City Miss Ruth Ann", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Paul Davis", + "title": "Boogie Woogie Man", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Rita Coolidge", + "title": "Fever/My Crew", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Ten Years After", + "title": "Choo Choo Mama", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Brownsville Station", + "title": "The Red Back Spider", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 32, + "missing_count": 33, + "needs_manual_review": 32 + } + }, + { + "playlist_title": "1971 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Melanie", + "playlist_title": "Brand New Key", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "460e4251-407d-579c-b86f-8181fbd5f182", + "path": "z://MP4\\KaraokeOnVEVO\\Melanie - Brand New Key.mp4", + "title": "Brand New Key" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Three Dog Night", + "playlist_title": "An Old Fashioned Love Song", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "a82042ce-a0c0-eff1-9a32-8b895b354aea", + "path": "z://MP4\\Let's Sing Karaoke\\Three Dog Night - An Old Fashioned Love Song (Karaoke & Lyrics).mp4", + "title": "An Old Fashioned Love Song" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Chi-lites", + "playlist_title": "Have You Seen Her", + "found_song": { + "artist": "The Chi-Lites", + "disabled": false, + "favorite": false, + "guid": "f011e231-adac-a897-4083-462e101a9831", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have You Seen Her - The Chi-Lites.mp4", + "title": "Have You Seen Her" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bread", + "playlist_title": "Baby I'm - A Want You", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "03e76ecd-f7f5-519b-89ae-d2b091837582", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby I m-A Want You - Bread.mp4", + "title": "Baby I m-A Want You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "Respect Yourself", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dede9b3-a62a-462f-3cf7-39fcd689f8af", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - Respect Yourself.mp4", + "title": "Respect Yourself" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Stylistics", + "playlist_title": "You Are Everything", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "6f137d12-5bc7-fb09-5d76-9dfdcf60bc33", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are Everything - The Stylistics.mp4", + "title": "You Are Everything" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Isaac Hayes", + "playlist_title": "Theme From Shaft", + "found_song": { + "artist": "Isaac Hayes", + "disabled": false, + "favorite": false, + "guid": "642d0318-a690-05ff-7ba1-8da7cdf15a18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Theme From Shaft - Isaac Hayes.mp4", + "title": "Theme From Shaft" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The New Seekers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cher", + "playlist_title": "Gypsys, Tramps & Thieves", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "3e5f0ace-9ab4-ed19-89d7-e2fd10a2c129", + "path": "z://MP4\\Let's Sing Karaoke\\Cher - Gypsys, Tramps & Thieves (Karaoke & Lyrics) (2) (2).mp4", + "title": "Gypsys, Tramps & Thieves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Al Green", + "playlist_title": "Let's Stay Together", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "ae928bb7-065d-d001-3d34-359c992a8723", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Stay Together - Al Green.mp4", + "title": "Let s Stay Together" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Rock Steady", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "f1961690-4ee2-2c2a-3806-d2304a16d6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock Steady - Aretha Franklin.mp4", + "title": "Rock Steady" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Who", + "playlist_title": "Behind Blue Eyes", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "1d4d31d9-e36e-a0f5-aec7-3007d605bec3", + "path": "z://MP4\\TheKARAOKEChannel\\The Who - Behind Blue Eyes.mp4", + "title": "Behind Blue Eyes" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Charley Pride", + "playlist_title": "Kiss An Angel Good Mornin'", + "found_song": { + "artist": "Charley Pride", + "disabled": false, + "favorite": false, + "guid": "1a390492-0128-c1b6-5784-0dffd378f138", + "path": "z://MP4\\KtvEntertainment\\Charley Pride - Kiss An Angel Good Mornin' Karaoke Lyrics.mp4", + "title": "Kiss An Angel Good Mornin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Carly Simon", + "playlist_title": "Anticipation", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04ae3530-180f-2ab5-9589-ebc690251c67", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Anticipation.mp4", + "title": "Anticipation" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Jerry Lee Lewis", + "playlist_title": "Me And Bobby McGee", + "found_song": { + "artist": "Jerry Lee Lewis", + "disabled": false, + "favorite": false, + "guid": "0f5485cf-5629-2ec7-e01e-aaaa72da4913", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Me And Bobby McGee - Jerry Lee Lewis.mp4", + "title": "Me And Bobby McGee" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Redbone", + "playlist_title": "The Witch Queen Of New Orleans", + "found_song": { + "artist": "Redbone", + "disabled": false, + "favorite": false, + "guid": "822159fb-2160-0e36-c3cf-d1473458b97f", + "path": "z://MP4\\KaraFun Karaoke\\The Witch Queen of New Orleans - Redbone Karaoke Version KaraFun.mp4", + "title": "The Witch Queen of New Orleans" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Elton John", + "playlist_title": "Levon", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "8f92431e-6a63-4023-8abf-eef90f99d924", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Levon - Elton John.mp4", + "title": "Levon" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Grateful Dead", + "playlist_title": "Truckin'", + "found_song": { + "artist": "Grateful Dead", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90967072-5bf7-c669-aa64-3790e05a0167", + "path": "z://MP4\\ZoomKaraokeOfficial\\Grateful Dead - Truckin.mp4", + "title": "Truckin'" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Black Dog", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "7009cab8-2f2d-0321-9d63-131a26765759", + "path": "z://MP4\\Let's Sing Karaoke\\Led Zeppelin - Black Dog (Karaoke & Lyrics).mp4", + "title": "Black Dog" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Nilsson", + "playlist_title": "Without You", + "found_song": { + "artist": "Nilsson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d887ad3-6c22-b7de-b2a1-906ed7d48433", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nilsson - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Coasters", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Coasters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3876256-d059-2613-0043-439787f54eb1", + "path": "z://MP4\\KaraokeOnVEVO\\The Coasters - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Fire And Water", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "36da35cc-6c50-a44a-c343-a649c12e1c3f", + "path": "z://MP4\\KaraokeOnVEVO\\Wilson Pickett - Fire And Water (Karaoke).mp4", + "title": "Fire And Water" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Three Dog Night", + "playlist_title": "Never Been To Spain", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "04280fa9-61bc-0c97-ded8-235371cbca2a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Been to Spain - Three Dog Night.mp4", + "title": "Never Been to Spain" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Alice Cooper", + "playlist_title": "Under My Wheels", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3a13643-ddbc-8931-131d-4da4a445b691", + "path": "z://CDG\\Various\\Alice Cooper - Under My Wheels.mp3", + "title": "Under My Wheels" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "3ceac0e1-1b33-0b06-39e1-14f7a13a52b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Affair - Sly And The Family Stone.mp4", + "title": "Family Affair" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Don McLean", + "playlist_title": "American Pie (Parts I & II)", + "found_song": { + "artist": "Don McLean", + "disabled": false, + "favorite": false, + "guid": "788b984b-aa69-433c-c30d-1c9beb22e848", + "path": "z://MP4\\KaraFun Karaoke\\American Pie (45 version) - Don McLean Karaoke Version KaraFun.mp4", + "title": "American Pie (45 version)" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Michael Jackson", + "playlist_title": "Got To Be There", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "3439c7ad-f218-0a17-51a6-351a14baf92a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Be There - Michael Jackson.mp4", + "title": "Will You Be There" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Sonny & Cher", + "playlist_title": "All I Ever Need Is You", + "found_song": { + "artist": "Sonny & Cher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d0fc0e-2e3a-d47d-37af-f971d7766f6f", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny & Cher - All I Ever Need Is You.mp4", + "title": "All I Ever Need Is You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "David Cassidy", + "playlist_title": "Cherish", + "found_song": { + "artist": "David Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c7488a6-0616-a93a-40fa-d6d5030bb809", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 838\\David Cassidy - Last Kiss - SFMW 838 -09.mp3", + "title": "Last Kiss" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Donnie Elbert", + "playlist_title": "Where Did Our Love Go", + "found_song": { + "artist": "Soft Cell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e372257-0420-72cf-7949-8f66ef7f7b4d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Soft Cell - Where Did Our Love Go.mp4", + "title": "Where Did Our Love Go" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Hillside Singers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Rod Stewart With Faces", + "playlist_title": "(I Know) I'm Losing You", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79b3e670-2d59-4b4a-2998-5bf49dd077be", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - (I Know Im Losing You.mp4", + "title": "(I Know) I'm Losing You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Neil Diamond", + "playlist_title": "Stones/Crunchy Granola Suite", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728d8bbe-ef54-a6a5-d5a2-729eb1af9538", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Crunchy Granola Suite.mp4", + "title": "Crunchy Granola Suite" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Badfinger", + "playlist_title": "Day After Day", + "found_song": { + "artist": "Badfinger", + "disabled": false, + "favorite": false, + "guid": "e8a3345c-950c-ee3c-1849-d60a47f9018f", + "path": "z://MP4\\KaraokeOnVEVO\\Badfinger - No Matter What (Karaoke).mp4", + "title": "No Matter What" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Joe Simon", + "playlist_title": "Drowning In The Sea Of Love", + "found_song": { + "artist": "Eva Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3596517-19b1-1b8d-e449-bb27b4c99906", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eva Cassidy - Drowning In The Sea Of Love.mp4", + "title": "Drowning In The Sea Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Mickey Newbury", + "playlist_title": "An American Trilogy", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "888abc02-59e9-3b43-6c45-fe9b2f256d2e", + "path": "z://MP4\\TheKARAOKEChannel\\Elvis Presley - An American Trilogy.mp4", + "title": "An American Trilogy" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Sweathog", + "playlist_title": "Hallelujah", + "found_song": { + "artist": "Burke, Alexandra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14d75d52-3eb9-08bb-1263-ea9731b88831", + "path": "z://CDG\\SBI\\SBI-03\\SB21110 - Alexandra Burke - Hallelujah.mp3", + "title": "Hallelujah" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Bob Dylan", + "playlist_title": "George Jackson", + "found_song": { + "artist": "Bob Dylan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95e164c4-c87c-d6e9-8805-e22dcce34d9b", + "path": "z://MP4\\KaraokeOnVEVO\\Bob Dylan - Forever Young.mp4", + "title": "Forever Young" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Lee Michaels", + "playlist_title": "Can I Get A Witness", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "985d8086-fba4-f301-5f01-6446d498aacd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marvin Gaye - Can I Get A Witness.mp4", + "title": "Can I Get A Witness" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "playlist_title": "It's One Of Those Nights (Yes Love)", + "found_song": { + "artist": "The Partridge Family", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f1c93212-5f43-5690-1253-d922976594f0", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Partridge Family - Its One Of Those Nights (Yes Love).mp4", + "title": "It's One Of Those Nights (Yes Love)" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "John Denver", + "playlist_title": "Friends With You", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "a6d0eb3d-2932-da47-45a5-b5d13837a7c5", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - On The Road (Karaoke).mp4", + "title": "On The Road" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Joan Baez", + "playlist_title": "Let It Be", + "found_song": { + "artist": "Beatles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47b7f722-6208-c4f6-be6b-91688b86e0c0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 823\\Beatles - Let It Be - SFMW 823 -06.mp3", + "title": "Let It Be" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Smokey Robinson & The Miracles", + "playlist_title": "Satisfaction", + "found_song": { + "artist": "Smokey Robinson", + "disabled": false, + "favorite": false, + "guid": "d8e25578-972e-c77d-d6a8-b8ab9775f95b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Tears Of A Clown - Smokey Robinson.mp4", + "title": "The Tears Of A Clown" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Guess Who", + "playlist_title": "Sour Suite", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "817fe0e6-0faa-4df9-b1dd-bb5f939f3973", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Who - Substitute.mp4", + "title": "Substitute" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Richard Harris", + "playlist_title": "My Boy", + "found_song": { + "artist": "Calvin Harris", + "disabled": false, + "favorite": false, + "guid": "8d83e358-1395-b9d8-c2c4-10700ef5a1f9", + "path": "z://MP4\\Let's Sing Karaoke\\Calvin Harris - My Way (Karaoke & Lyrics).mp4", + "title": "My Way" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Merle Haggard And The Strangers", + "playlist_title": "Carolyn", + "found_song": { + "artist": "Merle Haggard And The Strangers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b03a980c-2c30-63ca-f8a4-89c22e7e0be6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Merle Haggard And The Strangers - Mama Tried.mp4", + "title": "Mama Tried" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Jefferson Airplane", + "playlist_title": "Pretty As You Feel", + "found_song": { + "artist": "Jefferson Airplane", + "disabled": false, + "favorite": false, + "guid": "e5e317d6-f3ec-047c-1f23-5406c90d2e56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody To Love - Jefferson Airplane.mp4", + "title": "Somebody To Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Helen Reddy", + "playlist_title": "No Sad Song", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "622d6395-55d9-5246-9d67-5dccdde2fd40", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am Woman - Helen Reddy.mp4", + "title": "I Am Woman" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Curtis Mayfield", + "playlist_title": "Get Down", + "found_song": { + "artist": "Curtis Mayfield", + "disabled": false, + "favorite": false, + "guid": "57fcc7c7-38a5-3424-81de-35d3a60c8def", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Move On Up - Curtis Mayfield.mp4", + "title": "Move On Up" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "The Doors", + "playlist_title": "Tightrope Ride", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "9be93aae-89b9-748e-9d06-7f2196bd19d4", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Light My Fire (Karaoke & Lyrics).mp4", + "title": "Light My Fire" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Merry Clayton", + "playlist_title": "After All This Time", + "found_song": { + "artist": "Rodney Crowell", + "disabled": false, + "favorite": false, + "guid": "8034413f-d91b-bf7f-9a94-5d35add6a87c", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Crowell - After All This Time (Karaoke).mp4", + "title": "After All This Time" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "The Isley Brothers", + "playlist_title": "Lay Lady Lay", + "found_song": { + "artist": "The Isley Brothers", + "disabled": false, + "favorite": false, + "guid": "f5c36dec-1228-c82c-cc68-f1109244377c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s That Lady - The Isley Brothers.mp4", + "title": "Who s That Lady" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "The Emotions", + "playlist_title": "Show Me How", + "found_song": { + "artist": "The Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e4c51798-68b4-78a9-0915-c52f2eeab4af", + "path": "z://MP4\\KaraokeOnVEVO\\The Thompson Twins - Hold Me Now.mp4", + "title": "Hold Me Now" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Ray Charles", + "playlist_title": "What Am I Living For", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "d7a18a99-096b-63df-b891-bbbf3162c9dd", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Who Am I Living For (Karaoke Version).mp4", + "title": "Who Am I Living For" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Rufus Thomas", + "playlist_title": "Do The Funky Penguin Part I", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b179db51-fa79-090a-9c06-ca92bfefbb0b", + "path": "z://MP4\\KaraokeOnVEVO\\Rufus Thomas - (Do The) Push And Pull Part I.mp4", + "title": "(Do The) Push And Pull Part I" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Ohio Players", + "playlist_title": "Pain (Part I)", + "found_song": { + "artist": "Ohio Players, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61574209-f3b6-8a7c-cec1-d003640190c7", + "path": "z://CDG\\SBI\\SBI-01\\SB05516 - The Ohio Players - Fire.mp3", + "title": "Fire" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Dennis Coffey & The Detroit Guitar Band", + "title": "Scorpio", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Donny Osmond", + "title": "Hey Girl/I Knew You When", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jonathan Edwards", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Temptations", + "title": "Superstar (Remember How You Got Where You Are)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Honey Cone", + "title": "One Monkey Don't Stop No Show Part I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Betty Wright", + "title": "Clean Up Woman", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Peter Nero", + "title": "Theme From Summer Of '42", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jackson 5", + "title": "Sugar Daddy", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Rare Earth", + "title": "Hey Big Brother", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Les Crane", + "title": "Desiderata", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Lou Rawls", + "title": "A Natural Man", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Bullet", + "title": "White Lies, Blue Eyes", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tommy James", + "title": "Nothing To Hide", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "James Brown", + "title": "I'm A Greedy Man - Part I", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Think", + "title": "Once You Understand", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gladys Knight And The Pips", + "title": "Make Me The Woman That You Go Home To", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Yes", + "title": "Your Move (I've Seen All Good People)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.B. King", + "title": "Ain't Nobody Home", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The J. Geils Band", + "title": "Looking For A Love", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "title": "Those Were The Days", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Womack & Peace", + "title": "That's The Way I Feel About Cha", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Stampeders", + "title": "Devil You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ray Stevens", + "title": "Turn Your Radio On", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Little Johnny Taylor", + "title": "Everybody Knows About My Good Thing Pt. 1", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Daisy Mae", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Lighthouse", + "title": "Take It Slow (Out In The Country)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Carpenters", + "title": "Superstar/Bless The Beasts And Children", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jr. Walker & The All Stars", + "title": "Way Back Home", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Beverly Bremers", + "title": "Don't Say You Don't Remember", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Free Movement", + "title": "The Harder I Try (The Bluer I Get)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Chase", + "title": "So Many People", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Poppy Family", + "title": "No Good To Cry", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Undisputed Truth", + "title": "You Make Your Own Heaven And Hell Right Here On Earth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Dramatics", + "title": "Get Up And Get Down", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "N.F. Porter", + "title": "Keep On Keeping On", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Heaven Bound with Tony Scotti", + "title": "Five Hundred Miles", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Johnny Paycheck", + "title": "She's All I Got", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Bar-Kays", + "title": "Son Of Shaft", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jerry Butler & Brenda Lee Eager", + "title": "Ain't Understanding Mellow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The New Colony Six", + "title": "Long Time To Be Alone", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Judy Collins", + "title": "Open The Door (Song For Judith)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Persuaders", + "title": "Love Gonna Pack Up (And Walk Out)", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Edgar Winter's White Trash", + "title": "Keep Playin' That Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Assembled Multitude", + "title": "Medley From Superstar (A Rock Opera)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 32, + "missing_count": 44, + "needs_manual_review": 32 + } + }, + { + "playlist_title": "1970 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The 5th Dimension", + "playlist_title": "One Less Bell To Answer", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "guid": "a763d4af-8553-62c1-d749-98817f382d45", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - One Less Bell To Answer (Karaoke).mp4", + "title": "One Less Bell To Answer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dawn", + "playlist_title": "Knock Three Times", + "found_song": { + "artist": "Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfcd81f3-3f9a-7440-b07b-40b0bd35443c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dawn - Knock Three Times.mp4", + "title": "Knock Three Times" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Santana", + "playlist_title": "Black Magic Woman", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "guid": "362ec6fd-129e-8824-5441-2fe6de85929e", + "path": "z://MP4\\KtvEntertainment\\Santana - Black Magic Woman Karaoke Lyrics.mp4", + "title": "Black Magic Woman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Chicago", + "playlist_title": "Does Anybody Really Know What Time It Is?", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d67c94b-3051-2b57-9036-a7ed705cf58c", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Does Anybody Really Know What Time It Is.mp4", + "title": "Does Anybody Really Know What Time It Is?" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Badfinger", + "playlist_title": "No Matter What", + "found_song": { + "artist": "Badfinger", + "disabled": false, + "favorite": false, + "guid": "e8a3345c-950c-ee3c-1849-d60a47f9018f", + "path": "z://MP4\\KaraokeOnVEVO\\Badfinger - No Matter What (Karaoke).mp4", + "title": "No Matter What" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ray Price", + "playlist_title": "For The Good Times", + "found_song": { + "artist": "Ray Price", + "disabled": false, + "favorite": false, + "guid": "26552417-e645-ab9a-92da-2121e14d1fda", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Good Times - Ray Price.mp4", + "title": "For The Good Times" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Carpenters", + "playlist_title": "We've Only Just Begun", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "85791d84-295b-64f8-a17f-1b475e0bba7a", + "path": "z://MP4\\Stingray Karaoke\\We've Only Just Begun in the Style of Carpenters karaoke video with lyrics (no lead vocal).mp4", + "title": "We've Only Just Begun" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jackson 5", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5bd371b-5fd7-1790-4586-a1c5eb3c42c7", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson 5 - Ill Be There.mp4", + "title": "I'll Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "King Floyd", + "playlist_title": "Groove Me", + "found_song": { + "artist": "King Floyd", + "disabled": false, + "favorite": false, + "guid": "9ab300c0-4b7a-9fbf-9b8e-1e99e41f8e59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Groove Me - King Floyd.mp4", + "title": "Groove Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Perry Como", + "playlist_title": "It's Impossible", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "fa04d60b-aaf9-eddd-b92d-83a276da3d9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Impossible - Perry Como.mp4", + "title": "It s Impossible" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Neil Diamond", + "playlist_title": "He Ain't Heavy...He's My Brother", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "f30ea4df-9e2e-f13a-3021-aab98962b538", + "path": "z://CDG\\Various\\Neil Diamond - He Ain't Heavy He's My Brother.mp3", + "title": "He Ain't Heavy He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bee Gees", + "playlist_title": "Lonely Days", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cbceae51-ffa5-d357-dd4e-d88382c76d70", + "path": "z://CDG\\Various\\Bee Gees - Lonely Days.mp3", + "title": "Lonely Days" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Bobby Bloom", + "playlist_title": "Montego Bay", + "found_song": { + "artist": "Bobby Bloom", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "774ff8f6-4cf5-6dcf-7e40-70034554a6d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Bloom - Montego Bay.mp4", + "title": "Montego Bay" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Elton John", + "playlist_title": "Your Song", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e8680961-1b41-06e3-891f-a988e4fd1674", + "path": "z://MP4\\Sing King Karaoke\\Elton John - Your Song (Karaoke Version).mp4", + "title": "Your Song" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lynn Anderson", + "playlist_title": "Rose Garden", + "found_song": { + "artist": "Lynn Anderson", + "disabled": false, + "favorite": false, + "guid": "393a0e56-5496-db22-82a1-f58b59247316", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rose Garden - Lynn Anderson.mp4", + "title": "Rose Garden" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "James Taylor", + "playlist_title": "Fire And Rain", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "ab5a0dca-c945-7b27-0ba9-1b2324cbe4bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire And Rain - James Taylor.mp4", + "title": "Fire And Rain" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Clapton", + "playlist_title": "After Midnight", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "guid": "afc9be6e-e4aa-46dd-d532-5712c796a86b", + "path": "z://MP4\\Let's Sing Karaoke\\Clapton, Eric - After Midnight (Karaoke & Lyrics).mp4", + "title": "After Midnight" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Heaven Help Us All", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bb61e7a-8b12-41b1-1c83-6cdb8fc0c2d7", + "path": "z://CDG\\SBI\\SBI-03\\SB25800 - Stevie Wonder - Heaven Help Us All.mp3", + "title": "Heaven Help Us All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Neil Young", + "playlist_title": "Only Love Can Break Your Heart", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb79504e-ae37-3842-9012-72e3bb0b8da9", + "path": "z://MP4\\VocalStarKaraoke\\Neil Young - Only Love Can Break Your Heart.mp4", + "title": "Only Love Can Break Your Heart" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jerry Reed", + "playlist_title": "Amos Moses", + "found_song": { + "artist": "Jerry Reed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c28a915-0e9e-7076-a810-064b47ec6733", + "path": "z://MP4\\KaraokeOnVEVO\\Jerry Reed - Amos Moses.mp4", + "title": "Amos Moses" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rare Earth", + "playlist_title": "Born To Wander", + "found_song": { + "artist": "Rare Earth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46f35e7e-2b22-c1d3-2b74-d76117fc94ff", + "path": "z://MP4\\KaraokeOnVEVO\\Rare Earth - Born To Wander.mp4", + "title": "Born To Wander" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Melanie", + "playlist_title": "Ruby Tuesday", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbd821ac-8f57-4ec5-b376-79a30a2ea5c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 802\\Melanie - Ruby Tuesday - SFMW 802 -11.mp3", + "title": "Ruby Tuesday" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Black Sabbath", + "playlist_title": "Paranoid", + "found_song": { + "artist": "Black Sabbath", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e972744b-f6cb-cddf-9f4e-07849e00d5ad", + "path": "z://MP4\\Sing King Karaoke\\Black Sabbath - Paranoid.mp4", + "title": "Paranoid" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Deep Purple", + "playlist_title": "Black Night", + "found_song": { + "artist": "Deep Purple", + "disabled": false, + "favorite": false, + "guid": "e3972bd1-2e9f-a79e-e4a5-e6871f3c30e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Night - Deep Purple.mp4", + "title": "Black Night" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "James Taylor", + "playlist_title": "Carolina In My Mind", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "bfa7e86f-1773-bdb2-aa87-896a6af6a212", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Carolina In My Mind - James Taylor.mp4", + "title": "Carolina In My Mind" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Diana Ross", + "playlist_title": "Remember Me", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "fa840d6b-81dc-6352-ddef-89dba09a82cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember Me - Diana Ross.mp4", + "title": "Remember Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "If You Could Read My Mind", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "971a7b53-9b1e-c9bf-d499-6fcc191c9554", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If You Could Read My Mind - Gordon Lightfoot.mp4", + "title": "If You Could Read My Mind" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Loretta Lynn", + "playlist_title": "Coal Miner's Daughter", + "found_song": { + "artist": "Loretta Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ee99293-6553-b927-818e-0a6f8b930b30", + "path": "z://MP4\\KaraokeOnVEVO\\Loretta Lynn - Coal Miner's Daughter.mp4", + "title": "Coal Miner's Daughter" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Rufus Thomas", + "playlist_title": "(Do The) Push And Pull Part I", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b179db51-fa79-090a-9c06-ca92bfefbb0b", + "path": "z://MP4\\KaraokeOnVEVO\\Rufus Thomas - (Do The) Push And Pull Part I.mp4", + "title": "(Do The) Push And Pull Part I" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Dave Edmunds", + "playlist_title": "I Hear You Knocking", + "found_song": { + "artist": "Dave Edmunds", + "disabled": false, + "favorite": false, + "guid": "0883256c-eab8-fff8-2da8-6866b7839f98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Hear You Knocking - Dave Edmunds.mp4", + "title": "I Hear You Knocking" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "George Harrison", + "playlist_title": "My Sweet Lord/Isn't It A Pity", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4e7bdc1-65bd-441f-f8f5-5ef9df3ed1a6", + "path": "z://MP4\\Sing King Karaoke\\George Harrison - My Sweet Lord.mp4", + "title": "My Sweet Lord" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 3, + "playlist_artist": "Smokey Robinson & The Miracles", + "playlist_title": "The Tears Of A Clown", + "found_song": { + "artist": "Smokey Robinson", + "disabled": false, + "favorite": false, + "guid": "d8e25578-972e-c77d-d6a8-b8ab9775f95b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Tears Of A Clown - Smokey Robinson.mp4", + "title": "The Tears Of A Clown" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "The Supremes", + "playlist_title": "Stoned Love", + "found_song": { + "artist": "Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96a21d5c-1202-f5c5-bc41-1c3a3cb14308", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Supremes - Stoned Love - SFMW 812 -14.mp3", + "title": "Stoned Love" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Van Morrison", + "playlist_title": "Domino", + "found_song": { + "artist": "Van Morrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46fb969e-50da-5455-572a-0f2ee818903c", + "path": "z://MP4\\VocalStarKaraoke\\Van Morrison - Moondance.mp4", + "title": "Moondance" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Stoney End", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "ecf0fee4-ef50-d7ed-89f1-f242b75075c9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - My Man - SFG042 - 12.mp3", + "title": "My Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "The Supremes & Four Tops", + "playlist_title": "River Deep - Mountain High", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "b893fd89-b7ac-a45b-2bbc-2f24122347ae", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD045 - Tina Turner\\Tina Turner - River Deep Mountain High - SFG045 - 02.mp3", + "title": "River Deep Mountain High" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Andy Kim", + "playlist_title": "Be My Baby", + "found_song": { + "artist": "Smokie", + "disabled": false, + "favorite": false, + "guid": "b5971e3d-1fb6-8d33-67da-bd540cc2181f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD028 - Dr Hook & Smokie\\Smokie - Be My Baby - SFG028 - 15.mp3", + "title": "Be My Baby" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Three Dog Night", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "646040ca-11fd-2d18-d683-c5ffaea56b9b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One - Three Dog Night.mp4", + "title": "One" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "If I Were Your Woman", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f14a7fe-e9ac-a0a0-ed3d-6658959fd627", + "path": "z://MP4\\KaraokeOnVEVO\\Gladys Knight And The Pips - If I Were Your Woman.mp4", + "title": "If I Were Your Woman" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Tom Jones", + "playlist_title": "Can't Stop Loving You", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f61f704-53c8-c6d8-c093-5cd25417e1c2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - I Cant Stop Loving You (Live).mp4", + "title": "I Can't Stop Loving You (Live)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "The Guess Who", + "playlist_title": "Share The Land", + "found_song": { + "artist": "The Guess Who", + "disabled": false, + "favorite": false, + "guid": "79bf9966-8eb0-0140-1254-4ae82142e82a", + "path": "z://MP4\\TheKARAOKEChannel\\Shakin All Over in the style of The Guess Who karaoke video.mp4", + "title": "Shakin All Over" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Stephen Stills", + "playlist_title": "Love The One You're With", + "found_song": { + "artist": "Stephen Stills", + "disabled": false, + "favorite": false, + "guid": "b7f6be8a-3f1a-740e-575f-2cf8bc2457df", + "path": "z://MP4\\Let's Sing Karaoke\\Stills, Stephen - Love The One Your With (Karaoke & Lyrics).mp4", + "title": "Love The One Your With" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Elvis Presley", + "playlist_title": "You Don't Have To Say You Love Me/Patch It Up", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9c7bcc67-ec63-f173-5d03-3c218082a05e", + "path": "z://CDG\\Various\\Elvis Presley - You Don't Have To Say You Love Me.mp3", + "title": "You Don't Have To Say You Love Me" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Neil Diamond", + "playlist_title": "Do It", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eba88b1-37b1-f7c7-8d21-a76debb6397c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Desiree.mp4", + "title": "Desiree" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Border Song (Holy Moses)/You And Me", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "4d06fe9e-b729-dbb2-1b79-5a8106b41421", + "path": "z://MP4\\Stingray Karaoke\\Border Song Aretha Franklin Karaoke with Lyrics.mp4", + "title": "Border Song" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Ray Charles", + "playlist_title": "If You Were Mine", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "8650b55d-743d-d12b-2b88-0446f2856bb8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are My Sunshine - Ray Charles.mp4", + "title": "You Are My Sunshine" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Nitty Gritty Dirt Band", + "playlist_title": "Mr. Bojangles", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "2a384b30-761d-bd65-75c7-e94cd3c56777", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Bojangles - Nitty Gritty Dirt Band.mp4", + "title": "Mr. Bojangles" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Edwin Starr", + "playlist_title": "Stop The War Now", + "found_song": { + "artist": "Edwin Starr", + "disabled": false, + "favorite": false, + "guid": "3cf3ea9f-25ff-28e6-d79c-6cc025061e15", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke War - Edwin Starr.mp4", + "title": "War" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Free", + "playlist_title": "Stealer", + "found_song": { + "artist": "Earth, Wind & Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90c0efe3-3cfe-adfc-54bf-a955ebae19c1", + "path": "z://MP4\\Sing King Karaoke\\Earth, Wind & Fire - Star.mp4", + "title": "Star" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "O.V. Wright", + "playlist_title": "Ace Of Spade", + "found_song": { + "artist": "Motörhead", + "disabled": false, + "favorite": false, + "guid": "cbc6f0ec-140f-8c5a-0e4c-7cacc2cf96ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ace Of Spades - Motörhead.mp4", + "title": "Ace Of Spades" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Clarence Carter", + "playlist_title": "It's All In Your Mind", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce3cb476-dac7-3c67-24a8-363fb062850c", + "path": "z://MP4\\KaraokeOnVEVO\\Mariah Carey - All In Your Mind.mp4", + "title": "All In Your Mind" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Elvis Presley", + "playlist_title": "I Really Don't Want To Know/There Goes My Everything", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "848735bb-90ab-4bb0-c05e-28a84240c7ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Really Don t Want To Know - Elvis Presley.mp4", + "title": "I Really Don t Want To Know" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Judy Collins", + "playlist_title": "Amazing Grace", + "found_song": { + "artist": "Standard", + "disabled": false, + "favorite": false, + "guid": "d14c4113-a309-68c2-17c8-99b9046e820f", + "path": "z://MP4\\Let's Sing Karaoke\\Standard - Amazing Grace (Karaoke & Lyrics).mp4", + "title": "Amazing Grace" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Johnny Cash", + "playlist_title": "Flesh And Blood", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "3bef1bed-6d29-fd67-8cc7-f56f643dabab", + "path": "z://CDG\\Various\\Johnny Cash - Flesh & Blood.mp3", + "title": "Flesh & Blood" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Al Green", + "playlist_title": "I Can't Get Next To You", + "found_song": { + "artist": "Temptations", + "disabled": false, + "favorite": false, + "guid": "50a596c3-30af-4926-eb95-22cb76b1c67b", + "path": "z://MP4\\Let's Sing Karaoke\\Temptations - I Can't Get Next To You (Karaoke & Lyrics) (2).mp4", + "title": "I Can't Get Next To You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Frijid Pink", + "playlist_title": "Heartbreak Hotel", + "found_song": { + "artist": "Whitney Houston ft. Price Evans", + "disabled": false, + "favorite": false, + "guid": "dad1c232-d8b9-a796-220e-fd07bbb855ad", + "path": "z://MP4\\Let's Sing Karaoke\\Houston, Whitney & Price Evans - Heartbreak Hotel (Karaoke & Lyrics) (2).mp4", + "title": "Heartbreak Hotel" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Robert John", + "playlist_title": "When The Party Is Over", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "71a1943f-3bbe-80e5-b1f4-65a69de29032", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - when the party's over (Karaoke Version).mp4", + "title": "when the party's over" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Help Me Find A Way (To Say I Love You)", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "guid": "fd8b5c2f-ce43-20b3-f002-0cb074b7bc8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goin Out Of My Head - Little Anthony And The Imperials.mp4", + "title": "Goin Out Of My Head" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Betty Everett", + "playlist_title": "I Got To Tell Somebody", + "found_song": { + "artist": "Betty Everett", + "disabled": false, + "favorite": false, + "guid": "8f4db65a-959b-8562-0b7e-96d2fcbd39ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be Me - Betty Everett.mp4", + "title": "Let It Be Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "I Think I Love You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Brian Hyland", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Presidents", + "title": "5-10-15-20 (25-30 Years Of Love)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chairmen Of The Board", + "title": "Pay To The Piper", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Flaming Ember", + "title": "I'm Not My Brothers Keeper", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Redeye", + "title": "Games", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Runt", + "title": "We Gotta Get You A Woman", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Michael Nesmith & The First National Band", + "title": "Silver Moon", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Dionne Warwick", + "title": "The Green Grass Starts To Grow", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jim Ed Brown", + "title": "Morning", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Curtis Mayfield", + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.J. Thomas", + "title": "Most Of All", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Moments", + "title": "All I Have", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Little Sister", + "title": "Somebody's Watching You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jackie Moore", + "title": "Precious, Precious", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Israel Popper Stopper Tolbert", + "title": "Big Leg Woman (With A Short Short Mini Skirt)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Grass Roots", + "title": "Temptation Eyes", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Eric Burdon And War", + "title": "They Can't Take Away Our Music", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tommy James", + "title": "Church Street Soul Revival", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gypsy", + "title": "Gypsy Queen - Part 1", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Grand Funk Railroad", + "title": "Mean Mistreater", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Ray Stevens", + "title": "Bridget The Midget (The Queen Of The Blues)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Liz Damon's Orient Express", + "title": "1900 Yesterday", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Goldsboro", + "title": "Watching Scotty Grow", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Redbone", + "title": "Maggie", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Joe Simon", + "title": "Your Time To Cry", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Chi-lites", + "title": "Are You My Woman? (Tell Me So)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teegarden & Van Winkle", + "title": "Everything Is Going To Be Alright", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Anne Murray", + "title": "Sing High - Sing Low", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Originals", + "title": "God Bless Whoever Sent You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jr. Walker & The All Stars", + "title": "Holly Holy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Five Flights Up", + "title": "After The Feeling Is Gone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Buddy Miles", + "title": "We Got To Live Together - Part I", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Mike Curb Congregation", + "title": "Burning Bridges", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Sandpipers", + "title": "Free To Carry On", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Main Ingredient", + "title": "I'm So Proud", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Brook Benton With The Dixie Flyers", + "title": "Shoes", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Jackie Wilson", + "title": "(I Can Feel Those Vibrations) This Love Is Real", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Wadsworth Mansion", + "title": "Sweet Mary", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Jazz Crusaders", + "title": "Way Back Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 29, + "missing_count": 40, + "needs_manual_review": 29 + } + }, + { + "playlist_title": "1969 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Raindrops Keep Fallin' On My Head", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "86a666f3-cf91-9d37-56ec-1791876f2ca9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Raindrops Keep Fallin On My Head - B. J. Thomas.mp4", + "title": "Raindrops Keep Fallin On My Head" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "Down On The Corner/Fortunate Son", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf2d60c0-ba11-df85-7564-69f50bdf6f43", + "path": "z://MP4\\KaraokeOnVEVO\\Creedence Clearwater Revival - Down On The CornerFortunate Son.mp4", + "title": "Down On The Corner/Fortunate Son" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steam", + "playlist_title": "Na Na Hey Hey Kiss Him Goodbye", + "found_song": { + "artist": "Steam", + "disabled": false, + "favorite": false, + "guid": "5cae7a39-3655-1ef1-436c-de3ad5bf618b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Na Na Hey Hey (Kiss Him Goodbye) - Steam.mp4", + "title": "Na Na Hey Hey (Kiss Him Goodbye)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Neil Diamond", + "playlist_title": "Holly Holy", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "131a14a5-b9ef-5e2a-3424-c1e23dce75bb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Holly Holy - Neil Diamond.mp4", + "title": "Holly Holy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a139200a-f361-7109-4da7-051157a044e3", + "path": "z://MP4\\Sing King Karaoke\\Jackson 5 - I Want You Back.mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Whole Lotta Love", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "26f513b0-1713-2560-43d2-05b78afc7b0e", + "path": "z://CDG\\Various\\Led Zeppelin - Whole Lotta Love.mp3", + "title": "Whole Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Three Dog Night", + "playlist_title": "Eli's Coming", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d82dba66-3028-89de-e88c-48f9e6f1db7a", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Elis Coming.mp4", + "title": "Eli's Coming" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Yester-Me, Yester-You, Yesterday", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "bc0d66f9-d7d5-9130-bce2-12b7b92a127f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yester-Me, Yester-You, Yesterday - Stevie Wonder.mp4", + "title": "Yester-Me, Yester-You, Yesterday" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Shocking Blue", + "playlist_title": "Venus", + "found_song": { + "artist": "The Shocking Blue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b4ddae9-4c55-41e0-f031-406b12763b3a", + "path": "z://MP4\\KaraokeOnVEVO\\The Shocking Blue - Venus.mp4", + "title": "Venus" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tommy Roe", + "playlist_title": "Jam Up Jelly Tight", + "found_song": { + "artist": "Tommy Roe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f22dd1d7-0805-3993-d130-bde5f9e14ef9", + "path": "z://MP4\\KaraokeOnVEVO\\Tommy Roe - Jam Up Jelly Tight.mp4", + "title": "Jam Up Jelly Tight" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "The 5th Dimension", + "playlist_title": "Wedding Bell Blues", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b86e5c93-9840-148e-70ba-c19c9e2aad54", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - Wedding Bell Blues.mp4", + "title": "Wedding Bell Blues" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Vanity Fare", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Vanity Fare", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0824c73-abe4-aa62-5fb2-d89ef538d97f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Vanity Fare - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jimmy Cliff", + "playlist_title": "Wonderful World, Beautiful People", + "found_song": { + "artist": "Jimmy Cliff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "895339da-36b1-a6ca-ec28-2f1b8e6b951d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jimmy Cliff - Wonderful World Beautiful People.mp4", + "title": "Wonderful World Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Winter World Of Love", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "757a6e57-6122-d25d-eebc-73ab2b4019f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Winter World Of Love - Engelbert Humperdinck.mp4", + "title": "Winter World Of Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Johnny Nash", + "playlist_title": "Cupid", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "a780f5bc-54e1-5635-aa0c-1f0b7e0f176c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF087\\Johnny Nash - Cupid - SF087 - 04.mp3", + "title": "Cupid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tom Jones", + "playlist_title": "Without Love (There Is Nothing)", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a4565d1-1541-9ecc-79d3-48df2ea5d1a0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Without Love There Is Nothing.mp4", + "title": "Without Love There Is Nothing" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I'll Never Fall In Love Again", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "fd750d60-5736-62c1-b641-a60b0904246a", + "path": "z://MP4\\KaraokeOnVEVO\\Dionne Warwick - I'll Never Fall In Love Again (Karaoke).mp4", + "title": "I'll Never Fall In Love Again" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jefferson Airplane", + "playlist_title": "Volunteers", + "found_song": { + "artist": "Jefferson Airplane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b025ac5-f602-a538-124a-16fd21701119", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jefferson Airplane - Volunteers.mp4", + "title": "Volunteers" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eddie Holman", + "playlist_title": "Hey There Lonely Girl", + "found_song": { + "artist": "Eddie Holman", + "disabled": false, + "favorite": false, + "guid": "bc4f61eb-e24b-caee-e6c4-1676a351f4a0", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Holman - Hey There Lonely Girl (Karaoke).mp4", + "title": "Hey There Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Hollies", + "playlist_title": "He Ain't Heavy, He's My Brother", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f8e44a1-2cb1-6f62-f2c9-87e148be181d", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - He Aint Heavy, Hes My Brother.mp4", + "title": "He Ain't Heavy, He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "B.B. King", + "playlist_title": "The Thrill Is Gone", + "found_song": { + "artist": "B.B. King", + "disabled": false, + "favorite": false, + "guid": "55b3bbb0-1ee4-7b2b-7d61-d6c9e9bad700", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Thrill Is Gone - B.B. King.mp4", + "title": "The Thrill Is Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Diana Ross & The Supremes", + "playlist_title": "Someday We'll Be Together", + "found_song": { + "artist": "Diana Ross & The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d6c743e-06f9-e9d8-9b62-5167a2db8d41", + "path": "z://MP4\\KaraokeOnVEVO\\Diana Ross & The Supremes - Someday We'll Be Together.mp4", + "title": "Someday We'll Be Together" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Peter, Paul & Mary", + "playlist_title": "Leaving On A Jet Plane", + "found_song": { + "artist": "Peter, Paul And Mary", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de6c2511-6194-fadb-a691-4533c323344c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter, Paul And Mary - Leaving On A Jet Plane.mp4", + "title": "Leaving On A Jet Plane" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "The Beatles", + "playlist_title": "Come Together/Something", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "06122a85-c388-aca9-071d-fca6b695c818", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Come Together (Karaoke Version).mp4", + "title": "Come Together" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Elvis Presley", + "playlist_title": "Don't Cry Daddy/Rubberneckin'", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4e8b3f0-f407-66ca-efe2-cbca550a299d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Dont Cry Daddy.mp4", + "title": "Don't Cry Daddy" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Band", + "playlist_title": "Up On Cripple Creek", + "found_song": { + "artist": "The Band", + "disabled": false, + "favorite": false, + "guid": "a05ba1a1-ecfa-3088-b424-8c0237572ebb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On Cripple Creek - The Band.mp4", + "title": "Up On Cripple Creek" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Dusty Springfield", + "playlist_title": "A Brand New Me", + "found_song": { + "artist": "Dusty Springfield", + "disabled": false, + "favorite": false, + "guid": "785eb976-3317-9fe4-10f6-febc9c4ff89c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF085\\Dusty Springfield - Stay A While - SF085 - 06.mp3", + "title": "Stay A While" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "The Grass Roots", + "playlist_title": "Heaven Knows", + "found_song": { + "artist": "The Pretty Reckless", + "disabled": false, + "favorite": false, + "guid": "1dcf36d5-6c4b-06dd-6cf2-a57441fc7bc5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Knows - The Pretty Reckless.mp4", + "title": "Heaven Knows" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Eleanor Rigby", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "b41c6894-4d2f-ecf0-14b0-5816f2b659e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be - Aretha Franklin.mp4", + "title": "Let It Be" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Oliver", + "playlist_title": "Sunday Mornin'", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "7e018f23-842e-913f-4abb-12b60f99dcd5", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF167\\Oasis - Sunday Morning Call - SF167 - 13.mp3", + "title": "Sunday Morning Call" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Smokey Robinson & The Miracles", + "playlist_title": "Point It Out", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Merle Haggard And The Strangers", + "playlist_title": "Okie From Muskogee", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "d50e9076-04c6-b86c-1701-744ed8250ee2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Okie From Muskogee - Merle Haggard.mp4", + "title": "Okie From Muskogee" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Janis Joplin", + "playlist_title": "Kozmic Blues", + "found_song": { + "artist": "Janis Joplin", + "disabled": false, + "favorite": false, + "guid": "7fedd998-95a4-3f45-82aa-557dd3621006", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Maybe - Janis Joplin.mp4", + "title": "Maybe" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Nancy Wilson", + "playlist_title": "Can't Take My Eyes Off You", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80148322-e689-97ce-0614-cdba1973bf92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Cant Take My Eyes Off You.mp4", + "title": "Can't Take My Eyes Off You" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Jay & The Americans", + "playlist_title": "Walkin' In The Rain", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "71d164eb-2448-96c2-d2b6-fd7810481268", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In The Rain - The Ronettes.mp4", + "title": "Walking In The Rain" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Joe Cocker", + "playlist_title": "She Came In Through The Bathroom Window", + "found_song": { + "artist": "Beatles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e807bb9-8213-4325-2060-3c08f72bd9ca", + "path": "z://CDG\\SBI\\SBI-04\\SB18126 - The Beatles - She Came In Through The Bathroom Window.mp3", + "title": "She Came In Through The Bathroom Window" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "The Original Caste", + "playlist_title": "One Tin Soldier", + "found_song": { + "artist": "The Small Faces", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "32039a16-5608-53c6-5582-5608a3c76de3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Small Faces - Tin Soldier.mp4", + "title": "Tin Soldier" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Cuff Links", + "playlist_title": "When Julie Comes Around", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29eca748-082e-21a3-5126-f4507e340d19", + "path": "z://CDG\\Various\\Alan Jackson - When Love Comes Around.mp3", + "title": "When Love Comes Around" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Steppenwolf", + "playlist_title": "Monster", + "found_song": { + "artist": "Steppenwolf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a76c260-db1e-d703-b4ad-2707df872eac", + "path": "z://MP4\\Sing King Karaoke\\Steppenwolf - Born To Be Wild (3.mp4", + "title": "Born To Be Wild" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Otis Leavill", + "playlist_title": "I Love You", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "824cfc18-bb51-d981-7006-efda9523d40d", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - i love you (Karaoke Version).mp4", + "title": "i love you" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Turtles", + "playlist_title": "Lady-O", + "found_song": { + "artist": "The Turtles", + "disabled": false, + "favorite": false, + "guid": "3baa5be4-5a23-3133-f969-f38a089be93d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Elenore - The Turtles.mp4", + "title": "Elenore" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "The Illusion", + "playlist_title": "Together", + "found_song": { + "artist": "Eyre, Ella", + "disabled": false, + "favorite": false, + "guid": "7181f9a9-4975-65c9-ae69-26da59ba94d8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF352\\Eyre, Ella - Together - SF352 - 14.mp3", + "title": "Together" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "The Intrigues", + "playlist_title": "I'm Gonna Love You", + "found_song": { + "artist": "Cody Johnson, Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c980ce32-bfe7-1e26-441f-19792e866c06", + "path": "z://MP4\\Sing King Karaoke\\Cody Johnson, Carrie Underwood - I'm Gonna Love You.mp4", + "title": "I'm Gonna Love You" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Al Martino", + "playlist_title": "I Started Loving You Again", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "5e12d966-1791-541b-eb38-35cebde427f5", + "path": "z://MP4\\KtvEntertainment\\Merle Haggard - Today I Started Loving You Again Karaoke Lyrics.mp4", + "title": "Today I Started Loving You Again" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Betty Everett", + "playlist_title": "It's Been A Long Time", + "found_song": { + "artist": "Betty Everett", + "disabled": false, + "favorite": false, + "guid": "8f4db65a-959b-8562-0b7e-96d2fcbd39ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be Me - Betty Everett.mp4", + "title": "Let It Be Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "R.B. Greaves", + "title": "Take A Letter Maria", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ferrante & Teicher", + "title": "Midnight Cowboy", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Bobby Sherman", + "title": "La La La (If I Had You)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Blood, Sweat & Tears", + "title": "And When I Die", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jr. Walker & The All Stars", + "title": "These Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Gladys Knight And The Pips", + "title": "Friendship Train", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mel And Tim", + "title": "Backfield In Motion", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Billy Joe Royal", + "title": "Cherry Hill Park", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Archies", + "title": "Jingle Jangle", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Flying Machine", + "title": "Smile A Little Smile For Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Originals", + "title": "Baby, I'm For Real", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "CROW", + "title": "Evil Woman Don't Play Your Games With Me", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Plastic Ono Band", + "title": "Cold Turkey", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Tommy James And The Shondells", + "title": "She", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "James Brown", + "title": "Ain't It Funky Now (Part 1)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Friends Of Distinction", + "title": "Going In Circles", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harlow Wilcox and the Oakies", + "title": "Groovy Grubworm", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Jerry Butler", + "title": "Don't Let Love Hang You Up", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Four Tops", + "title": "Don't Let Him Take Your Love From Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Flaming Ember", + "title": "Mind, Body and Soul", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mark Lindsay", + "title": "Arizona", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "What You Gave Me", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bobbie Gentry", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wilbert Harrison", + "title": "Let's Work Together (Part 1)", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Rick Nelson", + "title": "She Belongs To Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Clique", + "title": "I'll Hold Out My Hand", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Gloria Taylor", + "title": "You Got To Pay The Price", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Johnny Cash", + "title": "Blistered/See Ruby Fall", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Dennis Yost And The Classics IV", + "title": "Midnight", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jefferson", + "title": "Baby Take Me In Your Arms", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "James Brown", + "title": "Let A Man Come In And Do The Popcorn (Part Two)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "David Ruffin", + "title": "I'm So Glad I Fell For You", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Tokens", + "title": "She Lets Her Hair Down (Early In The Morning)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Judy Collins", + "title": "Turn! Turn! Turn!/To Everything There Is A Season", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Guess Who", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Eydie Gorme", + "title": "Tonight I'll Say A Prayer", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Savoy Brown", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Lettermen", + "title": "Traces/Memories Medley", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Johnnie Taylor", + "title": "Love Bones", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Syl Johnson", + "title": "Is It Because I'm Black", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Meters", + "title": "Look-Ka Py Py", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lou Christie", + "title": "Are You Getting Any Sunshine?", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tommy Cash", + "title": "Six White Horses", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Sandpipers", + "title": "Come Saturday Morning", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nina Simone", + "title": "To Be Young, Gifted And Black", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ike & Tina Turner", + "title": "Bold Soul Sister", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Newbeats", + "title": "Groovin' (Out On Life)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lulu", + "title": "Oh Me Oh My (I'm A Fool For You Baby)", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Simon Stokes/Nighthawks", + "title": "Voodoo Woman", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Archie Bell & The Drells", + "title": "A World Without Music", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "100 Proof Aged in Soul", + "title": "Too Many Cooks (Spoil The Soup)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Brother Jack McDuff", + "title": "Theme From Electric Surfboard", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Grand Funk Railroad", + "title": "Mr. Limousine Driver", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kool & The Gang", + "title": "The Gangs Back Again", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ruby Winters", + "title": "Guess Who", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 24, + "missing_count": 55, + "needs_manual_review": 24 + } + }, + { + "playlist_title": "1968 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Marvin Gaye", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1379215a-bca9-2a75-f243-47dd8cb408e5", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - I Heard It Through The Grapevine.mp4", + "title": "I Heard It Through The Grapevine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Stevie Wonder", + "playlist_title": "For Once In My Life", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "dffee986-76cf-fb4b-b827-6f6f5b9ec409", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Once In My Life - Stevie Wonder.mp4", + "title": "For Once In My Life" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Glen Campbell", + "playlist_title": "Wichita Lineman", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "guid": "dc7ab7c2-e8e6-684c-e8e1-4a2709bedb7f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wichita Lineman - Glen Campbell.mp4", + "title": "Wichita Lineman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnnie Taylor", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Johnnie Taylor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1d98d9c-9afb-b5e0-690e-1b718e9a2c19", + "path": "z://MP4\\KaraokeOnVEVO\\Johnnie Taylor - Whos Making Love.mp4", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Vinton", + "playlist_title": "I Love How You Love Me", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "18fae4d6-c5ef-4b27-4338-d89913792710", + "path": "z://MP4\\KaraFun Karaoke\\I Love How You Love Me - Bobby Vinton Karaoke Version KaraFun.mp4", + "title": "I Love How You Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Temptations", + "playlist_title": "Cloud Nine", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0aaaae1-bf68-9270-e4f9-d5c9da243ed6", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Cloud Nine.mp4", + "title": "Cloud Nine" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Judy Collins", + "playlist_title": "Both Sides Now", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a7fe2a4-c6eb-943e-a26a-61a19ee2f14c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Both Sides Now.mp4", + "title": "Both Sides Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Hooked On A Feeling", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "6f9233b9-e46a-71ec-ace6-f6fcd83801d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hooked On A Feeling - B. J. Thomas.mp4", + "title": "Hooked On A Feeling" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Beatles", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "f74dfc02-9406-5063-0928-33ceec3b49d8", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hey Jude (Karaoke Version).mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Bring It On Home To Me", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "615528de-9d2b-7f67-7c3c-7025228e9dfe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF073\\Eddie Floyd - Bring It On Home To Me - SF073 - 13.mp3", + "title": "Bring It On Home To Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Steppenwolf", + "playlist_title": "Magic Carpet Ride", + "found_song": { + "artist": "Steppenwolf", + "disabled": false, + "favorite": false, + "guid": "62e29a5c-828f-afa1-93ab-2684c52b0a06", + "path": "z://MP4\\Let's Sing Karaoke\\Steppenwolf - Magic Carpet Ride (Karaoke & Lyrics).mp4", + "title": "Magic Carpet Ride" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Canned Heat", + "playlist_title": "Going Up The Country", + "found_song": { + "artist": "Canned Heat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6547e253-3fab-79b7-a939-428172802db7", + "path": "z://MP4\\KaraokeOnVEVO\\Canned Heat - Going Up The Country.mp4", + "title": "Going Up The Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Dusty Springfield", + "playlist_title": "Son-Of-A Preacher Man", + "found_song": { + "artist": "Dusty Springfield", + "disabled": false, + "favorite": false, + "guid": "1b6df3e8-bff0-3e0a-6649-180bac606048", + "path": "z://MP4\\Sing King Karaoke\\Dusty Springfield - Son Of A Preacher Man (Karaoke Version).mp4", + "title": "Son Of A Preacher Man" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Leapy Lee", + "playlist_title": "Little Arrows", + "found_song": { + "artist": "Leapy Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5835e17-68f3-b34f-146d-95d2a5e18c3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leapy Lee - Little Arrows.mp4", + "title": "Little Arrows" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Those Were The Days", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "940657bb-229d-11e3-5778-732fc8bf0b0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Those Were The Days.mp4", + "title": "Those Were The Days" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Elvis Presley", + "playlist_title": "If I Can Dream", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "cad8a27d-2d4b-5c78-d5dc-9f891b1f8f9e", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - If I Can Dream (Karaoke Version).mp4", + "title": "If I Can Dream" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Tammy Wynette", + "playlist_title": "Stand By Your Man", + "found_song": { + "artist": "Tammy Wynette", + "disabled": false, + "favorite": false, + "guid": "b6033139-93a9-45f8-5304-3dfcb1cc406b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stand By Your Man - Tammy Wynette.mp4", + "title": "Stand By Your Man" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Bee Gees", + "playlist_title": "I Started A Joke", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "48717ff2-9082-e331-f7a2-dab2150c77a2", + "path": "z://CDG\\Various\\Bee Gees - I Started A Joke.mp3", + "title": "I Started A Joke" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "90eed85c-7009-5130-da40-c0b9fda6eb99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hey Jude - Wilson Pickett.mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "I Put A Spell On You", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "guid": "b1acd598-1787-72b8-33d0-b923ca74940d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Put A Spell On You - Creedence Clearwater Revival.mp4", + "title": "I Put A Spell On You" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Johnny Cash", + "playlist_title": "Daddy Sang Bass", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "07704770-9244-628a-2750-623dd3fa56e6", + "path": "z://MP4\\KaraFun Karaoke\\Daddy Sang Bass - Johnny Cash Karaoke Version KaraFun.mp4", + "title": "Daddy Sang Bass" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "The Doors", + "playlist_title": "Touch Me", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "745041b0-7e08-5b70-5714-b1fb0858ce8d", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Touch Me (Karaoke & Lyrics) (2).mp4", + "title": "Touch Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Tom Jones", + "playlist_title": "A Minute Of Your Time", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5558ef05-c2c7-1a49-e992-1a656b23026e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - A Minute Of Your Time.mp4", + "title": "A Minute Of Your Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Diana Ross & The Supremes", + "playlist_title": "Love Child", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "bf76e76c-380c-1355-d7b5-d5bf2a11dff2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Child - The Supremes.mp4", + "title": "Love Child" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Aretha Franklin", + "playlist_title": "See Saw", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "5c0977a8-8c70-110a-a799-b4e46a459dd9", + "path": "z://MP4\\Sing King Karaoke\\Aretha Franklin - Respect (Karaoke Version).mp4", + "title": "Respect" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Clarence Carter", + "playlist_title": "Too Weak To Fight", + "found_song": { + "artist": "Clarence Carter", + "disabled": false, + "favorite": false, + "guid": "cb86ff82-69fe-21ac-f079-e05397b40caa", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF102\\Clarence Carter - Patches - SF102 - 14.mp3", + "title": "Patches" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Otis Redding", + "playlist_title": "Papa's Got A Brand New Bag", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "guid": "5c9c37f8-e7be-ed28-3d67-475c685afe36", + "path": "z://MP4\\Let's Sing Karaoke\\Brown, James - Papa's Got A Brand New Bag (Karaoke & Lyrics) (2) (2).mp4", + "title": "Papa's Got A Brand New Bag" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Tommy James And The Shondells", + "playlist_title": "Crimson And Clover", + "found_song": { + "artist": "Tommy James and The Shondells", + "disabled": false, + "favorite": false, + "guid": "025ba509-3b27-5589-1d21-0ae143d9fa65", + "path": "z://MP4\\KaraFun Karaoke\\Crimson And Clover - Tommy James and The Shondells Karaoke Version KaraFun.mp4", + "title": "Crimson And Clover" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "The Vogues", + "playlist_title": "Till", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "27f7aa8f-7879-98ea-45b7-776572bcba19", + "path": "z://MP4\\singsongsmusic\\Till - Karaoke HD (In the style of Tom Jones).mp4", + "title": "Till" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The Rascals", + "playlist_title": "A Ray Of Hope", + "found_song": { + "artist": "The Rascals", + "disabled": false, + "favorite": false, + "guid": "9eb924af-edee-7574-128e-365f3fc8c44e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Groovin - The Rascals.mp4", + "title": "Groovin" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Promises, Promises", + "found_song": { + "artist": "Lisa Lois", + "disabled": false, + "favorite": false, + "guid": "929b25cc-ce8d-195f-a54c-2f9cebab90b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Promises Promises - Lisa Lois.mp4", + "title": "Promises Promises" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Aretha Franklin", + "playlist_title": "My Song", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "4d06fe9e-b729-dbb2-1b79-5a8106b41421", + "path": "z://MP4\\Stingray Karaoke\\Border Song Aretha Franklin Karaoke with Lyrics.mp4", + "title": "Border Song" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "The Impressions", + "playlist_title": "This Is My Country", + "found_song": { + "artist": "The Impressions", + "disabled": false, + "favorite": false, + "guid": "46baa50a-c6e1-5977-f71f-150e82b7b85e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All Right - The Impressions.mp4", + "title": "It s All Right" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "The Tymes", + "playlist_title": "People", + "found_song": { + "artist": "Drake and The Throne", + "disabled": false, + "favorite": false, + "guid": "2a671e04-46a6-4823-18a4-a820bf8a348e", + "path": "z://MP4\\Sing King Karaoke\\Drake and The Throne - Pop Style (Karaoke Version).mp4", + "title": "Pop Style" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Everyday People", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "35f4fd51-891b-908f-92a8-e7a0ac1f60ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everyday People - Sly And The Family Stone.mp4", + "title": "Everyday People" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Lettermen", + "playlist_title": "Put Your Head On My Shoulder", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfc8589d-7375-955f-66e7-33a667fb44c6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Buble - Put Your Head On My Shoulder.mp4", + "title": "Put Your Head On My Shoulder" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Deep Purple", + "playlist_title": "Kentucky Woman", + "found_song": { + "artist": "Deep Purple", + "disabled": false, + "favorite": false, + "guid": "1025b722-4bca-ab71-a350-e3eaba43a8fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke On The Water - Deep Purple.mp4", + "title": "Smoke On The Water" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "The Grass Roots", + "playlist_title": "Bella Linda", + "found_song": { + "artist": "The Grass Roots", + "disabled": false, + "favorite": false, + "guid": "f3acdc11-f8bf-1225-b675-e0f20f9f6c10", + "path": "z://MP4\\Let's Sing Karaoke\\Grass Roots, The - Sooner Or Later (Karaoke & Lyrics).mp4", + "title": "Sooner Or Later" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Herb Alpert & The Tijuana Brass", + "playlist_title": "My Favorite Things", + "found_song": { + "artist": "Diana Ross & The Supremes", + "disabled": false, + "favorite": false, + "guid": "0c58d62b-1175-33fc-a0d0-165c1396c16e", + "path": "z://MP4\\Stingray Karaoke\\My Favorite Things Diana Ross & The Supremes Karaoke with Lyrics.mp4", + "title": "My Favorite Things" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Dean Martin", + "playlist_title": "Not Enough Indians", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "3717fe66-95b4-6fec-36d5-fca62e135421", + "path": "z://MP4\\KtvEntertainment\\Dean Martin - Non Dimenticar Karaoke Lyrics.mp4", + "title": "Non Dimenticar" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "The Jimi Hendrix Experience", + "playlist_title": "Crosstown Traffic", + "found_song": { + "artist": "Jimi Hendrix", + "disabled": false, + "favorite": false, + "guid": "bf634fda-8fa9-5f3c-0fd7-69b70f2bba9a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD019 - Jimi Hendrix, Cream & Eric Clapton\\Jimi Hendrix - Crosstown Traffic - SFG019 - 05.mp3", + "title": "Crosstown Traffic" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Petula Clark", + "playlist_title": "American Boys", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "guid": "0d8b0e60-5362-1304-25f5-d44c2176a6e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chariot - Petula Clark.mp4", + "title": "Chariot" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Tyrone Davis", + "playlist_title": "Can I Change My Mind", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c354fdac-c248-1114-e03e-fa3e1a293fa8", + "path": "z://MP4\\ZoomKaraokeOfficial\\One Direction - Change My Mind.mp4", + "title": "Change My Mind" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Bobby Womack", + "playlist_title": "California Dreamin'", + "found_song": { + "artist": "Mamas and The Papas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f436f6d-000c-4bfa-a934-3edecbcf9855", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mamas And The Papas - California Dreamin.mp4", + "title": "California Dreamin'" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Sammy Davis Jr.", + "playlist_title": "I've Gotta Be Me", + "found_song": { + "artist": "Sammy Jr. Davis", + "disabled": false, + "favorite": false, + "guid": "98b7f229-6ba3-9666-b466-7c59cc5eb40d", + "path": "z://CDG\\Various\\Sammy Jr. Davis - I've Gotta Be Me.mp3", + "title": "I've Gotta Be Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "The O'Kaysions", + "playlist_title": "Love Machine", + "found_song": { + "artist": "The O'Kaysions", + "disabled": false, + "favorite": false, + "guid": "6c688d76-7a91-a7a4-2199-11ac96096562", + "path": "z://MP4\\Stingray Karaoke\\Girl Watcher in the Style of The O'Kaysions with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "Girl Watcher" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "Nancy Sinatra", + "playlist_title": "Good Time Girl", + "found_song": { + "artist": "Nancy Sinatra", + "disabled": false, + "favorite": false, + "guid": "a7da2823-0c46-c0ca-8d84-ce132a34ce6b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Only Live Twice - Nancy Sinatra.mp4", + "title": "You Only Live Twice" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Roger Miller", + "playlist_title": "Vance", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72673677-0268-d881-a1a7-04f450544631", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - Do-Wacka-Do.mp4", + "title": "Do-Wacka-Do" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Johnny Nash", + "playlist_title": "You Got Soul", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "70636036-41be-91ee-13f7-1cee37bf8dbb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Got Stripes - Johnny Cash.mp4", + "title": "I Got Stripes" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Johnny Adams", + "playlist_title": "Release Me", + "found_song": { + "artist": "Agnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7d4d752-a8f5-a742-c115-b0f55c386b08", + "path": "z://MP4\\Sing King Karaoke\\Agnes - Release Me.mp4", + "title": "Release Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Jay & The Americans", + "playlist_title": "This Magic Moment", + "found_song": { + "artist": "Jay and The Americans", + "disabled": false, + "favorite": false, + "guid": "7e43b5de-05af-906e-42ad-b4a46c8fd887", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Magic Moment - Jay and The Americans.mp4", + "title": "This Magic Moment" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Esquires", + "playlist_title": "You've Got The Power", + "found_song": { + "artist": "The Source", + "disabled": false, + "favorite": false, + "guid": "6cf210f9-ea2b-02ef-92ec-f33f0c56af4d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Got the Love - The Source.mp4", + "title": "You Got the Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Al Martino", + "playlist_title": "I Can't Help It (If I'm Still In Love With You)", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "ffade7e1-3ab7-0b4c-907a-31b2c4f33c15", + "path": "z://MP4\\KaraFun Karaoke\\I Can't Help It (If I'm Still in Love with You) - Linda Ronstadt Karaoke Version KaraFun.mp4", + "title": "I Can't Help It (If I'm Still in Love with You)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Classics IV Featuring Dennis Yost", + "title": "Stormy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion", + "title": "Abraham, Martin And John", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Diana Ross And The Supremes & The Temptations", + "title": "I'm Gonna Make You Love Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Derek", + "title": "Cinnamon", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Young-Holt Unlimited", + "title": "Soulful Strut", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ohio Express", + "title": "Chewy Chewy", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Rene & Rene", + "title": "Lo Mucho Que Te Quiero (The More I Love You)", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sergio Mendes & Brasil '66", + "title": "Scarborough Fair", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Magic Lanterns", + "title": "Shame, Shame", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Chambers Brothers", + "title": "I Can't Turn You Loose", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Booker T. & The MG's", + "title": "Hang 'Em High", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Royal Guardsmen", + "title": "Baby Let's Wait", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Archie Bell & The Drells", + "title": "There's Gonna Be A Showdown", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Delfonics", + "title": "Ready Or Not Here I Come (Can't Hide From Love)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Bobby Taylor & The Vancouvers", + "title": "Malinda", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Brooklyn Bridge", + "title": "Worst That Could Happen", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Autry Inman", + "title": "Ballad Of Two Brothers", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jeannie C. Riley", + "title": "The Girl Most Likely", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Jerry Butler", + "title": "Are You Happy", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Bland", + "title": "Rockin' In The Same Old Boat", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Beach Boys", + "title": "Bluebirds Over The Mountain", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The 5th Dimension", + "title": "California Soul", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "O.C. Smith", + "title": "Isn't It Lonely Together", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Vanilla Fudge", + "title": "Season Of The Witch, Pt. 1", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Eric Burdon & The Animals", + "title": "White Houses", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Barbara Acklin", + "title": "Just Ain't No Love", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Sam & Dave", + "title": "Soul Sister, Brown Sugar", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Unifics", + "title": "The Beginning Of My End", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bob Seger System", + "title": "Ramblin' Gamblin' Man", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Paul Mauriat", + "title": "Chitty Chitty Bang Bang", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Merrilee Rush", + "title": "Reach Out", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Electric Stories", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Andy Kim", + "title": "Rainbow Ride", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Moments", + "title": "Not On The Outside", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "James Brown", + "title": "Tit For Tat (Ain't No Taking Back)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "John Wesley Ryles, I", + "title": "Kay", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Archies", + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Box Tops", + "title": "Sweet Cream Ladies, Forward March", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Five Stairsteps & Cubie", + "title": "Stay Close To Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Barry Ryan", + "title": "Eloise", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Dells", + "title": "Does Anybody Know I'm Here", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crystal Mansion", + "title": "The Thought Of Loving You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chambers Brothers", + "title": "Shout! - Part 1", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Goodees", + "title": "Condition Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Vee", + "title": "I'm Into Lookin' For Someone To Love Me", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "New Colony Six", + "title": "Things I'd Like To Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 30, + "missing_count": 47, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "1967 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "Hello Goodbye", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "68ecdff9-9cf3-f842-27a7-6e9c4ec3427c", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hello, Goodbye (Karaoke Version).mp4", + "title": "Hello, Goodbye" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Monkees", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "e98e49cf-3fbc-a369-c962-44ff037e1a97", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Daydream Believer - The Monkees.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Fred And The Playboys", + "playlist_title": "Judy In Disguise (With Glasses)", + "found_song": { + "artist": "John Fred And The Playboys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0161bc4c-d41c-2a56-2115-ae5dbaaeb2db", + "path": "z://MP4\\KaraokeOnVEVO\\John Fred And The Playboys - Judy In Disguise (With Glasses).mp4", + "title": "Judy In Disguise (With Glasses)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Chain Of Fools", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "edcf4df2-7421-a4a7-9b8d-fc0f7f0edb91", + "path": "z://MP4\\KaraFun Karaoke\\Aretha Franklin - Chain Of Fools.mp4", + "title": "Chain Of Fools" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I Say A Little Prayer", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "5909f4fc-eb0d-ed00-dde2-5392fb32b3b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Say A Little Prayer - Dionne Warwick.mp4", + "title": "I Say A Little Prayer" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Box Tops", + "playlist_title": "Neon Rainbow", + "found_song": { + "artist": "The Box Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5ceddcc-178f-2005-45a7-03fbe2da23f0", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Box Tops - Neon Rainbow.mp4", + "title": "Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "The Lemon Pipers", + "playlist_title": "Green Tambourine", + "found_song": { + "artist": "The Lemon Pipers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff789855-bce5-70d3-4949-549ed61763c9", + "path": "z://MP4\\KaraokeOnVEVO\\The Lemon Pipers - Green Tambourine.mp4", + "title": "Green Tambourine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Doors", + "playlist_title": "Love Me Two Times", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "b077fc3e-79a9-3146-6f3e-b0b38e75b6b3", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Love Me Two Times (Karaoke & Lyrics) (2).mp4", + "title": "Love Me Two Times" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Lulu", + "playlist_title": "To Sir With Love", + "found_song": { + "artist": "Lulu", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db5f4d3f-9c35-6d72-5bf2-c2cd7a25cca8", + "path": "z://MP4\\KaraokeOnVEVO\\Lulu - To Sir With Love.mp4", + "title": "To Sir With Love" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Etta James", + "playlist_title": "Tell Mama", + "found_song": { + "artist": "Etta James", + "disabled": false, + "favorite": false, + "guid": "edb8bd44-334f-4174-a020-27fe1555a303", + "path": "z://MP4\\Let's Sing Karaoke\\James, Etta - Tell Mama (Karaoke & Lyrics).mp4", + "title": "Tell Mama" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Dean Martin", + "playlist_title": "In The Misty Moonlight", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "024e69f2-5eac-d437-efa4-61dbea34fa20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In The Misty Moonlight - Dean Martin.mp4", + "title": "In The Misty Moonlight" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Small Faces", + "playlist_title": "Itchycoo Park", + "found_song": { + "artist": "Small Faces", + "disabled": false, + "favorite": false, + "guid": "d5b35794-dfad-778f-f822-103534173170", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Itchycoo Park - Small Faces.mp4", + "title": "Itchycoo Park" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Am I That Easy To Forget", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cfbe025a-ccde-43ad-1f30-00db4684720a", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - Am I That Easy To Forget.mp4", + "title": "Am I That Easy To Forget" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Everybody Knows", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d242bdd2-3c07-cda3-fd34-e353fe968eea", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dave Clark Five - Everybody Knows.mp4", + "title": "Everybody Knows" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Beach Boys", + "playlist_title": "Darlin'", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48bf516c-f3d7-775f-79b9-bda40882e116", + "path": "z://MP4\\KaraokeOnVEVO\\The Beach Boys - Darlin'.mp4", + "title": "Darlin'" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "The Foundations", + "playlist_title": "Baby, Now That I've Found You", + "found_song": { + "artist": "The Foundations", + "disabled": false, + "favorite": false, + "guid": "ce53ad2d-1584-5b4b-71e6-eae84efc8c68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby, Now That I ve Found You - The Foundations.mp4", + "title": "Baby, Now That I ve Found You" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Henson Cargill", + "playlist_title": "Skip A Rope", + "found_song": { + "artist": "Henson Cargill", + "disabled": false, + "favorite": false, + "guid": "f99a5dd6-acb2-6977-ed89-ab8bc0e29cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Skip A Rope - Henson Cargill.mp4", + "title": "Skip A Rope" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Classics IV", + "playlist_title": "Spooky", + "found_song": { + "artist": "Classics IV", + "disabled": false, + "favorite": false, + "guid": "0123fded-b088-33f3-987d-4279b1b5e651", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spooky - Classics IV.mp4", + "title": "Spooky" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Beatles", + "playlist_title": "I Am The Walrus", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "bfe8f8f0-1931-6649-3e11-273ee6e0a576", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am The Walrus - The Beatles.mp4", + "title": "I Am The Walrus" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Rolling Stones", + "playlist_title": "She's A Rainbow", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88e63a82-800a-9354-294e-cdc04a6e7d9f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rolling Stones - Shes A Rainbow.mp4", + "title": "She's A Rainbow" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Tom Jones", + "playlist_title": "I'm Coming Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64178efe-a2ee-152e-8cff-438b8d3bc2d7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Im Coming Home.mp4", + "title": "I'm Coming Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "72cb1730-ffa3-efef-83d0-2e25b3b4ddcf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Heard It Through The Grapevine - Gladys Knight & The Pips.mp4", + "title": "I Heard It Through The Grapevine" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Smokey Robinson & The Miracles", + "playlist_title": "I Second That Emotion", + "found_song": { + "artist": "Smokey Robinson", + "disabled": false, + "favorite": false, + "guid": "c49af341-3663-13f0-ffce-baea14df1120", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Second That Emotion - Smokey Robinson.mp4", + "title": "I Second That Emotion" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "The American Breed", + "playlist_title": "Bend Me, Shape Me", + "found_song": { + "artist": "Amen Corner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636852ce-d42c-34eb-01fb-ace803684fde", + "path": "z://MP4\\ZoomKaraokeOfficial\\Amen Corner - Bend Me, Shape Me.mp4", + "title": "Bend Me, Shape Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Summer Rain", + "found_song": { + "artist": "Johnny Rivers", + "disabled": false, + "favorite": false, + "guid": "439fb83a-d218-8cd8-383a-b64ab260829b", + "path": "z://MP4\\KtvEntertainment\\Johnny Rivers - Memphis Karaoke Lyrics.mp4", + "title": "Memphis" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "The Turtles", + "playlist_title": "She's My Girl", + "found_song": { + "artist": "The Four Tops", + "disabled": false, + "favorite": false, + "guid": "4346b34e-1bff-884d-3a57-b1e68c5ca95c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When She Was My Girl - The Four Tops.mp4", + "title": "When She Was My Girl" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Young Rascals", + "playlist_title": "It's Wonderful", + "found_song": { + "artist": "The Young Rascals", + "disabled": false, + "favorite": false, + "guid": "f032c62f-9a60-e8be-a492-6769d53265b4", + "path": "z://MP4\\TheKARAOKEChannel\\Good Lovin in the Style of The Young Rascals with lyrics (no lead vocal) karaoke video.mp4", + "title": "Good Lovin" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Wilson Pickett", + "playlist_title": "I'm In Love", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "36da35cc-6c50-a44a-c343-a649c12e1c3f", + "path": "z://MP4\\KaraokeOnVEVO\\Wilson Pickett - Fire And Water (Karaoke).mp4", + "title": "Fire And Water" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Lulu", + "playlist_title": "Best Of Both Worlds", + "found_song": { + "artist": "Brandy & Mase", + "disabled": false, + "favorite": false, + "guid": "b1ef0828-7daf-40aa-c423-bd41a4e8886d", + "path": "z://MP4\\Let's Sing Karaoke\\Brandy & Mase - Top Of The World (Karaoke & Lyrics).mp4", + "title": "Top Of The World" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Dusty Springfield", + "playlist_title": "What's It Gonna Be", + "found_song": { + "artist": "Dusty Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3af9853d-269f-b18b-989e-eba7496fccfb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dusty Springfield - Goin Back.mp4", + "title": "Goin' Back" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Dear Eloise", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc1386f7-1e2b-08dc-e522-8afed69b98c0", + "path": "z://MP4\\KaraokeOnVEVO\\The Hollies - I'm Alive.mp4", + "title": "I'm Alive" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "The Mamas & The Papas", + "playlist_title": "Dancing Bear", + "found_song": { + "artist": "The Mamas And The Papas", + "disabled": false, + "favorite": false, + "guid": "e86cf1be-0fc0-93b9-6e4b-20904c813a66", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancing In The Street - The Mamas And The Papas.mp4", + "title": "Dancing In The Street" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Kenny O'Dell", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Chris Brown ft. Benny Benassi", + "disabled": false, + "favorite": false, + "guid": "b7498ded-9569-0100-c377-d4793eed00b7", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown ft. Benny Benassi - Beautiful People (Karaoke Version).mp4", + "title": "Beautiful People" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Bobby Vee And The Strangers", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Ed Sheeran ft. Khalid", + "disabled": false, + "favorite": false, + "guid": "3cf4acdc-76aa-7700-f36c-2ded186f25c5", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran feat. Khalid - Beautiful People (Karaoke Version).mp4", + "title": "Beautiful People" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Billy Vera & Judy Clay", + "playlist_title": "Storybook Children", + "found_song": { + "artist": "Billy Vera", + "disabled": false, + "favorite": false, + "guid": "33a4f7cf-c954-0b23-02fb-db488cd39578", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Storybook Children - Billy Vera.mp4", + "title": "Storybook Children" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Jefferson Airplane", + "playlist_title": "Watch Her Ride", + "found_song": { + "artist": "Jefferson Airplane", + "disabled": false, + "favorite": false, + "guid": "5824935c-3b19-4e05-b3f1-eab06b1a6f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Rabbit - Jefferson Airplane.mp4", + "title": "White Rabbit" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "The Human Beinz", + "playlist_title": "Nobody But Me", + "found_song": { + "artist": "Michael Bublé ft. Black Thought", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e732e1c8-a47a-6f12-cb1c-8644495c7b0c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Buble feat Black Thought - Nobody But Me (With Rapper).mp4", + "title": "Nobody But Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "The Dells", + "playlist_title": "O-O, I Love You", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "41ea7bce-81bf-adde-4dfb-1597ad4b83f9", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Hello, I Love You (Karaoke & Lyrics) (2).mp4", + "title": "Hello, I Love You" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Harpers Bizarre", + "playlist_title": "Chattanooga Choo Choo", + "found_song": { + "artist": "The Andrews Sisters", + "disabled": false, + "favorite": false, + "guid": "ed2fb5a6-bbab-1db9-da0d-765572402936", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chattanooga Choo Choo - The Andrews Sisters.mp4", + "title": "Chattanooga Choo Choo" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Jimi Hendrix", + "playlist_title": "Foxey Lady", + "found_song": { + "artist": "Jimi Hendrix", + "disabled": false, + "favorite": false, + "guid": "c04ad96a-14fb-e866-4279-b17855daa346", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Foxy Lady - Jimi Hendrix.mp4", + "title": "Foxy Lady" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Carla Thomas", + "playlist_title": "Pick Up The Pieces", + "found_song": { + "artist": "Paloma Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb3f6f48-ab9b-7566-9d3a-958728a3c7e0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paloma Faith - Picking Up The Pieces.mp4", + "title": "Picking Up The Pieces" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Bill Wyman", + "playlist_title": "In Another Land", + "found_song": { + "artist": "Billy Swan", + "disabled": false, + "favorite": false, + "guid": "17fa78ec-4ec4-87b1-d0f9-c71d0adb1dd1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Can Help - Billy Swan.mp4", + "title": "I Can Help" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Billy Stewart", + "playlist_title": "Cross My Heart", + "found_song": { + "artist": "Billy Fury", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b05823a6-1b50-60d2-be9a-4ecd2665a5f8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Fury - Cross My Heart.mp4", + "title": "Cross My Heart" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Mockingbird", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "533d932a-ba9a-bc02-c026-db3b11c631bb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amazing Grace - Aretha Franklin.mp4", + "title": "Amazing Grace" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "The Manhattans", + "playlist_title": "I Call It Love", + "found_song": { + "artist": "The Manhattans", + "disabled": false, + "favorite": false, + "guid": "b955d6bf-44a9-fbaf-6ac3-e24147935032", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kiss And Say Goodbye - The Manhattans.mp4", + "title": "Kiss And Say Goodbye" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "The Union Gap Featuring Gary Puckett", + "title": "Woman, Woman", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Fantastic Johnny C", + "title": "Boogaloo Down Broadway", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Joe Tex", + "title": "Skinny Legs And All", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Martha Reeves & The Vandellas", + "title": "Honey Chile", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cher", + "title": "You Better Sit Down Kids", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Strawberry Alarm Clock", + "title": "Incense And Peppermints", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Cowsills", + "title": "The Rain, The Park & Other Things", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Rose Garden", + "title": "Next Plane To London", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "If I Could Build My Whole World Around You", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Stone Poneys Featuring Linda Ronstadt", + "title": "Different Drum", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Diana Ross & The Supremes", + "title": "In And Out Of Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Esquires", + "title": "And Get Away", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Donovan", + "title": "Wear Your Love Like Heaven", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Bee Gees", + "title": "(The Lights Went Out In) Massachusetts", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jay And The Techniques", + "title": "Keep The Ball Rollin'", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Buckinghams", + "title": "Susan", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jr. Walker & The All Stars", + "title": "Come See About Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Petula Clark", + "title": "The Other Man's Grass Is Always Greener", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Eric Burdon & The Animals", + "title": "Monterey", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Glen Campbell", + "title": "By The Time I Get To Phoenix", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brenton Wood", + "title": "Baby You Got It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Too Much Of Nothing", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Ed Ames", + "title": "Who Will Answer?", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "James Brown And The Famous Flames", + "title": "I Can't Stand Myself (When You Touch Me)", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jackie Wilson", + "title": "Since You Showed Me How To Be Happy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Sandpebbles", + "title": "Love Power", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Percy Sledge", + "title": "Cover Me", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Wes Montgomery", + "title": "Windy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Lettermen", + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Marvelettes", + "title": "My Baby Must Be A Magician", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Peaches & Herb", + "title": "Two Little Kids", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Sonny & Cher", + "title": "Good Combination", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Soul Survivors", + "title": "Explosion (In Your Soul)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The O'Jays", + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Vikki Carr", + "title": "The Lesson", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Bill Cosby", + "title": "Hooray For The Salvation Army Band", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Tommy Boyce & Bobby Hart", + "title": "I Wonder What She's Doing Tonite", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Al Greene & The Soul Mate's", + "title": "Back Up Train", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hugh Masekela", + "title": "Up-Up And Away", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Frankie Valli", + "title": "To Give (The Reason I Live)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Strawberry Alarm Clock", + "title": "Tomorrow", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bobby Vinton", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jerry Butler", + "title": "Lost", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Al Martino", + "title": "A Voice In The Choir", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "King Curtis & The Kingpins", + "title": "I Was Made To Love Her", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Ronnie Dove", + "title": "Dancin' Out Of My Heart", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "5 Stairsteps and Cubie", + "title": "Something's Missing", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Bruce Channel", + "title": "Mr. Bus Driver", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Music Makers", + "title": "United (Part 1)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Leon Haywood", + "title": "Mellow Moonlight", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Barbara Mason", + "title": "Oh, How It Hurts", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Epic Splendor", + "title": "A Little Rain Must Fall", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Laura Lee", + "title": "Up Tight, Good Man", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Impressions", + "title": "We're A Winner", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Fireballs", + "title": "Bottle Of Wine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 24, + "missing_count": 55, + "needs_manual_review": 24 + } + }, + { + "playlist_title": "1966 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Monkees", + "playlist_title": "I'm A Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "cacc68b9-fe9d-eac6-decd-8f8131b0b847", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m A Believer - The Monkees.mp4", + "title": "I m A Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Frank Sinatra", + "playlist_title": "That's Life", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "2ba8364b-c362-1a88-5bb4-670131d1143a", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - That's Life (Karaoke Version).mp4", + "title": "That's Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nancy Sinatra", + "playlist_title": "Sugar Town", + "found_song": { + "artist": "Nancy Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d4147d0-124a-9949-69a1-8cfea5344c5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nancy Sinatra - Sugar Town.mp4", + "title": "Sugar Town" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donovan", + "playlist_title": "Mellow Yellow", + "found_song": { + "artist": "Donovan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc35976-4ce8-dc04-dc17-669510850308", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donovan - Mellow Yellow.mp4", + "title": "Mellow Yellow" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aaron Neville", + "playlist_title": "Tell It Like It Is", + "found_song": { + "artist": "Aaron Neville", + "disabled": false, + "favorite": false, + "guid": "f6af5295-6e25-6661-2941-a0c26a394069", + "path": "z://MP4\\Let's Sing Karaoke\\Neville, Aaron - Tell It Like It Is (Karaoke & Lyrics).mp4", + "title": "Tell It Like It Is" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Temptations", + "playlist_title": "(I Know) I'm Losing You", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "929d7a96-a19c-4ee4-f6f5-41e28b5318d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I Know) I m Losing You - The Temptations.mp4", + "title": "(I Know) I m Losing You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stevie Wonder", + "playlist_title": "A Place In The Sun", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "b4826cb8-347e-35b2-521e-f1cc4b0d7c22", + "path": "z://CDG\\Various\\Stevie Wonder - A Place In The Sun.mp3", + "title": "A Place In The Sun" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Beach Boys", + "playlist_title": "Good Vibrations", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "06c1ba2a-c832-9d84-1abf-383bea110a8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Good Vibrations - The Beach Boys.mp4", + "title": "Good Vibrations" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Supremes", + "playlist_title": "You Keep Me Hangin' On", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be114f50-883f-1d61-30bd-437904b3427f", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - You Keep Me Hangin On.mp4", + "title": "You Keep Me Hangin' On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Four Tops", + "playlist_title": "Standing In The Shadows Of Love", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef858151-6b97-4101-4bf8-010ba3d57d22", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Standing In The Shadows Of Love.mp4", + "title": "Standing In The Shadows Of Love" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Mustang Sally", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "ff41754b-9d7b-8e9b-8dc9-623ee581d79e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mustang Sally - Wilson Pickett.mp4", + "title": "Mustang Sally" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Monkees", + "playlist_title": "(I'm Not Your) Steppin' Stone", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "2cc54713-3e7e-0a75-274c-2ea0dce8dd09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I m Not Your) Steppin Stone - The Monkees.mp4", + "title": "(I m Not Your) Steppin Stone" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Otis Redding", + "playlist_title": "Try A Little Tenderness", + "found_song": { + "artist": "Otis Redding", + "disabled": false, + "favorite": false, + "guid": "55dcc440-8fa0-a2e3-f46c-f78b2d98efc5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try A Little Tenderness - Otis Redding.mp4", + "title": "Try A Little Tenderness" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Seekers", + "playlist_title": "Georgy Girl", + "found_song": { + "artist": "The Seekers", + "disabled": false, + "favorite": false, + "guid": "54655cb6-0b56-a203-db30-33cf88d3d4d7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Georgy Girl - The Seekers.mp4", + "title": "Georgy Girl" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Stop Stop Stop", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1377fd4-5acc-dc8a-5c8b-576988ee3d0c", + "path": "z://MP4\\KaraokeOnVEVO\\The Hollies - Stop Stop Stop.mp4", + "title": "Stop Stop Stop" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Knock On Wood", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "3319eaa4-820e-cbce-86b3-c15001a05db2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Knock On Wood - Eddie Floyd.mp4", + "title": "Knock On Wood" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Roy Orbison", + "playlist_title": "Communication Breakdown", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d2cbcd2-2a17-134c-0613-ea84f430ae2b", + "path": "z://MP4\\KaraokeOnVEVO\\Roy Orbison - Communication Breakdown.mp4", + "title": "Communication Breakdown" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Tom Jones", + "playlist_title": "Green, Green Grass Of Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "663614e2-efcd-ad58-3d07-dc1272a9886e", + "path": "z://MP4\\Sing King Karaoke\\Tom Jones - Green Green Grass Of Home (Karaoke Version).mp4", + "title": "Green Green Grass Of Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Gene Pitney", + "playlist_title": "Just One Smile", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9137dc20-85e1-880a-89a8-8a8729f399ff", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Just One Smile.mp4", + "title": "Just One Smile" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Buckinghams", + "playlist_title": "Kind Of A Drag", + "found_song": { + "artist": "The Buckinghams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79487683-b8ca-eaae-aab6-8ed36aac869a", + "path": "z://MP4\\VocalStarKaraoke\\The Buckinghams - Kind Of A Drag.mp4", + "title": "Kind Of A Drag" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "The Spencer Davis Group", + "playlist_title": "Gimme Some Lovin'", + "found_song": { + "artist": "The Spencer Davis Group", + "disabled": false, + "favorite": false, + "guid": "bbc253e8-6cf1-b610-7f4a-56f07d684226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gimme Some Lovin - The Spencer Davis Group.mp4", + "title": "Gimme Some Lovin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Sandy Posey", + "playlist_title": "Single Girl", + "found_song": { + "artist": "Sandy Posey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1183ba3c-777c-7b07-1062-f1076ea90242", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandy Posey - Single Girl.mp4", + "title": "Single Girl" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Bobby Vinton", + "playlist_title": "Coming Home Soldier", + "found_song": { + "artist": "Boyzone", + "disabled": false, + "favorite": false, + "guid": "e6c3b4d8-3894-913c-05b7-ed36e34de17e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF080\\Boyzone - Coming Home Now - SF080 - 05.mp3", + "title": "Coming Home Now" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "The Mamas & The Papas", + "playlist_title": "Words Of Love", + "found_song": { + "artist": "The Mamas & The Papas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a94b74d9-f5c2-df9f-8b68-9092c82f5fe3", + "path": "z://MP4\\KaraokeOnVEVO\\The Mamas & The Papas - Words Of Love.mp4", + "title": "Words Of Love" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Roger Williams", + "playlist_title": "Born Free", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "c4d124ec-c990-3134-c146-a6b402b9ec2e", + "path": "z://MP4\\Let's Sing Karaoke\\Williams, Andy - Born Free (Karaoke & Lyrics).mp4", + "title": "Born Free" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Peter And Gordon", + "playlist_title": "Lady Godiva", + "found_song": { + "artist": "Peter And Gordon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa24e049-7971-6465-02dc-3f0feae944cf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter And Gordon - I Go To Pieces.mp4", + "title": "I Go To Pieces" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Herman's Hermits", + "playlist_title": "East West", + "found_song": { + "artist": "Herman's Hermits", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3bb5f470-afb7-3059-cb10-f97da35f3deb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hermans Hermits - Silhouettes.mp4", + "title": "Silhouettes" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Jimmy Ruffin", + "playlist_title": "I've Passed This Way Before", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8902163-6767-26c4-1868-cf879d724c5d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Ive Been This Way Before.mp4", + "title": "I've Been This Way Before" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "The Lovin' Spoonful", + "playlist_title": "Nashville Cats", + "found_song": { + "artist": "The Lovin' Spoonful", + "disabled": false, + "favorite": false, + "guid": "bd4b8a84-f7c1-771e-a088-d39a24959fed", + "path": "z://MP4\\KaraokeOnVEVO\\The Lovin' Spoonful - Daydream (Karaoke).mp4", + "title": "Daydream" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Petula Clark", + "playlist_title": "Color My World", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "guid": "a3654096-2dbb-e649-19b2-3c2733f18020", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - My Love (Karaoke).mp4", + "title": "My Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Bobby Goldsboro", + "playlist_title": "Blue Autumn", + "found_song": { + "artist": "Bobby Goldsboro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f34dfa24-e736-8fa2-52d2-113d87c8c451", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Goldsboro - Honey.mp4", + "title": "Honey" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Martha & The Vandellas", + "playlist_title": "I'm Ready For Love", + "found_song": { + "artist": "Martha & The Vandellas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "586a6bd2-987a-0e3c-88bf-9403a4a2ff41", + "path": "z://MP4\\KaraokeOnVEVO\\Martha & The Vandellas - Im Ready For Love.mp4", + "title": "I'm Ready For Love" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "A Hazy Shade Of Winter", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "guid": "db2a248d-d000-2c72-318a-d5069bf3ce5d", + "path": "z://CDG\\Various\\Simon & Garfunkel - Hazy Shade Of Winter.mp3", + "title": "Hazy Shade Of Winter" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Terry Knight and The Pack", + "playlist_title": "I (Who Have Nothing)", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "guid": "82667a97-dac3-b262-25af-75caaad56b89", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I (Who Have Nothing) - Jordin Sparks.mp4", + "title": "I (Who Have Nothing)" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Baja Marimba Band", + "playlist_title": "Ghost Riders In The Sky", + "found_song": { + "artist": "Vaughn Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ed411b5-f401-03eb-d989-fb7fe0b9f4e0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Vaughn Monroe - Ghost Riders In The Sky - SFMW 812 -04.mp3", + "title": "Ghost Riders In The Sky" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Spyder Turner", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "ab10c475-ffe7-fb3a-9314-346f39ce42c1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stand By Me - Tina Turner.mp4", + "title": "Stand By Me" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Pozo Seco Singers", + "playlist_title": "Look What You've Done", + "found_song": { + "artist": "Boz Scaggs", + "disabled": false, + "favorite": false, + "guid": "69635016-05eb-cba5-15c8-ee27abb34ad4", + "path": "z://MP4\\KtvEntertainment\\Boz Scaggs - Look What You've Done To Me Karaoke Lyrics.mp4", + "title": "Look What You've Done To Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Bobby Darin", + "playlist_title": "The Girl That Stood Beside Me", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "c218beb9-f728-fb6d-0f44-c9f6d7095427", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Good Life - Bobby Darin.mp4", + "title": "The Good Life" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "The Youngbloods", + "playlist_title": "Grizzly Bear", + "found_song": { + "artist": "The Youngbloods", + "disabled": false, + "favorite": false, + "guid": "d119e54b-13a6-3c00-3203-2770e9277885", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Get Together - The Youngbloods.mp4", + "title": "Get Together" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Another Night", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50104fda-d088-35b3-55e9-ed24183c8cc9", + "path": "z://MP4\\KaraokeOnVEVO\\Dionne Warwick - Alfie.mp4", + "title": "Alfie" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Mamas & The Papas", + "playlist_title": "Dancing In The Street", + "found_song": { + "artist": "The Mamas And The Papas", + "disabled": false, + "favorite": false, + "guid": "e86cf1be-0fc0-93b9-6e4b-20904c813a66", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancing In The Street - The Mamas And The Papas.mp4", + "title": "Dancing In The Street" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "Ramsey Lewis", + "playlist_title": "Day Tripper", + "found_song": { + "artist": "Beatles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3cec450-cfb3-ae31-f10c-2ed2b5392b0f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Beatles - Day Tripper - SFMW 850 -04.mp3", + "title": "Day Tripper" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Damita Jo", + "playlist_title": "If You Go Away", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "875bb1ff-d04f-ac97-2ef4-bf17f5d4e1f2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - If You Go Away.mp4", + "title": "If You Go Away" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "The Artistics", + "playlist_title": "I'm Gonna Miss You", + "found_song": { + "artist": "Milli Vanilli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9693caa4-3dc4-1000-1af1-34ae9a3f3485", + "path": "z://MP4\\Sing King Karaoke\\Milli Vanilli - Im Gonna Miss You.mp4", + "title": "I'm Gonna Miss You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "The Cyrkle", + "playlist_title": "Please Don't Ever Leave Me", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3675b624-6a69-6880-9d5f-c7c8212f1c0b", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Please Dont Leave Me.mp4", + "title": "Please Don't Leave Me" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Peaches & Herb", + "playlist_title": "Let's Fall In Love", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "506ea61c-fd84-4819-fd2b-ce7477b9c907", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Fools Fall In Love.mp4", + "title": "Fools Fall In Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Boots Randolph", + "playlist_title": "The Shadow Of Your Smile", + "found_song": { + "artist": "Astrud Gilberto", + "disabled": false, + "favorite": false, + "guid": "cae16601-9e45-093d-f44c-9ae4f5ad9a81", + "path": "z://MP4\\KaraFun Karaoke\\Astrud Gilberto - The Shadow Of Your Smile.mp4", + "title": "The Shadow Of Your Smile" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Bobby Hebb", + "playlist_title": "Love Me", + "found_song": { + "artist": "Stooshe ft. Travie Mccoy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53ab4d7a-948b-a3a5-5240-1906187f04a7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF313\\Stooshe & Travie Mccoy - Love Me - SF313 - 15.mp3", + "title": "Love Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Don Ho and the Aliis", + "playlist_title": "Tiny Bubbles", + "found_song": { + "artist": "Don Ho", + "disabled": false, + "favorite": false, + "guid": "15feeab4-abd1-5871-7387-27dc9d31af9a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tiny Bubbles - Don Ho.mp4", + "title": "Tiny Bubbles" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Royal Guardsmen", + "title": "Snoopy Vs. The Red Baron", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "The New Vaudeville Band", + "title": "Winchester Cathedral", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Good Thing", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Devil With A Blue Dress On & Good Golly Miss Molly", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Music Machine", + "title": "Talk Talk", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ronnie Dove", + "title": "Cry", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jackie Wilson", + "title": "Whispers (Gettin' Louder)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "? (Question Mark) & The Mysterians", + "title": "I Need Somebody", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Tell It To The Rain", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Mame", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Eric Burdon & The Animals", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Yardbirds", + "title": "Happenings Ten Years Time Ago", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Neil Diamond", + "title": "I Got The Feelin' (Oh No No)", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Miracles", + "title": "(Come 'Round Here) I'm The One You Need", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Association", + "title": "Pandora's Golden Heebie Jeebies", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tommy James And The Shondells", + "title": "It's Only Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Percy Sledge", + "title": "It Tears Me Up", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Blues Magoos", + "title": "(We Ain't Got) Nothin' Yet", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Innocence", + "title": "There's Got To Be A Word!", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Senator Everett McKinley Dirksen", + "title": "Gallant Men", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Keith", + "title": "98.6", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Gene Chandler", + "title": "I Fooled You This Time", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Gary Lewis And The Playboys", + "title": "Where Will The Words Come From", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. West's Medicine Show and Junk Band", + "title": "The Eggplant That Ate Chicago", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Electric Prunes", + "title": "I Had Too Much To Dream (Last Night)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Critters", + "title": "Bad Misunderstanding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Happenings", + "title": "Goodnight My Love", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Joe Tex", + "title": "Papa Was Too", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lou Rawls", + "title": "You Can Bring Me All Your Heartaches", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Sam The Sham and the Pharaohs", + "title": "How Do You Catch A Girl", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Drifters", + "title": "Baby What I Mean", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Emperor's", + "title": "Karate", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Outsiders", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dean Martin", + "title": "(Open Up The Door) Let The Good Times In", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Young Holt Trio", + "title": "Wack Wack", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Baby Ray", + "title": "There's Something On Your Mind", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Peter And Gordon", + "title": "Knight In Rusty Armour", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Alvin Cash & The Registers", + "title": "Alvin's Boo-Ga-Loo", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "The Gunter Kallmann Chorus", + "title": "Wish Me A Rainbow", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Sergio Mendes & Brasil '66", + "title": "Constant Rain (Chove Chuva)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Tommy Roe", + "title": "It's Now Winters Day", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Seeds", + "title": "Pushin' Too Hard", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bob Crewe Generation", + "title": "Music To Watch Girls By", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Howard Tate", + "title": "Look At Granny Run, Run", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Freddy Scott", + "title": "Are You Lonely For Me", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "J.J. Jackson", + "title": "I Dig Girls", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Sopwith Camel", + "title": "Hello Hello", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Take Me For A Little While", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jimmy Castor", + "title": "Hey, Leroy, Your Mama's Callin' You", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Sam & Dave", + "title": "You Got Me Hummin'", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Hardtimes", + "title": "Fortune Teller", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 28, + "missing_count": 51, + "needs_manual_review": 28 + } + }, + { + "playlist_title": "1965 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Over And Over", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d566cd09-a589-e0d5-6b37-1a2073b787d5", + "path": "z://MP4\\KaraokeOnVEVO\\The Dave Clark Five - Over And Over.mp4", + "title": "Over And Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eddy Arnold", + "playlist_title": "Make The World Go Away", + "found_song": { + "artist": "Eddy Arnold", + "disabled": false, + "favorite": false, + "guid": "4cd71ff7-f05d-b153-23c8-4a032541284c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make The World Go Away - Eddy Arnold.mp4", + "title": "Make The World Go Away" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Roger Miller", + "playlist_title": "England Swings", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e81e84-3704-24c9-535f-47d879a0d831", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - England Swings.mp4", + "title": "England Swings" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "Ebb Tide", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "10206fa1-36c8-14c1-a9a2-e50312e3b888", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ebb Tide - The Righteous Brothers.mp4", + "title": "Ebb Tide" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Beatles", + "playlist_title": "We Can Work It Out", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3315f41a-ef1d-7825-539b-3be70c710782", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Can Work It Out - The Beatles.mp4", + "title": "We Can Work It Out" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Statler Brothers", + "playlist_title": "Flowers On The Wall", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "guid": "52770daf-dab7-9456-7115-cf55ac835109", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Statler Brothers, The - Flowers On The Wall.mp3", + "title": "Flowers On The Wall" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dean Martin", + "playlist_title": "I Will", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "b7ed8be5-bcfd-9014-408a-a25fa6fb0f5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will - Dean Martin.mp4", + "title": "I Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Supremes", + "playlist_title": "I Hear A Symphony", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6be089ee-0f63-7148-0027-9e8720fb2205", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - I Hear A Symphony.mp4", + "title": "I Hear A Symphony" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Lovin' Spoonful", + "playlist_title": "You Didn't Have To Be So Nice", + "found_song": { + "artist": "The Lovin' Spoonful", + "disabled": false, + "favorite": false, + "guid": "ae124cbd-3f9d-8211-13ff-00d450808096", + "path": "z://MP4\\KaraokeOnVEVO\\The Lovin' Spoonful - You Didn't Have To Be So Nice (Karaoke).mp4", + "title": "You Didn't Have To Be So Nice" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Animals", + "playlist_title": "It's My Life", + "found_song": { + "artist": "The Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dd77b27-41c6-2cb6-2a5a-4ebc12353a07", + "path": "z://MP4\\KaraokeOnVEVO\\The Animals - Its My Life.mp4", + "title": "It's My Life" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Len Barry", + "playlist_title": "1-2-3", + "found_song": { + "artist": "Len Barry", + "disabled": false, + "favorite": false, + "guid": "e295cd96-1829-3cb6-4a17-fbfd7524d47e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 1-2-3 - Len Barry.mp4", + "title": "1-2-3" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Beatles", + "playlist_title": "Day Tripper", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "895679a1-575a-f11d-49d5-ed48befa84b4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Day Tripper - The Beatles.mp4", + "title": "Day Tripper" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Al Martino", + "playlist_title": "Spanish Eyes", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "guid": "04c7ad43-d9a8-67d1-491b-77d40303579a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spanish Eyes - Al Martino.mp4", + "title": "Spanish Eyes" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Four Tops", + "playlist_title": "Something About You", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd176396-79b6-50b3-6129-c3069e15c89f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Something About You.mp4", + "title": "Something About You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Get Off Of My Cloud", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "4e85ab90-510d-6f36-7d90-16c19868a187", + "path": "z://MP4\\Stingray Karaoke\\Get Off Of My Cloud in the Style of The Rolling Stones karaoke with lyrics (no lead vocal).mp4", + "title": "Get Off Of My Cloud" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Gene Pitney", + "playlist_title": "Princess In Rags", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ad486b7-8c56-d947-022d-7ad597a0e7b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Princess In Rags.mp4", + "title": "Princess In Rags" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Fontella Bass", + "playlist_title": "Rescue Me", + "found_song": { + "artist": "Fontella Bass", + "disabled": false, + "favorite": false, + "guid": "d6cbc2bf-c39a-3c7f-ba9f-9274d87741ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rescue Me - Fontella Bass.mp4", + "title": "Rescue Me" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tom Jones", + "playlist_title": "Thunderball", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "f6278b80-4d18-2075-d00c-c49bbf945687", + "path": "z://CDG\\Various\\Tom Jones - Thunderball.mp3", + "title": "Thunderball" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Ain't That Peculiar", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "c5fd0a79-4d6b-eba6-f8aa-d64bec7a9937", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ain t That Peculiar - Marvin Gaye.mp4", + "title": "Ain t That Peculiar" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Herman's Hermits", + "playlist_title": "A Must To Avoid", + "found_song": { + "artist": "Herman's Hermits", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c4a36f4-d529-a26e-2d74-02b1b69b5f53", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hermans Hermits - A Must To Avoid.mp4", + "title": "A Must To Avoid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Look Through Any Window", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4f38ff-51f4-f1dd-16ad-71bc292d92b8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - Look Through Any Window.mp4", + "title": "Look Through Any Window" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Fortunes", + "playlist_title": "Here It Comes Again", + "found_song": { + "artist": "The Fortunes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f1624-0ce0-3421-4ffb-9383f47eb4e6", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Fortunes - Here It Comes Again.mp4", + "title": "Here It Comes Again" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Ray Charles", + "playlist_title": "Crying Time", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "75cccfe6-3924-5158-e2a2-a6b5b99a1f4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crying Time - Ray Charles.mp4", + "title": "Crying Time" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Frank Sinatra", + "playlist_title": "It Was A Very Good Year", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95cea314-b0f9-a78a-b95b-ecef1386397a", + "path": "z://MP4\\KaraokeOnVEVO\\Frank Sinatra - It Was A Very Good Year.mp4", + "title": "It Was A Very Good Year" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Petula Clark", + "playlist_title": "My Love", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "guid": "a3654096-2dbb-e649-19b2-3c2733f18020", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - My Love (Karaoke).mp4", + "title": "My Love" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "The Temptations", + "playlist_title": "Don't Look Back", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "3e13c940-787f-8b26-1fbf-28d8d4893bae", + "path": "z://MP4\\KtvEntertainment\\The Temptations - Don't Look Back Karaoke Lyrics.mp4", + "title": "Don't Look Back" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Lou Christie", + "playlist_title": "Lightnin' Strikes", + "found_song": { + "artist": "Lou Christie", + "disabled": false, + "favorite": false, + "guid": "7835cd46-adfb-7991-d248-a08f459c0101", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF093\\Lou Christie - Lightnin' Strikes - SF093 - 12.mp3", + "title": "Lightnin' Strikes" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Uptight (Everything's Alright)", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "6045a5fa-fa2f-5f47-edbc-6cc08a373821", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Uptight (Everything s Alright) - Stevie Wonder.mp4", + "title": "Uptight (Everything s Alright)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "James Brown And The Famous Flames", + "playlist_title": "I Got You (I Feel Good)", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eee47d61-1213-2e4e-6aa8-340599926e2b", + "path": "z://MP4\\ZoomKaraokeOfficial\\James Brown - I Got You (I Feel Good).mp4", + "title": "I Got You (I Feel Good)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5eb0c353-d0c2-a098-2622-7fbbbbf01b92", + "path": "z://MP4\\KaraokeOnVEVO\\Simon & Garfunkel - The Sound Of Silence.mp4", + "title": "The Sound Of Silence" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "The McCoys", + "playlist_title": "Fever", + "found_song": { + "artist": "Rocky Sharpe & The Replays", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a945711-63d6-161a-58c9-e6b1874f5517", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rocky Sharpe And The Replays - Never.mp4", + "title": "Never" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Wonder Who?", + "playlist_title": "Don't Think Twice", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "5be287a8-0a32-e290-fdd1-f568f654dcf9", + "path": "z://CDG\\Various\\Frankie Valli & The Four Seasons - Don`t Think Twice.mp3", + "title": "Don`t Think Twice" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Puppet On A String", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84edec76-5054-d6c3-ad93-a75331e90cf8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Puppet On A String.mp4", + "title": "Puppet On A String" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Ramsey Lewis Trio", + "playlist_title": "Hang On Sloopy", + "found_song": { + "artist": "Mccoys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb896dfc-1dd2-579c-ca73-a457017a82ab", + "path": "z://MP4\\VocalStarKaraoke\\Mccoys - Hang On Sloopy.mp4", + "title": "Hang On Sloopy" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Beach Boys", + "playlist_title": "The Little Girl I Once Knew", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "87ea6bb7-b380-eae4-0b5f-20ba95cf51ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Deuce Coupe - The Beach Boys.mp4", + "title": "Little Deuce Coupe" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "The Yardbirds", + "playlist_title": "I'm A Man", + "found_song": { + "artist": "Marina & The Diamonds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17a73366-795e-3750-4c8f-215d597523af", + "path": "z://MP4\\Sing King Karaoke\\Marina and the Diamonds - Im A Ruin.mp4", + "title": "I'm A Ruin" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "We Five", + "playlist_title": "Let's Get Together", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "fb8bec8a-7199-1fbd-ee56-edbfbbb45c51", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - Let's Stay Together (Karaoke & Lyrics) (2).mp4", + "title": "Let's Stay Together" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "The Newbeats", + "playlist_title": "Run, Baby Run (Back Into My Arms)", + "found_song": { + "artist": "The Newbeats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "428607c6-1260-7f2b-d56e-af1b3541ba60", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Newbeats - Run Baby Run.mp4", + "title": "Run Baby Run" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Connie Francis", + "playlist_title": "Jealous Heart", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10602a60-0cf9-21bd-ada4-fe864a334f0f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Connie Francis - Together.mp4", + "title": "Together" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Vic Dana", + "playlist_title": "Crystal Chandelier", + "found_song": { + "artist": "Charley Pride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ebc19d2-3aa0-26b7-78b7-8010295d0478", + "path": "z://MP4\\ZoomKaraokeOfficial\\Charley Pride - Crystal Chandeliers.mp4", + "title": "Crystal Chandeliers" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Noel Harrison", + "playlist_title": "A Young Girl", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "446e3ead-71df-ae32-898f-aa217a181c34", + "path": "z://MP4\\Karaoke Sing Sing\\Bruno Mars - Young Girls (Karaoke Version) (2) (2).mp4", + "title": "Young Girls" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "The Kinks", + "playlist_title": "A Well Respected Man", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f5c9ada-ccdc-0e03-61ad-3c0341800597", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Kinks - Apeman.mp4", + "title": "Apeman" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Are You There (With Another Girl)", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fda116b7-a0b0-db4f-53ca-8f0438d25635", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dionne Warwick - All The Love In The World.mp4", + "title": "All The Love In The World" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Don't Fight It", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "8cfca36c-acff-5ef9-6cbf-93bcd1b164ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In The Midnight Hour - Wilson Pickett.mp4", + "title": "In The Midnight Hour" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Hedgehoppers Anonymous", + "playlist_title": "It's Good News Week", + "found_song": { + "artist": "Hedge Hoppers Anonymous", + "disabled": false, + "favorite": false, + "guid": "250cea0d-9b1a-60c5-9f8f-93779dc5f490", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Hedge Hoppers Anonymous - It's Good News Week - SF086 - 07.mp3", + "title": "It's Good News Week" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Our World", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "guid": "41e702d7-2196-9d23-ab98-b72e0548d84a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Poetry In Motion - Johnny Tillotson.mp4", + "title": "Poetry In Motion" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Under Your Spell Again", + "found_song": { + "artist": "Buck Owens", + "disabled": false, + "favorite": false, + "guid": "9224ad9d-e8ff-32f4-8d36-90c954af6ef2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Under Your Spell Again - Buck Owens.mp4", + "title": "Under Your Spell Again" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Jack Jones", + "playlist_title": "Love Bug", + "found_song": { + "artist": "Jess Glynne & Jax Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d62720e-6dcf-38d6-865d-15e0aa72fdff", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jess Glynne & Jax Jones - One Touch.mp4", + "title": "One Touch" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Second Hand Rose", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "81c74a53-7ae8-39c8-d921-5b232c6a0ad0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Second Hand Rose - SFG042 - 13.mp3", + "title": "Second Hand Rose" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Rolling Stones", + "playlist_title": "As Tears Go By", + "found_song": { + "artist": "Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "a3ca5351-ab70-996f-0f6f-8071438abbc5", + "path": "z://CDG\\Various\\Rolling Stones - As Tears Go By.mp3", + "title": "As Tears Go By" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Fontella Bass", + "playlist_title": "Recovery", + "found_song": { + "artist": "Fontella Bass", + "disabled": false, + "favorite": false, + "guid": "d6cbc2bf-c39a-3c7f-ba9f-9274d87741ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rescue Me - Fontella Bass.mp4", + "title": "Rescue Me" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "The Miracles", + "playlist_title": "Going To A Go-Go", + "found_song": { + "artist": "Smokey Robinson & The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d43d435-5b6a-c5ba-919e-e3e727cf5578", + "path": "z://MP4\\KaraokeOnVEVO\\Smokey Robinson & The Miracles - Point It Out.mp4", + "title": "Point It Out" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Otis Redding", + "playlist_title": "Just One More Day", + "found_song": { + "artist": "Otis Redding", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b95c080c-f55e-f11e-e57c-90bef0b25583", + "path": "z://MP4\\ZoomKaraokeOfficial\\Otis Redding - Love Man.mp4", + "title": "Love Man" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Maxine Brown", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Marianne Faithfull", + "playlist_title": "Go Away From My World", + "found_song": { + "artist": "Marianne Faithfull", + "disabled": false, + "favorite": false, + "guid": "f31c69d7-1d7d-9245-450f-34ec20571395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF147\\Marianne Faithfull - Ballad Of Lucy Jordan - SF147 - 06.mp3", + "title": "Ballad Of Lucy Jordan" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "The Young Rascals", + "playlist_title": "I Ain't Gonna Eat Out My Heart Anymore", + "found_song": { + "artist": "Young Rascals", + "disabled": false, + "favorite": false, + "guid": "1e8167d2-0202-d26a-4d35-f7f9ac8d3e77", + "path": "z://CDG\\Various\\Young Rascals - I Ain't Gonna Eat Out My Heart A.mp3", + "title": "I Ain't Gonna Eat Out My Heart A" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "The Beau Brummels", + "playlist_title": "Good Time Music", + "found_song": { + "artist": "The Easybeats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6cc6523-7c4a-82fd-76f8-f3d8ff546587", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Easybeats - Good Times.mp4", + "title": "Good Times" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Tony Bennett", + "playlist_title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "8af5f91a-f6b8-8a5c-90e4-56af450b1278", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Shadow Of Your Smile - Tony Bennett.mp4", + "title": "The Shadow Of Your Smile" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Byrds", + "title": "Turn! Turn! Turn! (To Everything There Is A Season)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Let's Hang On!", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The Shangri-Las", + "title": "I Can Never Go Home Anymore", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Vogues", + "title": "Five O'Clock World", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry Young", + "title": "One Has My Name (The Other Has My Heart)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jay & The Americans", + "title": "Sunday And Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gary Lewis And The Playboys", + "title": "She's Just My Style", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Taste Of Honey", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jackie Lee", + "title": "The Duck", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Roy Head And The Traits", + "title": "Apple Of My Eye", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The T-Bones", + "title": "No Matter What Shape (Your Stomach's In)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Bobby Vinton", + "title": "Satin Pillows", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Impressions", + "title": "You've Been Cheatin'", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The Viscounts", + "title": "Harlem Nocturne", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Don Covay & The Goodtimers", + "title": "Seesaw", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Joe Tex", + "title": "A Sweet Woman Like You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ronny And The Daytonas", + "title": "Sandy", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Knickerbockers", + "title": "Lies", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Billy Joe Royal", + "title": "I've Got To Be Somebody", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ronnie Dove", + "title": "Kiss Away", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Toys", + "title": "Attack", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Buck Owens and The Buckaroos", + "title": "Buckaroo", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Packers", + "title": "Hole In The Wall", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "James Brown At The Organ", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Jenny Take A Ride!", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dino, Desi & Billy", + "title": "Please Don't Fight It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Bobby Goldsboro", + "title": "Broomstick Cowboy", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brook Benton", + "title": "Mother Nature, Father Time", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lou Johnson", + "title": "A Time To Love-A Time To Cry (Petite Fleur)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The C.O.D.'s", + "title": "Michael", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Patti LaBelle And The Blue Belles", + "title": "All Or Nothing", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Bobby Powell", + "title": "C.C. Rider", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Mike Douglas", + "title": "The Men In My Little Girl's Life", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Johnny Thunder", + "title": "Everybody Do The Sloopy", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Zorba The Greek", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Tijuana Taxi", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The 4 Seasons", + "title": "Little Boy (In Grown Up Clothes)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Martha & The Vandellas", + "title": "Love (Makes Me Do Foolish Things)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lowell Fulsom", + "title": "Black Nights", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Johnny Mathis", + "title": "On A Clear Day You Can See Forever", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "King Curtis", + "title": "Spanish Harlem", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 30, + "missing_count": 42, + "needs_manual_review": 30 + } + }, + { + "playlist_title": "1964 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "I Feel Fine", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "89fd3aeb-1dcf-8372-3855-d9214de52084", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel Fine - The Beatles.mp4", + "title": "I Feel Fine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Supremes", + "playlist_title": "Come See About Me", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "f79cca65-cec1-0a42-8901-9dba9b0a68e9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come See About Me - The Supremes.mp4", + "title": "Come See About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Beatles", + "playlist_title": "She's A Woman", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a4adf696-6af2-c414-4204-fdcdd965c96c", + "path": "z://MP4\\singsongsmusic\\She s a Woman - Karaoke HD (In the style of The Beatles).mp4", + "title": "She s a Woman" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Zombies", + "playlist_title": "She's Not There", + "found_song": { + "artist": "The Zombies", + "disabled": false, + "favorite": false, + "guid": "cdbebaa6-7da7-c596-5556-4c2f66beffe3", + "path": "z://MP4\\Stingray Karaoke\\She's Not There in the Style of The Zombies karaoke video with lyrics (no lead vocal).mp4", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Goin' Out Of My Head", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "guid": "fd8b5c2f-ce43-20b3-f002-0cb074b7bc8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goin Out Of My Head - Little Anthony And The Imperials.mp4", + "title": "Goin Out Of My Head" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Time Is On My Side", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "06234893-f61e-f474-f00d-3b0d61d7bf04", + "path": "z://MP4\\KaraokeOnVEVO\\The Rolling Stones - Time Is On My Side (Karaoke).mp4", + "title": "Time Is On My Side" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Searchers", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Searchers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b98316e4-ab0d-2c03-c28b-6c342fc22dfd", + "path": "z://MP4\\KaraokeOnVEVO\\The Searchers - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Manfred Mann", + "playlist_title": "Sha La La", + "found_song": { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "guid": "b04fe4e7-8f7b-9e22-e38f-35cbaf97f037", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF084\\Manfred Mann - Sha La La - SF084 - 05.mp3", + "title": "Sha La La" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Pitney", + "playlist_title": "I'm Gonna Be Strong", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "guid": "6275424c-e373-cd6d-c6cd-6b691e342682", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF094\\Gene Pitney - I'm Gonna Be Strong - SF094 - 15.mp3", + "title": "I'm Gonna Be Strong" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Herman's Hermits", + "playlist_title": "I'm Into Something Good", + "found_song": { + "artist": "Herman s Hermits", + "disabled": false, + "favorite": false, + "guid": "5d3e3342-cf28-9319-9d89-398cc6cfb589", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Into Something Good - Herman s Hermits.mp4", + "title": "I m Into Something Good" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Kinks", + "playlist_title": "You Really Got Me", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a77c2508-2512-8a1e-acb6-0c13cc5fdf7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Kinks - You Really Got Me.mp4", + "title": "You Really Got Me" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Shangri-Las", + "playlist_title": "Leader Of The Pack", + "found_song": { + "artist": "The Shangri-Las", + "disabled": false, + "favorite": false, + "guid": "7dfa48df-962e-16b2-80c4-6087ab266e32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Pack - The Shangri-Las.mp4", + "title": "Leader Of The Pack" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Marvin Gaye", + "playlist_title": "How Sweet It Is To Be Loved By You", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "bcf0df83-fc34-7784-7a02-6c6628021e68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD024 - Motown\\Marvin Gaye - How Sweet It Is (to Be Loved By You) - SFG024 - 04.mp3", + "title": "How Sweet It Is (to Be Loved By You)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "The Supremes", + "playlist_title": "Baby Love", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28251b11-502e-caf1-1146-1385733fa34b", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - Baby Love.mp4", + "title": "Baby Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "You've Lost That Lovin' Feelin'", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "1f9ebc24-e99d-a016-4175-5126465760dc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF046\\The Righteous Brothers - You've Lost That Lovin' Feelin' - SF046 - 10.mp3", + "title": "You've Lost That Lovin' Feelin'" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Ronettes", + "playlist_title": "Walking In The Rain", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "71d164eb-2448-96c2-d2b6-fd7810481268", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In The Rain - The Ronettes.mp4", + "title": "Walking In The Rain" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Matt Monro", + "playlist_title": "Walk Away", + "found_song": { + "artist": "Matt Monro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4c2a78-a43b-b559-07dd-2be85392de21", + "path": "z://MP4\\ZoomKaraokeOfficial\\Matt Monro - Walk Away.mp4", + "title": "Walk Away" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Petula Clark", + "playlist_title": "Downtown", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff4cdcbd-d10f-3c02-fd9b-fe7480fcd8f5", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - Downtown.mp4", + "title": "Downtown" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Roger Miller", + "playlist_title": "Do-Wacka-Do", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72673677-0268-d881-a1a7-04f450544631", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - Do-Wacka-Do.mp4", + "title": "Do-Wacka-Do" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Dean Martin", + "playlist_title": "You're Nobody Till Somebody Loves You", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "f6deb0b7-27a8-df88-300f-5a103221f137", + "path": "z://MP4\\KaraFun Karaoke\\Dean Martin - You're Nobody Till Somebody Loves You.mp4", + "title": "You're Nobody Till Somebody Loves You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Shirley Ellis", + "playlist_title": "The Name Game", + "found_song": { + "artist": "Shirley Ellis", + "disabled": false, + "favorite": false, + "guid": "4e553279-d6f7-06be-4081-7c4688044c18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Name Game - Shirley Ellis.mp4", + "title": "The Name Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Kinks", + "playlist_title": "All Day And All Of The Night", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48ef4eac-601c-36db-f43f-f4d79506a95c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Kinks - All Day And All Of The Night.mp4", + "title": "All Day And All Of The Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Sonny James", + "playlist_title": "You're The Only World I Know", + "found_song": { + "artist": "Sonny James", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a942a35d-cdcb-b35f-df27-ac12c4f3cc48", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny James - Youre The Only World I Know.mp4", + "title": "You're The Only World I Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Bachelors", + "playlist_title": "No Arms Can Ever Hold You", + "found_song": { + "artist": "The Bachelors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c085b86-4912-81d6-c018-4ef742c71583", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Bachelors - No Arms Can Ever Hold You.mp4", + "title": "No Arms Can Ever Hold You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Bobby Vinton", + "playlist_title": "Mr. Lonely", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "1554998d-baef-6d3d-b714-25f28babcb20", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Vinton - Blue On Blue (Karaoke).mp4", + "title": "Blue On Blue" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "The Beach Boys", + "playlist_title": "Dance, Dance, Dance", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "0fec1d72-a277-c5be-fca9-8e944f1175f7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fun, Fun, Fun - The Beach Boys.mp4", + "title": "Fun, Fun, Fun" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "The Larks", + "playlist_title": "The Jerk", + "found_song": { + "artist": "Fitz & The Tantrums", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "b5e4bb3c-e6d8-ca74-0407-141b7681dcb4", + "path": "z://CDG\\Various\\Fitz & The Tantrums - The Walker.mp3", + "title": "The Walker" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Impressions", + "playlist_title": "Amen", + "found_song": { + "artist": "The Impressions", + "disabled": false, + "favorite": false, + "guid": "46baa50a-c6e1-5977-f71f-150e82b7b85e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All Right - The Impressions.mp4", + "title": "It s All Right" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Mountain Of Love", + "found_song": { + "artist": "Charley Pride", + "disabled": false, + "favorite": false, + "guid": "22020b48-a22a-b204-6832-9f86722044eb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mountain Of Love - Charley Pride.mp4", + "title": "Mountain Of Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Any Way You Want It", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a627d75-0ddf-f901-871b-61f4a65cc450", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dave Clark Five - Catch Us If You Can.mp4", + "title": "Catch Us If You Can" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "The Drifters", + "playlist_title": "Saturday Night At The Movies", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b370f9f7-e13c-2a0c-97b2-e55ecd5d2a65", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Saturday Night At The Movies - The Drifters.mp4", + "title": "Saturday Night At The Movies" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Del Shannon", + "playlist_title": "Keep Searchin' (We'll Follow The Sun)", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b36baf93-f0c8-fe31-6bb9-c0fb38d6471c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Del Shannon - Keep Searchin.mp4", + "title": "Keep Searchin'" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Maxine Brown", + "playlist_title": "Oh No Not My Baby", + "found_song": { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "guid": "ecb493e9-d4d6-8c72-0040-ac8c9125e83c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Manfred Mann - Oh No Not My Baby - SF086 - 02.mp3", + "title": "Oh No Not My Baby" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Marianne Faithfull", + "playlist_title": "As Tears Go By", + "found_song": { + "artist": "Marianne Faithfull", + "disabled": false, + "favorite": false, + "guid": "b54b4a1d-38d5-beff-f6e3-6c50fc9df802", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF093\\Marianne Faithfull - Come And Stay With Me - SF093 - 05.mp3", + "title": "Come And Stay With Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "The Marvelettes", + "playlist_title": "Too Many Fish In The Sea", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "06e00088-6991-0f3c-6a0f-d03cf76b2de9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Many Fish In The Sea - Bette Midler.mp4", + "title": "Too Many Fish In The Sea" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Andy Williams", + "playlist_title": "Dear Heart", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f23928c-e106-8727-d916-e06373c1af3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Happy Heart.mp4", + "title": "Happy Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "The Ray Charles Singers", + "playlist_title": "One More Time", + "found_song": { + "artist": "Ray Price", + "disabled": false, + "favorite": false, + "guid": "11735add-e9ac-6df2-22ff-bdf5325e7dbe", + "path": "z://MP4\\KaraokeOnVEVO\\Ray Price - One More Time (Karaoke).mp4", + "title": "One More Time" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Ronnie Dove", + "playlist_title": "Right Or Wrong", + "found_song": { + "artist": "Wanda Jackson", + "disabled": false, + "favorite": false, + "guid": "74148229-a2ae-7cce-1dc6-67b6337808b0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Right Or Wrong - Wanda Jackson.mp4", + "title": "Right Or Wrong" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Jack Jones", + "playlist_title": "Dear Heart", + "found_song": { + "artist": "Jax Jones & Bebe Rexha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47522e3f-f2dd-3bfa-b81a-7cf8879b6f68", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jax Jones & Bebe Rexha - Harder.mp4", + "title": "Harder" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Gestures", + "playlist_title": "Run, Run, Run", + "found_song": { + "artist": "The Libertines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "746c40cd-8b1d-418f-8df6-fb81200ff8c4", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Libertines - Run Run Run.mp4", + "title": "Run Run Run" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Chuck Jackson", + "playlist_title": "Since I Don't Have You", + "found_song": { + "artist": "The Skyliners", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4083af-a434-867b-0a02-0051d020acb2", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Skyliners - Since I Dont Have You.mp4", + "title": "Since I Don't Have You" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Animals", + "playlist_title": "Boom Boom", + "found_song": { + "artist": "Sam ft. The Womp", + "disabled": false, + "favorite": false, + "guid": "ef1c0764-90e1-3bc7-380c-2e433c8374f8", + "path": "z://CDG\\Big Hits Karaoke\\BHK036\\BHK036-10 - Sam And The Womp - Bom Bom.mp3", + "title": "Bom Bom" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Ask Me", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "058ece0d-32fe-8f66-b5a4-5183612f85c9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Theres Always Me.mp4", + "title": "There's Always Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Gerry And The Pacemakers", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Gerry & The Pacemakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac26528e-1f6c-8021-4d3f-997f109584a4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gerry & The Pacemakers - Ill Be There.mp4", + "title": "I'll Be There" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Sandie Shaw", + "playlist_title": "(There's) Always Something There To Remind Me", + "found_song": { + "artist": "Sandie Shaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c39e03d2-7e94-6768-510e-4d1c4eb5f471", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandie Shaw - (Theres) Always Something There To Remind Me.mp4", + "title": "(There's) Always Something There To Remind Me" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Chuck Berry", + "playlist_title": "Promised Land", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "b769ea63-0254-ed4c-ff8e-d349779a0370", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Chuck Berry - Memphis - SF086 - 12.mp3", + "title": "Memphis" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Hullaballoos", + "playlist_title": "I'm Gonna Love You Too", + "found_song": { + "artist": "Buddy Holly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ad14a3a-ad37-9957-29ea-f33629cc51b4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Buddy Holly - Im Gonna Love You Too.mp4", + "title": "I'm Gonna Love You Too" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Joe Tex", + "playlist_title": "Hold What You've Got", + "found_song": { + "artist": "Jet", + "disabled": false, + "favorite": false, + "guid": "096fa473-3532-e36b-e67c-12e36b7b8225", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF218\\Jet - Look What You've Done - SF218 - 10.mp3", + "title": "Look What You've Done" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Ray Charles", + "playlist_title": "Makin' Whoopee", + "found_song": { + "artist": "1920s Standards", + "disabled": false, + "favorite": false, + "guid": "14e6e6c5-0362-cc79-df68-fb17676910c5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Makin Whoopee - 1920s Standards.mp4", + "title": "Makin Whoopee" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Betty Everett", + "playlist_title": "Getting Mighty Crowded", + "found_song": { + "artist": "Betty Everett", + "disabled": false, + "favorite": false, + "guid": "8f4db65a-959b-8562-0b7e-96d2fcbd39ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be Me - Betty Everett.mp4", + "title": "Let It Be Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Solomon Burke", + "playlist_title": "The Price", + "found_song": { + "artist": "Solomon Burke", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e41dfc2f-4dc8-2db1-ece1-7f2644995f63", + "path": "z://MP4\\Sing King Karaoke\\Solomon Burke - Cry To Me.mp4", + "title": "Cry To Me" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "The Honeycombs", + "playlist_title": "I Can't Stop", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abe4d7b4-f164-6dee-6afd-057828fbe97d", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - I Cant Let Go.mp4", + "title": "I Can't Let Go" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Brook Benton", + "playlist_title": "Do It Right", + "found_song": { + "artist": "Brook Benton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b9a0af5-29f1-7c35-ac8d-b06bb90d04ad", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 819\\Brook Benton - House Is Not A Home - SFMW 819 -01.mp3", + "title": "House Is Not A Home" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Walter Jackson", + "playlist_title": "It's All Over", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3f94b39f-c046-0cc9-07fd-c93e7b6dddfd", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - I'll Try (Karaoke & Lyrics) (2).mp4", + "title": "I'll Try" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Somewhere In Your Heart", + "found_song": { + "artist": "Aztec Camera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b7bbc70-dada-7279-8cc8-f19bc9f7ad60", + "path": "z://MP4\\KaraokeOnVEVO\\Aztec Camera - Somewhere In My Heart.mp4", + "title": "Somewhere In My Heart" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Contours", + "playlist_title": "Can You Jerk Like Me", + "found_song": { + "artist": "The Contours", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bdb35271-9f6e-420b-21f4-b5c0f6ed7570", + "path": "z://MP4\\VocalStarKaraoke\\The Contours - Do You Love Me.mp4", + "title": "Do You Love Me" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Lesley Gore", + "playlist_title": "Look Of Love", + "found_song": { + "artist": "Lesley Gore", + "disabled": false, + "favorite": false, + "guid": "c641afd1-d47f-e41b-6841-1e36744e4b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Don t Own Me - Lesley Gore.mp4", + "title": "You Don t Own Me" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "The Hondells", + "playlist_title": "My Buddy Seat", + "found_song": { + "artist": "Tommy James and The Shondells", + "disabled": false, + "favorite": false, + "guid": "88cafe19-7c88-2709-10ae-d418907711b7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mony Mony - Tommy James and The Shondells.mp4", + "title": "Mony Mony" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Endless Sleep", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "4e8d796b-f560-65bb-23d0-66a0324a2acb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dinosaur - Hank Williams, Jr..mp4", + "title": "Dinosaur" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "The Shirelles", + "playlist_title": "Are You Still My Baby", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "8e3a794d-b0cb-0897-8348-88b0e4454fd8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s You - The Shirelles.mp4", + "title": "Baby It s You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Lorne Greene", + "title": "Ringo", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Julie Rogers", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Robert Goulet", + "title": "My Love, Forgive Me (Amore, Scusami)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chad & Jeremy", + "title": "Willow Weep For Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Detergents", + "title": "Leader Of The Laundromat", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Tillotson", + "title": "She Understands Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dick and DeeDee", + "title": "Thou Shalt Not Steal", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Martha & The Vandellas", + "title": "Wild One", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobbi Martin", + "title": "Don't Forget I Still Love You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Betty Everett & Jerry Butler", + "title": "Smile", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The You Know Who Group!", + "title": "Roses Are Red My Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene Chandler", + "title": "What Now", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "The Waikikis", + "title": "Hawaii Tattoo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Candy & The Kisses", + "title": "The 81", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Four Tops", + "title": "Without The One You Love (Life's Not Worth While)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Gale Garnett", + "title": "Lovin' Place", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ben E. King", + "title": "Seven Letters", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Major Lance", + "title": "Sometimes I Wonder", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Miracles", + "title": "Come On Do The Jerk", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Irma Thomas", + "title": "He's My Guy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Jo Ann & Troy", + "title": "I Found A Love Oh What A Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Harold Betters", + "title": "Do Anything You Wanna (Part I)", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jerry Vale", + "title": "Have You Looked Into Your Heart", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Henry Mancini And His Orchestra", + "title": "Dear Heart", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Dean Martin", + "title": "You'll Always Be The One I Love", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Travis Wammack", + "title": "Scratchy", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Jay & The Americans", + "title": "Let's Lock The Door (And Throw Away The Key)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Danny Boy", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Shangri-Las", + "title": "Give Him A Great Big Kiss", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Dolphins", + "title": "Hey-Da-Da-Dow", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ronny And The Daytonas", + "title": "Bucket T", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lee Morgan", + "title": "The Sidewinder, Part 1", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Willie Mitchell", + "title": "Percolatin'", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Dixie Cups", + "title": "Little Bell", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Bobby Vee", + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Shangri-Las", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "James Brown And The Famous Flames", + "title": "Have Mercy Baby", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Radiants", + "title": "Voice Your Choice", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Don Covay", + "title": "Take This Hurt Off Me", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ned Miller", + "title": "Do What You Do Do Well", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 36, + "missing_count": 40, + "needs_manual_review": 36 + } + }, + { + "playlist_title": "1963 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bobby Vinton", + "playlist_title": "There! I've Said It Again", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc6cf99f-8a91-757c-3051-14d96dc8d569", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Vinton - There! Ive Said It Again.mp4", + "title": "There! I've Said It Again" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kingsmen", + "playlist_title": "Louie Louie", + "found_song": { + "artist": "The Kingsmen", + "disabled": false, + "favorite": false, + "guid": "0b6fae33-371f-fd15-c16c-9443072c1d09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Louie, Louie - The Kingsmen.mp4", + "title": "Louie, Louie" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lenny Welch", + "playlist_title": "Since I Fell For You", + "found_song": { + "artist": "Lenny Welch", + "disabled": false, + "favorite": false, + "guid": "9c818105-5150-19c2-194f-de9a860977dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since I Fell For You - Lenny Welch.mp4", + "title": "Since I Fell For You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Forget Him", + "found_song": { + "artist": "Bobby Rydell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2048f294-2144-59bd-9227-697b995f6267", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Rydell - Forget Him.mp4", + "title": "Forget Him" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beach Boys", + "playlist_title": "Be True To Your School", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "031794d6-beef-6d7c-d200-02eb6acff053", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be True To Your School - The Beach Boys.mp4", + "title": "Be True To Your School" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jack Jones", + "playlist_title": "Wives And Lovers", + "found_song": { + "artist": "Jack Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21a76bf0-07bf-1030-45fa-9ce5587589ab", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 819\\Jack Jones - Wives And Lovers - SFMW 819 -04.mp3", + "title": "Wives And Lovers" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Roy Orbison", + "playlist_title": "Pretty Paper", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "guid": "f93ec318-6868-5348-88ac-33ad1c29ab06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Paper - Roy Orbison.mp4", + "title": "Pretty Paper" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Brenda Lee", + "playlist_title": "As Usual", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac88fde5-cd5a-8e3f-765e-ccb02ce7a403", + "path": "z://MP4\\ZoomKaraokeOfficial\\Brenda Lee - As Usual.mp4", + "title": "As Usual" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "The Trashmen", + "playlist_title": "Surfin' Bird", + "found_song": { + "artist": "The Trashmen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52f5f3de-3692-968d-145a-70aa41a18906", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Trashmen - Surfin Bird.mp4", + "title": "Surfin' Bird" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Can I Get A Witness", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "985d8086-fba4-f301-5f01-6446d498aacd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marvin Gaye - Can I Get A Witness.mp4", + "title": "Can I Get A Witness" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The Beach Boys", + "playlist_title": "In My Room", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "31b9b09b-a04c-f07f-e532-bef647bca066", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Room - The Beach Boys.mp4", + "title": "In My Room" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Rufus Thomas", + "playlist_title": "Walking The Dog", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "guid": "602409e0-e1a4-eb03-4ddb-f4a141e5bcc8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking The Dog - Rufus Thomas.mp4", + "title": "Walking The Dog" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "The Impressions", + "playlist_title": "It's All Right", + "found_song": { + "artist": "The Impressions", + "disabled": false, + "favorite": false, + "guid": "46baa50a-c6e1-5977-f71f-150e82b7b85e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All Right - The Impressions.mp4", + "title": "It s All Right" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Lesley Gore", + "playlist_title": "You Don't Own Me", + "found_song": { + "artist": "Lesley Gore", + "disabled": false, + "favorite": false, + "guid": "c641afd1-d47f-e41b-6841-1e36744e4b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Don t Own Me - Lesley Gore.mp4", + "title": "You Don t Own Me" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Marty Robbins", + "playlist_title": "Begging To You", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c56c681-27de-627e-8b46-b674cf054345", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Begging To You.mp4", + "title": "Begging To You" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Mary Wells", + "playlist_title": "What's Easy For Two Is So Hard For One", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9aaef371-7e1d-1955-8498-c5131176cc16", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Wells - Whats Easy For Two Is So Hard For One.mp4", + "title": "What's Easy For Two Is So Hard For One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The Caravelles", + "playlist_title": "You Don't Have To Be A Baby To Cry", + "found_song": { + "artist": "Caravelles", + "disabled": false, + "favorite": false, + "guid": "deaafc64-34be-1e63-9615-2c12cb836ee9", + "path": "z://MP4\\KaraokeOnVEVO\\Caravelles - You Don't Have To Be A Baby To Cry (Karaoke).mp4", + "title": "You Don't Have To Be A Baby To Cry" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Shirley Ellis", + "playlist_title": "The Nitty Gritty", + "found_song": { + "artist": "Shirley Ellis", + "disabled": false, + "favorite": false, + "guid": "4e553279-d6f7-06be-4081-7c4688044c18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Name Game - Shirley Ellis.mp4", + "title": "The Name Game" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Chubby Checker", + "playlist_title": "Loddy Lo", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "657961a3-8890-dcd6-da75-1eac2de7d439", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Limbo Rock - Chubby Checker.mp4", + "title": "Limbo Rock" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Dale & Grace", + "playlist_title": "I'm Leaving It Up To You", + "found_song": { + "artist": "Dale & Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbea1ee0-0192-179c-7b56-7a083ca3fe2f", + "path": "z://MP4\\KaraokeOnVEVO\\Dale & Grace - Im Leaving It Up To You.mp4", + "title": "I'm Leaving It Up To You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Tommy Roe", + "playlist_title": "Everybody", + "found_song": { + "artist": "Don Broco", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3601a46d-e509-595b-04f4-2f0b0da44c83", + "path": "z://MP4\\ZoomKaraokeOfficial\\Don Broco - Everybody.mp4", + "title": "Everybody" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Jan & Dean", + "playlist_title": "Drag City", + "found_song": { + "artist": "Jan & Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c49a0b5-ba52-03b9-96d9-917437303863", + "path": "z://MP4\\KaraokeOnVEVO\\Jan & Dean - Drag City.mp4", + "title": "Drag City" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Dick and DeeDee", + "playlist_title": "Turn Around", + "found_song": { + "artist": "Conor Maynard & Ne", + "disabled": false, + "favorite": false, + "guid": "edf1b1ef-66f1-d4c0-1955-ad671316e526", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Conor Maynard & Ne - Turn Around - SF320 - 16.mp3", + "title": "Turn Around" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Ray Charles", + "playlist_title": "That Lucky Old Sun", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "f2c18941-024a-9b39-ad48-3937d56fb2c5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke That Lucky Old Sun - Kenny Chesney.mp4", + "title": "That Lucky Old Sun" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Bad Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Sam Cooke", + "playlist_title": "Little Red Rooster", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "017674a8-94e4-3729-bd93-d0f84de7e412", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rolling Stones - Little Red Rooster.mp4", + "title": "Little Red Rooster" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "The Chiffons", + "playlist_title": "I Have A Boyfriend", + "found_song": { + "artist": "The Chiffons", + "disabled": false, + "favorite": false, + "guid": "f6042679-ae4a-ba5a-7ac1-bb2283c2c92b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He s So Fine - The Chiffons.mp4", + "title": "He s So Fine" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "The Tymes", + "playlist_title": "Somewhere", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "6e51c37b-88c9-3803-470e-d6c1a81193b0", + "path": "z://MP4\\KaraFun Karaoke\\Glee - Somewhere.mp4", + "title": "Somewhere" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Al Martino", + "playlist_title": "Living A Lie", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34aa0800-d293-0762-a477-fe63155e1e2c", + "path": "z://MP4\\VocalStarKaraoke\\Al Martino - Volare.mp4", + "title": "Volare" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Gene Pitney", + "playlist_title": "Twenty Four Hours From Tulsa", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9383c91-0a22-9d12-8b2a-7667c4c863b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - 24 Hours From Tulsa.mp4", + "title": "24 Hours From Tulsa" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Sunny & The Sunliners", + "playlist_title": "Rags To Riches", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "58c45065-fd73-6d36-9d2d-65ddff5e882d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rags To Riches - Tony Bennett.mp4", + "title": "Rags To Riches" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "The Dynamics", + "playlist_title": "Misery", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47958b86-4a6a-775c-ca89-299adf6a1a07", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Beatles - Misery.mp4", + "title": "Misery" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Chubby Checker", + "playlist_title": "Hooka Tooka", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "657961a3-8890-dcd6-da75-1eac2de7d439", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Limbo Rock - Chubby Checker.mp4", + "title": "Limbo Rock" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Rick Nelson", + "playlist_title": "Today's Teardrops", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "862072e1-78b2-0b0e-d045-04dbeb174e03", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Nelson - Its Late.mp4", + "title": "It's Late" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Cliff Richard", + "playlist_title": "It's All In The Game", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b9e1262-74d4-d55b-9434-9c9918c05a1e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cliff Richard - Itll Be Me.mp4", + "title": "It'll Be Me" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Rick Nelson", + "playlist_title": "For You", + "found_song": { + "artist": "Rick Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78672fc2-20f4-0f6e-ca18-6c9ace8ef844", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Nelson - Its Up To You.mp4", + "title": "It's Up To You" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Ronettes", + "playlist_title": "Baby, I Love You", + "found_song": { + "artist": "The Ramones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c750c78-ad93-5ac2-4880-84831274b4a8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Ramones - Baby I Love You.mp4", + "title": "Baby I Love You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Anyone Who Had A Heart", + "found_song": { + "artist": "Cilla Black", + "disabled": false, + "favorite": false, + "guid": "5517c5ab-a33c-94fa-f063-337b7149f51f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anyone Who Had A Heart - Cilla Black.mp4", + "title": "Anyone Who Had A Heart" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Bobby Darin", + "playlist_title": "Be Mad Little Girl", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "c218beb9-f728-fb6d-0f44-c9f6d7095427", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Good Life - Bobby Darin.mp4", + "title": "The Good Life" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Steve & Eydie", + "playlist_title": "I Can't Stop Talking About You", + "found_song": { + "artist": "Sting", + "disabled": false, + "favorite": false, + "guid": "c198c9ce-a3e1-b800-9165-a47916adc1d8", + "path": "z://MP4\\King of Karaoke\\Sting - I Can't Stop Thinking About You - King of Karaoke.mp4", + "title": "I Can't Stop Thinking About You" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Jay & The Americans", + "playlist_title": "Come Dance With Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a8c76fb-a044-d46f-2bbf-b4ba278ba7c5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Dance With Me.mp4", + "title": "Dance With Me" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Frank Ifield", + "playlist_title": "Please", + "found_song": { + "artist": "Frank Ifield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65580409-9508-6bc0-bc3e-78a707fe06dc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frank Ifield - Lovesick Blues.mp4", + "title": "Lovesick Blues" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Tony Bennett", + "playlist_title": "The Little Boy", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "a44706c3-eee5-d604-2091-834c43de0dde", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nature Boy - Tony Bennett.mp4", + "title": "Nature Boy" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Jimmy Velvet", + "playlist_title": "We Belong Together", + "found_song": { + "artist": "Ritchie Valens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb7acb9a-9ef6-2496-96f1-e4d61e689d75", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ritchie Valens - We Belong Together.mp4", + "title": "We Belong Together" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Sammy Davis Jr.", + "playlist_title": "The Shelter Of Your Arms", + "found_song": { + "artist": "Sammy Davis Jr.", + "disabled": false, + "favorite": false, + "guid": "1aa4658f-4a39-0e03-47aa-ee9e286ec265", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Birth Of The Blues - Sammy Davis Jr..mp4", + "title": "The Birth Of The Blues" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Tracey Dey", + "playlist_title": "Here Comes The Boy", + "found_song": { + "artist": "Steve Harley & Cockney Rebel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf1102a-dbe5-4ae5-bf7c-186a62480a4b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Steve Harley & Cockney Rebel - Here Comes The Sun.mp4", + "title": "Here Comes The Sun" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Bob And Earl", + "playlist_title": "Harlem Shuffle", + "found_song": { + "artist": "Bob & Earl", + "disabled": false, + "favorite": false, + "guid": "b4856c1d-87c5-8c07-2f9e-ed5ed4eb10f9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF088\\Bob & Earl - Harlem Shuffle - SF088 - 07.mp3", + "title": "Harlem Shuffle" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Barbara Lewis", + "playlist_title": "Snap Your Fingers", + "found_song": { + "artist": "Barbara Lewis", + "disabled": false, + "favorite": false, + "guid": "7f102b8f-1f2f-a27e-1749-841bae699edd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby I m Yours - Barbara Lewis.mp4", + "title": "Baby I m Yours" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Bobby Bland", + "playlist_title": "The Feeling Is Gone", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "d98d4adf-cdca-0440-6083-612b76972226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Feeling Good - Bobby Darin.mp4", + "title": "Feeling Good" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "The Cascades", + "playlist_title": "For Your Sweet Love", + "found_song": { + "artist": "The Yardbirds", + "disabled": false, + "favorite": false, + "guid": "208f6eed-eec5-643c-5c74-2f936863f143", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Love - The Yardbirds.mp4", + "title": "For Your Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "The Lettermen", + "playlist_title": "Where Or When", + "found_song": { + "artist": "Dion And The Belmonts", + "disabled": false, + "favorite": false, + "guid": "e17e2869-fbf4-f004-188c-150e1e6c81a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Or When - Dion And The Belmonts.mp4", + "title": "Where Or When" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Singing Nun (Soeur Sourire)", + "title": "Dominique", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion Di Muci", + "title": "Drip Drop", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The Murmaids", + "title": "Popsicles And Icicles", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Johnny Tillotson", + "title": "Talk Back Trembling Lips", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Joey Powers", + "title": "Midnight Mary", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martha & The Vandellas", + "title": "Quicksand", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Secrets", + "title": "The Boy Next Door", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Duprees featuring Joey Vann", + "title": "Have You Heard", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Trini Lopez", + "title": "Kansas City", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Robin Ward", + "title": "Wonderful Summer", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Lesley Gore", + "title": "She's A Fool", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Garnet Mimms & The Enchanters", + "title": "For Your Precious Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Stewball", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Garnet Mimms & The Enchanters", + "title": "Baby Don't You Weep", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Nino Tempo & April Stevens", + "title": "Whispering", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Marketts", + "title": "Out Of Limits", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Jerry Butler", + "title": "Need To Belong", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Supremes", + "title": "When The Lovelight Starts Shining Through His Eyes", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Miracles", + "title": "I Gotta Dance To Keep From Crying", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Rip Chords", + "title": "Hey Little Cobra", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Sugar Shack", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Dean And Jean", + "title": "Tra La La La Suzy", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Cookies", + "title": "Girls Grow Up Faster Than Boys", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Daisy Petal Pickin'", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Murry Kellum", + "title": "Long Tall Texan", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Chad Mitchell Trio", + "title": "The Marvelous Toy", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Little Peggy March", + "title": "The Impossible Happened", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Marvelettes", + "title": "As Long As I Know He's Mine", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Kingston Trio", + "title": "Ally Ally Oxen Free", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Henry Mancini And His Orchestra", + "title": "Charade", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Raindrops", + "title": "That Boy John", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The David Rockingham Trio", + "title": "Dawn", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ginny Arnell", + "title": "Dumb Head", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Orlons", + "title": "Bon-Doo-Wah", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Baja Marimba Band", + "title": "Comin' In The Back Door", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Tams", + "title": "What Kind Of Fool (Do You Think I Am)", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Brooks O'Dell", + "title": "Watch Your Step", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Burl Ives", + "title": "True Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Dale Ward", + "title": "Letter From Sherry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Girlfriends", + "title": "My One And Only, Jimmy Boy", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Connie Francis", + "title": "In The Summer Of His Years", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Paul Petersen", + "title": "The Cheer Leader", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Gene Thomas", + "title": "Baby's Gone", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pixies Three", + "title": "Cold Cold Winter", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Brothers Four", + "title": "Hootenanny Saturday Night", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Johnny Mathis", + "title": "I'll Search My Heart", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Paul Anka", + "title": "Did You Have A Happy Birthday?", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crescents Featuring Chiyo", + "title": "Pink Dominos", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Bobby Vee", + "title": "Never Love A Robin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 35, + "missing_count": 49, + "needs_manual_review": 35 + } + }, + { + "playlist_title": "1962 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Chubby Checker", + "playlist_title": "Limbo Rock", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "657961a3-8890-dcd6-da75-1eac2de7d439", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Limbo Rock - Chubby Checker.mp4", + "title": "Limbo Rock" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marcie Blane", + "playlist_title": "Bobby's Girl", + "found_song": { + "artist": "Marcie Blane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6044754-541e-4eba-78c2-7a1bf6a3ccee", + "path": "z://MP4\\KaraokeOnVEVO\\Marcie Blane - Bobbys Girl.mp4", + "title": "Bobby's Girl" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Steve Lawrence", + "playlist_title": "Go Away Little Girl", + "found_song": { + "artist": "Steve Lawrence", + "disabled": false, + "favorite": false, + "guid": "82e4d18f-2c68-7ac3-0a11-3410ed42c8dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Go Away Little Girl - Steve Lawrence.mp4", + "title": "Go Away Little Girl" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Ray Charles", + "playlist_title": "You Are My Sunshine", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "8650b55d-743d-d12b-2b88-0446f2856bb8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are My Sunshine - Ray Charles.mp4", + "title": "You Are My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Exciters", + "playlist_title": "Tell Him", + "found_song": { + "artist": "The Exciters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ecd6b3e-d256-bafd-3bec-004b9301413e", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Exciters - Tell Him.mp4", + "title": "Tell Him" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Cookies", + "playlist_title": "Chains", + "found_song": { + "artist": "The Cookies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c17998c4-e117-fd12-fdca-8e3c14dafb28", + "path": "z://MP4\\KaraokeOnVEVO\\The Cookies - Chains.mp4", + "title": "Chains" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mary Wells", + "playlist_title": "Two Lovers", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "guid": "e8bcba41-605b-2648-d8da-1b277d355d93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Lovers - Mary Wells.mp4", + "title": "Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bobby Vee", + "playlist_title": "The Night Has A Thousand Eyes", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "521661ca-bdc2-692c-61c5-f41c66b2c6fd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - The Night Has A Thousand Eyes.mp4", + "title": "The Night Has A Thousand Eyes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marty Robbins", + "playlist_title": "Ruby Ann", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23188b79-c8f4-57cc-b01e-afca7a1f05d9", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Ruby Ann.mp4", + "title": "Ruby Ann" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rick Nelson", + "playlist_title": "It's Up To You", + "found_song": { + "artist": "Rick Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78672fc2-20f4-0f6e-ca18-6c9ace8ef844", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Nelson - Its Up To You.mp4", + "title": "It's Up To You" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Gene Pitney", + "playlist_title": "Half Heaven - Half Heartache", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed7fe23c-a82b-e193-ea72-8bef9f6b53bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Half Heaven Half Heartache.mp4", + "title": "Half Heaven Half Heartache" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ray Stevens", + "playlist_title": "Santa Claus Is Watching You", + "found_song": { + "artist": "Ray Stevens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e8efe24-fb9e-4e06-1e78-c4f46a451fbf", + "path": "z://MP4\\KaraokeOnVEVO\\Ray Stevens - Santa Claus Is Watching You.mp4", + "title": "Santa Claus Is Watching You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Crystals", + "playlist_title": "He's A Rebel", + "found_song": { + "artist": "The Crystals", + "disabled": false, + "favorite": false, + "guid": "f70290e3-6f18-f25d-c838-a5886d49debc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He s A Rebel - The Crystals.mp4", + "title": "He s A Rebel" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Brenda Lee", + "playlist_title": "All Alone Am I", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "13f5d8e0-712e-cff1-7e17-05a95df2b373", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Alone Am I - Brenda Lee.mp4", + "title": "All Alone Am I" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Tony Bennett", + "playlist_title": "I Left My Heart In San Francisco", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "b32c5778-a063-f85d-b585-d3be7e76e3c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Left My Heart In San Francisco - Tony Bennett.mp4", + "title": "I Left My Heart In San Francisco" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Miracles", + "playlist_title": "You've Really Got A Hold On Me", + "found_song": { + "artist": "The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb557a16-ff82-f35d-85d6-96013b86c6db", + "path": "z://MP4\\KaraokeOnVEVO\\The Miracles - Youve Really Got A Hold On Me.mp4", + "title": "You've Really Got A Hold On Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Frank Ifield", + "playlist_title": "Lovesick Blues", + "found_song": { + "artist": "Frank Ifield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65580409-9508-6bc0-bc3e-78a707fe06dc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frank Ifield - Lovesick Blues.mp4", + "title": "Lovesick Blues" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Del Shannon", + "playlist_title": "Little Town Flirt", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fac3e7b6-a410-5d7e-e227-d4e4474dd4e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Del Shannon - Little Town Flirt.mp4", + "title": "Little Town Flirt" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Ned Miller", + "playlist_title": "From A Jack To A King", + "found_song": { + "artist": "Ned Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05a86699-1ff2-e25b-c06c-2f1dbe83271b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ned Miller - From A Jack To A King.mp4", + "title": "From A Jack To A King" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "914719d3-56bd-8ffe-7d81-dd95ad11bb20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD040 - Dirty Dancing\\Frankie Valli & The Four Seasons - Big Girls Don't Cry - SFG040 - 15.mp3", + "title": "Big Girls Don't Cry" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Return To Sender", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "0229daed-e1e1-ab33-6493-ae7df992bb2d", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - Return To Sender (Karaoke).mp4", + "title": "Return To Sender" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Little Eva", + "playlist_title": "Keep Your Hands Off My Baby", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "f264addc-f016-c821-676f-7e7238c3e435", + "path": "z://MP4\\TheKARAOKEChannel\\Keep Your Hands Off My Girl in the style of Good Charlotte karaoke video.mp4", + "title": "Keep Your Hands Off My Girl" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Nat King Cole", + "playlist_title": "Dear Lonely Hearts", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "ac8ab752-d5cb-b23b-a56c-548c78b8da28", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At Last - Nat King Cole.mp4", + "title": "At Last" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Dion", + "playlist_title": "Love Came To Me", + "found_song": { + "artist": "Doors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29f42038-9ca1-35a5-5c25-f18b2fa6b498", + "path": "z://CDG\\Various\\Doors - Love Me Two Times.mp3", + "title": "Love Me Two Times" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Santa Claus Is Coming To Town", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "10de1d9a-376d-ba56-c407-243c81db0ebf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Santa Claus Is Coming To Town - The Jackson 5.mp4", + "title": "Santa Claus Is Coming To Town" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Dee Dee Sharp", + "playlist_title": "Ride!", + "found_song": { + "artist": "Dee Dee Sharp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d59e1b-9e16-31c7-3405-b7ce93ea8c55", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dee Dee Sharp - Gravy.mp4", + "title": "Gravy" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "The Harry Simeone Chorale", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Bob Seger & The Silver Bullet Band", + "disabled": false, + "favorite": false, + "guid": "1a36ac06-ccf0-55b9-8aa7-6cb1a720658c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band.mp4", + "title": "The Little Drummer Boy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "The Drifters", + "playlist_title": "Up On The Roof", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b178f3f4-66c4-362e-cf1f-36d0199bab00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On The Roof - The Drifters.mp4", + "title": "Up On The Roof" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Ray Charles", + "playlist_title": "Your Cheating Heart", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "60dfc044-0123-e267-5fee-5668b1706c64", + "path": "z://CDG\\Various\\Ray Charles - Your Cheatin' Heart.mp3", + "title": "Your Cheatin' Heart" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "LaVern Baker", + "playlist_title": "See See Rider", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f1d1212-bff8-6b19-625e-b3a5a890e5a7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - See See Rider.mp4", + "title": "See See Rider" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Don't Make Me Over", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", + "path": "z://MP4\\Let's Sing Karaoke\\Warwick, Dionne - Deja Vu (Karaoke & Lyrics).mp4", + "title": "Deja Vu" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The Beach Boys", + "playlist_title": "Ten Little Indians", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "edb71f7e-3405-2dc9-75c7-bb9bb2f30f91", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Help Me, Rhonda - The Beach Boys.mp4", + "title": "Help Me, Rhonda" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Chris Montez", + "playlist_title": "Some Kinda Fun", + "found_song": { + "artist": "Chris Montez", + "disabled": false, + "favorite": false, + "guid": "a54f0960-5bd8-6c31-c0eb-af26b9002bde", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Dance - Chris Montez.mp4", + "title": "Let s Dance" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Earls", + "playlist_title": "Remember Then", + "found_song": { + "artist": "The Platters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e199dae5-af9a-e932-deb4-44f42fe73b3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Platters - Remember When.mp4", + "title": "Remember When" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Frank Sinatra & Sammy Davis Jr.", + "playlist_title": "Me And My Shadow", + "found_song": { + "artist": "Sammy Jr. Davis", + "disabled": false, + "favorite": false, + "guid": "c7401d84-bbfa-800b-6596-273d91578b45", + "path": "z://CDG\\Various\\Sammy Jr. Davis - Me And My Shadow.mp3", + "title": "Me And My Shadow" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Marvelettes", + "playlist_title": "Strange I Know", + "found_song": { + "artist": "The Rubettes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c541775-28da-9de9-3e5a-07d9e6f1f8ce", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rubettes - Baby I Know.mp4", + "title": "Baby I Know" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Vince Guaraldi Trio", + "playlist_title": "Cast Your Fate To The Wind", + "found_song": { + "artist": "Vince Guaraldi Trio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca77c904-1f05-b2c6-a092-5422b2e2d7a3", + "path": "z://MP4\\Sing King Karaoke\\Vince Guaraldi Trio - Christmas Time Is Here.mp4", + "title": "Christmas Time Is Here" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "Rudolph The Red Nosed Reindeer", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe25e93c-c0ab-d70d-83f0-cf19a6622e5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dean Martin - Rudolph The Red Nosed Reindeer.mp4", + "title": "Rudolph The Red Nosed Reindeer" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "The Emotions", + "playlist_title": "Echo", + "found_song": { + "artist": "Martha & The Muffins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d365c72-98bf-aaa5-d9bf-9dac32a653e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Martha & The Muffins - Echo Beach.mp4", + "title": "Echo Beach" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Bobby Goldsboro", + "playlist_title": "Molly", + "found_song": { + "artist": "Bobby Goldsboro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f34dfa24-e736-8fa2-52d2-113d87c8c451", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Goldsboro - Honey.mp4", + "title": "Honey" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Rick Nelson", + "playlist_title": "I Need You", + "found_song": { + "artist": "Rick Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78672fc2-20f4-0f6e-ca18-6c9ace8ef844", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Nelson - Its Up To You.mp4", + "title": "It's Up To You" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Trouble In Mind", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "b41c6894-4d2f-ecf0-14b0-5816f2b659e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be - Aretha Franklin.mp4", + "title": "Let It Be" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Crystals", + "playlist_title": "He's Sure The Boy I Love", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "b0140704-7e0b-ff15-c268-9aab8447e038", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He s Sure The Boy I Love - Bette Midler.mp4", + "title": "He s Sure The Boy I Love" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "The Cleftones", + "playlist_title": "Lover Come Back To Me", + "found_song": { + "artist": "The Overtones", + "disabled": false, + "favorite": false, + "guid": "c80327fd-8c55-d29d-c247-b0a0f91f4d8a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Back My Love - The Overtones.mp4", + "title": "Come Back My Love" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Paul and Paula", + "playlist_title": "Hey Paula", + "found_song": { + "artist": "Paul & Paula", + "disabled": false, + "favorite": false, + "guid": "020eb8de-57b3-6b6f-ef14-2869d141ab38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hey Paula - Paul & Paula.mp4", + "title": "Hey Paula" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Tornadoes", + "title": "Telstar", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Esther Phillips Little Esther", + "title": "Release Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bob B. Soxx And The Blue Jeans", + "title": "Zip-A-Dee Doo-Dah", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Brook Benton", + "title": "Hotel Happiness", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Lou Monte", + "title": "Pepino The Italian Mouse", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "The Tijuana Brass", + "title": "The Lonely Bull (El Solo Torro)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Orlons", + "title": "Don't Hang Up", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Paul Petersen", + "title": "My Dad", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Les Cooper and the Soul Rockers", + "title": "Wiggle Wobble", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Johnny Crawford", + "title": "Rumors", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Shirelles", + "title": "Everybody Loves A Lover", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "title": "Monsters' Holiday", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Duane Eddy and the Rebelettes", + "title": "(Dance With The) Guitar Man", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jerry Wallace", + "title": "Shutters And Boards", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Routers", + "title": "Let's Go (pony)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Mel Torme", + "title": "Comin' Home Baby", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Stan Getz/Charlie Byrd", + "title": "Desafinado", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Dickey Lee", + "title": "I Saw Linda Yesterday", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Mark Valentino", + "title": "The Push And Kick", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobby Vinton", + "title": "Let's Kiss And Make Up", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene McDaniels", + "title": "Spanish Lace", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Bobby Vinton", + "title": "Trouble Is My Middle Name", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Connie Francis", + "title": "I'm Gonna' Be Warm This Winter", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Timi Yuro", + "title": "The Love Of A Boy", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Gene Chandler", + "title": "You Threw A Lucky Punch", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Excellents", + "title": "Coney Island Baby", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gabriel And The Angels", + "title": "That's Life (That's Tough)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Johnny Thunder", + "title": "Loop De Loop", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jimmie Rodgers", + "title": "Rainbow At Midnight", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ben Colder", + "title": "Don't Go Near The Eskimos", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Kitty Kallen", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "title": "The Ballad Of Jed Clampett", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Brian Hyland", + "title": "I May Not Live To See Tomorrow", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Contours", + "title": "Shake Sherry", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Lonnie Russ", + "title": "My Wife Can't Cook", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Barbara Lynn", + "title": "You're Gonna Need Me", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jimmy Dean", + "title": "Gonna Raise A Rukus Tonight", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Pastel Six", + "title": "The Cinnamon Cinder (It's A Very Nice Dance)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Sandy Stewart", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Rebels", + "title": "Wild Weekend", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Floyd Cramer", + "title": "Java", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Toy Dolls", + "title": "Little Tin Soldier", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Marion Worth", + "title": "Shake Me I Rattle (Squeeze Me I Cry)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Joe Harnell And His Orchestra", + "title": "Fly Me To The Moon - Bossa Nova", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Ventures", + "title": "The 2,000 Pound Bee (Part 2)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Dean Martin & Sammy Davis Jr.", + "title": "Sam's Song", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Dells", + "title": "The (Bossa Nova) Bird", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Mike Clifford", + "title": "What To Do With Laurie", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Mahalia Jackson", + "title": "Silent Night, Holy Night", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Don Covay", + "title": "The Popeye Waddle", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 27, + "missing_count": 50, + "needs_manual_review": 27 + } + }, + { + "playlist_title": "1961 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Tokens", + "playlist_title": "The Lion Sleeps Tonight", + "found_song": { + "artist": "The Tokens", + "disabled": false, + "favorite": false, + "guid": "cc03a869-4f7e-5abf-d0f2-bc70338d6354", + "path": "z://MP4\\Stingray Karaoke\\The Lion Sleeps Tonight The Tokens Karaoke with Lyrics.mp4", + "title": "The Lion Sleeps Tonight" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Vee", + "playlist_title": "Run To Him", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "guid": "e3a468a8-e579-aa6d-f499-a638b46e9012", + "path": "z://MP4\\TheKARAOKEChannel\\Run To Him in the style of Bobby Vee.mp4", + "title": "Run To Him" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chubby Checker", + "playlist_title": "The Twist", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52c72379-1c4d-fb1b-a1f9-b1ad9440b0ef", + "path": "z://MP4\\KaraokeOnVEVO\\Chubby Checker - The Twist.mp4", + "title": "The Twist" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Leroy Van Dyke", + "playlist_title": "Walk On By", + "found_song": { + "artist": "Leroy Van Dyke", + "disabled": false, + "favorite": false, + "guid": "894f761a-62b4-de27-4b19-46cc1cff4510", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On By - Leroy Van Dyke.mp4", + "title": "Walk On By" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Marvelettes", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "The Marvelettes", + "disabled": false, + "favorite": false, + "guid": "2776a90a-d6e3-40c3-9fa4-6002e9a80329", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Mr. Postman - The Marvelettes.mp4", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Happy Birthday, Sweet Sixteen", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "05f069f1-a2fc-aaf1-8a41-57de3d6db3ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Birthday, Sweet Sixteen - Neil Sedaka.mp4", + "title": "Happy Birthday, Sweet Sixteen" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jimmy Dean", + "playlist_title": "Big Bad John", + "found_song": { + "artist": "Jimmy Dean", + "disabled": false, + "favorite": false, + "guid": "7decab9d-aa5c-5971-043d-b234bb14f92e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Big Bad John - Jimmy Dean.mp4", + "title": "Big Bad John" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chubby Checker", + "playlist_title": "Let's Twist Again", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "61f63cee-edfb-99bb-5ea7-de27c6933686", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Twist Again - Chubby Checker.mp4", + "title": "Let s Twist Again" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jimmy Elledge", + "playlist_title": "Funny How Time Slips Away", + "found_song": { + "artist": "Jimmy Elledge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "465a791f-cfef-740b-6f13-05879cb92d06", + "path": "z://MP4\\KaraokeOnVEVO\\Jimmy Elledge - Funny How Time Slips Away.mp4", + "title": "Funny How Time Slips Away" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fats Domino", + "playlist_title": "Jambalaya (On The Bayou)", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "d2a40204-8be6-b983-f9cd-cb7cf7b74014", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jambalaya (On The Bayou) - Fats Domino.mp4", + "title": "Jambalaya (On The Bayou)" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Gene Pitney", + "playlist_title": "Town Without Pity", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01295299-513c-1c51-7ec4-efae7d1c1356", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Town Without Pity.mp4", + "title": "Town Without Pity" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Highwaymen", + "playlist_title": "Cotton Fields", + "found_song": { + "artist": "The Highwaymen", + "disabled": false, + "favorite": false, + "guid": "348861de-05d5-679e-3719-c17004ff3e7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Highwaymen - Cotton Fields (Karaoke).mp4", + "title": "Cotton Fields" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dion", + "playlist_title": "The Wanderer", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "232ce56c-596e-99ea-9f01-26c9017b819e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wanderer - Dion.mp4", + "title": "The Wanderer" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Del Shannon", + "playlist_title": "Hey! Little Girl", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "guid": "e0029bec-1e5d-5a4b-702c-316afb9d0c06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF069\\Del Shannon - Hey Little Girl - SF069 - 10.mp3", + "title": "Hey Little Girl" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Shirelles", + "playlist_title": "Baby It's You", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "8e3a794d-b0cb-0897-8348-88b0e4454fd8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s You - The Shirelles.mp4", + "title": "Baby It s You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Burl Ives", + "playlist_title": "A Little Bitty Tear", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "1cb277fc-d28e-b031-6077-4ad0fe470a6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Bitty Tear - Burl Ives.mp4", + "title": "A Little Bitty Tear" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dion", + "playlist_title": "Runaround Sue", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "ff4a2c79-c0ec-bb68-bc59-35343cebb706", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Runaround Sue - Dion.mp4", + "title": "Runaround Sue" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Patsy Cline", + "playlist_title": "Crazy", + "found_song": { + "artist": "Patsy Cline", + "disabled": false, + "favorite": false, + "guid": "d1ed16cb-a6bc-cc77-8c0b-8f3d61408a90", + "path": "z://MP4\\Sing King Karaoke\\Patsy Cline - Crazy (Karaoke Version).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Bobby Vee", + "playlist_title": "Walkin' With My Angel", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2faf26df-6ba2-a09a-a8c6-c2c87708eaf8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Walkin With My Angel.mp4", + "title": "Walkin' With My Angel" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Dovells", + "playlist_title": "Bristol Stomp", + "found_song": { + "artist": "The Dovells", + "disabled": false, + "favorite": false, + "guid": "182de878-47e9-c6fc-02ed-95a216f302f9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bristol Stomp - The Dovells.mp4", + "title": "Bristol Stomp" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Charles Brown", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Charles Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4739858d-abd9-2b2d-ac02-5fa39f906794", + "path": "z://MP4\\KaraokeOnVEVO\\Charles Brown - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "James Darren", + "playlist_title": "Goodbye Cruel World", + "found_song": { + "artist": "James Morrison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "98a1f429-9bc7-9277-4b41-7d425e3c423b", + "path": "z://MP4\\ZoomKaraokeOfficial\\James Morrison - Wonderful World.mp4", + "title": "Wonderful World" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Joey Dee & the Starliters", + "playlist_title": "Peppermint Twist - Part I", + "found_song": { + "artist": "Joey Dee & the Starliters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c6e91f-ce32-743d-7bc0-f7252af8f32d", + "path": "z://MP4\\KaraokeOnVEVO\\Joey Dee & the Starliters - Peppermint Twist Part I.mp4", + "title": "Peppermint Twist - Part I" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Can't Help Falling In Love", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "1e28dda0-6589-67eb-9f36-9bd216c2d429", + "path": "z://MP4\\KaraFun Karaoke\\Can't Help Falling In Love - Elvis Presley Karaoke Version KaraFun.mp4", + "title": "Can't Help Falling In Love" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Linda Scott", + "playlist_title": "I Don't Know Why", + "found_song": { + "artist": "Linda Ronstadt, Aaron Neville", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "790a6269-50da-c604-0caf-6e58a1a0bcec", + "path": "z://MP4\\Sing King Karaoke\\Linda Ronstadt, Aaron Neville - Dont Know Much.mp4", + "title": "Don't Know Much" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Lettermen", + "playlist_title": "When I Fall In Love", + "found_song": { + "artist": "Natalie Cole", + "disabled": false, + "favorite": false, + "guid": "587c635e-586b-1849-b8b6-df8f5c52b428", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I Fall In Love - Natalie Cole.mp4", + "title": "When I Fall In Love" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Ray Charles and his Orchestra", + "playlist_title": "Unchain My Heart", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "d93973e9-133a-542d-fabe-df8fde7eeded", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Unchain My Heart - Ray Charles.mp4", + "title": "Unchain My Heart" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Jerry Butler", + "playlist_title": "Moon River", + "found_song": { + "artist": "Audrey Hepburn", + "disabled": false, + "favorite": false, + "guid": "0ca04494-4ddd-4fab-0940-8906cee1faca", + "path": "z://MP4\\KaraFun Karaoke\\Moon River - Audrey Hepburn Karaoke Version KaraFun.mp4", + "title": "Moon River" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "The Angels", + "playlist_title": "'Til", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "60caacb5-3d22-4a21-1007-38db5daf17d4", + "path": "z://MP4\\KaraFun Karaoke\\Misled - Kool and the Gang Karaoke Version KaraFun.mp4", + "title": "Misled" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Rock-A-Hula Baby", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b026d956-b79f-79ae-2998-b50b1c143d84", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Rock-A-Hula Baby.mp4", + "title": "Rock-A-Hula Baby" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Bobby Rydell/Chubby Checker", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Brenda Lee", + "playlist_title": "Fool #1", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05461848-e1ce-5e6c-bb90-3bd1548da3d1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Brenda Lee - Emotions.mp4", + "title": "Emotions" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "The Harry Simeone Chorale", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Bob Seger & The Silver Bullet Band", + "disabled": false, + "favorite": false, + "guid": "1a36ac06-ccf0-55b9-8aa7-6cb1a720658c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band.mp4", + "title": "The Little Drummer Boy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "James Ray", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Pat Boone", + "playlist_title": "Johnny Will", + "found_song": { + "artist": "Pat Boone", + "disabled": false, + "favorite": false, + "guid": "e86983aa-25d8-6c22-bc68-d4146ae7ef16", + "path": "z://MP4\\KaraokeOnVEVO\\Pat Boone - Moody River (Karaoke).mp4", + "title": "Moody River" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "Rudolph The Red Nosed Reindeer", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe25e93c-c0ab-d70d-83f0-cf19a6622e5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dean Martin - Rudolph The Red Nosed Reindeer.mp4", + "title": "Rudolph The Red Nosed Reindeer" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Dion", + "playlist_title": "The Majestic", + "found_song": { + "artist": "Dion, Celine", + "disabled": false, + "favorite": false, + "guid": "5dd91cb7-4584-47e4-0de6-978e07d71996", + "path": "z://CDG\\Sunfly Collection\\Sunfly 90s\\SF90-04\\SFD9014-15 - Dion, Celine - Think Twice.mp3", + "title": "Think Twice" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Dinah Washington", + "playlist_title": "September In The Rain", + "found_song": { + "artist": "Glen Washington", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41af3f49-1c36-e1d7-c5eb-93abd916c4fb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Glen Washington - Strangers In The Night.mp4", + "title": "Strangers In The Night" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Bobby Bland", + "playlist_title": "Turn On Your Love Light", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15768666-a5e8-6a5b-afb1-471bdc7b35e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Turn On Your Love Light (Live).mp4", + "title": "Turn On Your Love Light (Live)" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Pocketful Of Miracles", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "d65b04f2-4a45-4d3b-12e3-2526c4632b67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Of Me - Frank Sinatra.mp4", + "title": "All Of Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Roger Williams", + "playlist_title": "Maria", + "found_song": { + "artist": "Robbie Williams", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "8842d62e-c9b7-6660-72e4-436f9b1302d6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF223\\Robbie Williams - Radio - SF223 - 02.mp3", + "title": "Radio" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Linda Scott", + "playlist_title": "It's All Because", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636124b2-b054-a436-e941-ac48b66b9365", + "path": "z://MP4\\KaraokeOnVEVO\\Linda Ronstadt - Its So Easy.mp4", + "title": "It's So Easy" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Drifters", + "playlist_title": "Room Full Of Tears", + "found_song": { + "artist": "The McCarters", + "disabled": false, + "favorite": false, + "guid": "ce38bc84-8c51-95e7-792e-e74ae45dbf6a", + "path": "z://MP4\\KaraokeOnVEVO\\The McCarters - Shot Full Of Love (Karaoke).mp4", + "title": "Shot Full Of Love" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Dreamy Eyes", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9b80601-e32c-73a4-6bdb-eefdadbebe48", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Tillotson - Why Do I Love You So.mp4", + "title": "Why Do I Love You So" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Marcels", + "playlist_title": "Heartaches", + "found_song": { + "artist": "Patsy Cline", + "disabled": false, + "favorite": false, + "guid": "f79c2f9c-380a-83a3-7a60-5c4b42ad94bc", + "path": "z://MP4\\KaraokeOnVEVO\\Patsy Cline - Heartaches (Karaoke).mp4", + "title": "Heartaches" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Gene McDaniels", + "playlist_title": "Tower Of Strength", + "found_song": { + "artist": "Frankie Vaughn", + "disabled": false, + "favorite": false, + "guid": "5f4742d6-a731-6796-170f-882e54b2810d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF074\\Frankie Vaughn - Tower Of Strength - SF074 - 13.mp3", + "title": "Tower Of Strength" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Chubby Checker", + "playlist_title": "Twistin' U.S.A.", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "81335909-fa7c-c3e3-fd02-80b1c4165c60", + "path": "z://MP4\\Let's Sing Karaoke\\Checker, Chubby - Twist (Karaoke & Lyrics).mp4", + "title": "Twist" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Bobby Darin", + "playlist_title": "Multiplication", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "de39442d-fbcc-ff65-b2e9-40c563734e06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF074\\Bobby Darin - Multiplacation - SF074 - 09.mp3", + "title": "Multiplacation" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Anthony Newley", + "playlist_title": "Pop Goes The Weasel", + "found_song": { + "artist": "Anthony Newley", + "disabled": false, + "favorite": false, + "guid": "7c6ad896-88cf-4e66-05c3-9e46145570e5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talk To The Animals - Anthony Newley.mp4", + "title": "Talk To The Animals" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Marty Robbins", + "playlist_title": "I Told The Brook", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "guid": "f0be0733-8885-1bd7-0dcd-1fd379d16aff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Singing The Blues - Marty Robbins.mp4", + "title": "Singing The Blues" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Johnny Preston", + "playlist_title": "Free Me", + "found_song": { + "artist": "Johnny Preston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1fef77f-554f-9ec6-81bc-563cd4ed6a29", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Preston - Cradle Of Love.mp4", + "title": "Cradle Of Love" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "The Belmonts", + "playlist_title": "I Need Some One", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "5bb180b7-dd1d-56b8-af70-b3b906a95bf2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If I Needed Someone - The Beatles.mp4", + "title": "If I Needed Someone" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "Sandy Nelson", + "title": "Let There Be Drums", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Henry Mancini And His Orchestra", + "title": "Moon River", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Connie Francis", + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ferrante & Teicher", + "title": "Tonight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Impressions", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Brook Benton", + "title": "Revenge", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Crystals", + "title": "There's No Other (Like My Baby)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kenny Dino", + "title": "Your Ma Said You Cried In Your Sleep Last Night", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Barbara George", + "title": "I Know (You Don't Love Me No More)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Solomon Burke", + "title": "Just Out Of Reach (Of My Two Open Arms)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Chantels", + "title": "Well, I Told You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Phil McLean", + "title": "Small Sad Sam", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The G-Clefs", + "title": "I Understand (Just How You Feel)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Highwaymen", + "title": "The Gypsy Rover", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Connie Francis", + "title": "Baby's First Christmas", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ike & Tina Turner", + "title": "Poor Fool", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Vic Dana", + "title": "Little Altar Boy", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gary U.S. Bonds", + "title": "Dear Lady Twist", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Sims Twins", + "title": "Soothe Me", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "John D. Loudermilk", + "title": "Language Of Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Sue Thompson", + "title": "Norman", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Glen Campbell", + "title": "Turn Around, Look At Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Bobby Darin", + "title": "Irresistible You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Bill Black's Combo", + "title": "Twist-Her", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Lee Dorsey", + "title": "Do-Re-Mi", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Si Zentner And His Orchestra", + "title": "Up A Lazy River", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Frank Slay And His Orchestra", + "title": "Flying Circle", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Gladys Knight And The Pips", + "title": "Letter Full Of Tears", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jimmy McCracklin", + "title": "Just Got To Know", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Ral Donner", + "title": "She's Everything (I Wanted You To Be)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Showmen", + "title": "It Will Stand", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Dave Brubeck Quartet", + "title": "Unsquare Dance", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "David Seville And The Chipmunks", + "title": "Alvin's Harmonica", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Dick Dale and The Del-Tones", + "title": "Let's Go Trippin'", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Danny Peppermint and the Jumping Jacks", + "title": "The Peppermint Twist", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Ray Peterson", + "title": "I Could Have Loved You So Well", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "James Brown And The Famous Flames", + "title": "Lost Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Patti Page", + "title": "Go On Home", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ace Cannon", + "title": "Tuff", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sleepy King", + "title": "Pushin' Your Luck", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "title": "Smoky Places", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Troy Shondell", + "title": "Tears From An Angel", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dickie Goodman", + "title": "Santa & The Touchables", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Jimmie Beaumont", + "title": "Ev'rybody's Cryin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 32, + "missing_count": 44, + "needs_manual_review": 32 + } + }, + { + "playlist_title": "1960 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 6, + "playlist_artist": "Johnny Horton", + "playlist_title": "North To Alaska", + "found_song": { + "artist": "Johnny Horton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14973725-80aa-7bf8-af95-e9ca550ed150", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Horton - North To Alaska.mp4", + "title": "North To Alaska" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnny Burnette", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Johnny Burnette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42194ae-3a80-9aa8-f21a-d9f23327352c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Burnette - Youre Sixteen.mp4", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bobby Vee", + "playlist_title": "Rubber Ball", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b97bc15a-9ed8-26d4-53da-b49382005bc9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Rubber Ball.mp4", + "title": "Rubber Ball" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Poetry In Motion", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "guid": "41e702d7-2196-9d23-ab98-b72e0548d84a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Poetry In Motion - Johnny Tillotson.mp4", + "title": "Poetry In Motion" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Shirelles", + "playlist_title": "Will You Love Me Tomorrow", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "67016874-ff96-ff33-28c6-1038cfa94122", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Love Me Tomorrow - The Shirelles.mp4", + "title": "Will You Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Jim Reeves", + "playlist_title": "Am I Losing You", + "found_song": { + "artist": "Jim Reeves", + "disabled": false, + "favorite": false, + "guid": "511753e9-6ce3-6182-0d59-23daba8e2684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Am I Losing You - Jim Reeves.mp4", + "title": "Am I Losing You" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Roy Orbison", + "playlist_title": "I'm Hurtin'", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d29afa3-b600-3393-3ae8-0a5668552a16", + "path": "z://MP4\\ZoomKaraokeOfficial\\Roy Orbison - Im Hurtin.mp4", + "title": "I'm Hurtin'" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Calendar Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Skeeter Davis", + "playlist_title": "My Last Date (With You)", + "found_song": { + "artist": "Skeeter Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2264ce7c-78ec-4b14-2a93-c0f5975aad94", + "path": "z://MP4\\KaraokeOnVEVO\\Skeeter Davis - My Last Date (With You.mp4", + "title": "My Last Date (With You)" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Perry Como", + "playlist_title": "Make Someone Happy", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "10bac1c5-caee-8793-28ea-e9e17a360892", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make Someone Happy - Perry Como.mp4", + "title": "Make Someone Happy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Elvis Presley With The Jordanaires", + "playlist_title": "Are You Lonesome To-night?", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6efa8420-9957-86f1-7c38-9b409df0625b", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Are You Lonesome Tonight.mp4", + "title": "Are You Lonesome Tonight" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Kathy Young with The Innocents", + "playlist_title": "A Thousand Stars", + "found_song": { + "artist": "Kathy Young With The Innocents", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92a17c52-3a99-e41b-3592-9f49291218ef", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Kathy Young With The Innocents - Thousand Stars - SFMW 876 -10.mp3", + "title": "Thousand Stars" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Connie Francis", + "playlist_title": "Many Tears Ago", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "guid": "88947e8e-5a01-14a8-76aa-ad5f45c7176b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happiness - Connie Francis.mp4", + "title": "My Happiness" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Ray Peterson", + "playlist_title": "Corinna, Corinna", + "found_song": { + "artist": "Ray Peterson", + "disabled": false, + "favorite": false, + "guid": "4ae3a3e7-bdc9-067c-df9e-16b8213600f3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Corrina, Corrina - Ray Peterson.mp4", + "title": "Corrina, Corrina" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Rosie And The Originals", + "playlist_title": "Angel Baby", + "found_song": { + "artist": "Rosie ft. The Originals", + "disabled": false, + "favorite": false, + "guid": "c9236cc2-6e87-6ee9-9256-59f3c86bf3f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angel Baby - Rosie & The Originals.mp4", + "title": "Angel Baby" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "The Ventures", + "playlist_title": "Perfidia", + "found_song": { + "artist": "The Overtones", + "disabled": false, + "favorite": false, + "guid": "5f45d073-1b88-fe31-93d0-04df548a4ddc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect - The Overtones.mp4", + "title": "Perfect" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "U.S. Bonds", + "playlist_title": "New Orleans", + "found_song": { + "artist": "Blues Brothers 2000", + "disabled": false, + "favorite": false, + "guid": "0c846857-97d0-5c37-dc16-ee3e8c6bcc79", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke New Orleans - Blues Brothers 2000.mp4", + "title": "New Orleans" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "Rudolph The Red Nosed Reindeer", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe25e93c-c0ab-d70d-83f0-cf19a6622e5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dean Martin - Rudolph The Red Nosed Reindeer.mp4", + "title": "Rudolph The Red Nosed Reindeer" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Fats Domino", + "playlist_title": "My Girl Josephine", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "ff1b3162-9839-82cf-2a7d-873e2d56d9da", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hello Josephine - Fats Domino.mp4", + "title": "Hello Josephine" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Sway", + "found_song": { + "artist": "Bobbie Rydell", + "disabled": false, + "favorite": false, + "guid": "fba1bae1-96ad-1eb5-a01f-4013e0a01489", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF137\\Bobbie Rydell - Sway - SF137 - 07.mp3", + "title": "Sway" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "The Harry Simeone Chorale", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Bob Seger & The Silver Bullet Band", + "disabled": false, + "favorite": false, + "guid": "1a36ac06-ccf0-55b9-8aa7-6cb1a720658c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band.mp4", + "title": "The Little Drummer Boy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Alone At Last", + "found_song": { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "guid": "9eb595a5-605c-088c-cd8a-da17cff3a4b6", + "path": "z://MP4\\Stingray Karaoke\\Lonely Teardrops Jackie Wilson Karaoke with Lyrics.mp4", + "title": "Lonely Teardrops" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Maurice Williams & The Zodiacs", + "playlist_title": "Stay", + "found_song": { + "artist": "Maurice Williams", + "disabled": false, + "favorite": false, + "guid": "07c543d9-8ea0-a03f-50b9-188a9133a988", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stay - Maurice Williams.mp4", + "title": "Stay" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Ray Charles", + "playlist_title": "Ruby", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "dc820300-9096-53af-e63a-f5b997536362", + "path": "z://CDG\\Various\\Ray Charles - Busted.mp3", + "title": "Busted" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Sam Cooke", + "playlist_title": "Sad Mood", + "found_song": { + "artist": "Sam Cooke", + "disabled": false, + "favorite": false, + "guid": "2f6e9f0f-6354-dc9e-23fc-74f4b143e7e2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Send Me - Sam Cooke.mp4", + "title": "You Send Me" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Ferlin Husky", + "playlist_title": "Wings Of A Dove", + "found_song": { + "artist": "Madness", + "disabled": false, + "favorite": false, + "guid": "b2dda939-5a67-2827-bf59-9ffe15890fe2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF133\\Madness - Wings Of A Dove - SF133 - 07.mp3", + "title": "Wings Of A Dove" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Damita Jo", + "playlist_title": "I'll Save The Last Dance For You", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "0920ff49-12b3-a9d0-e996-c1ea4eb8ef63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - Dolly Parton.mp4", + "title": "Save The Last Dance For Me" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Marty Robbins", + "playlist_title": "Ballad Of The Alamo", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "guid": "99e8b764-1f12-c16b-d235-59d904574ac4", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - I Walk Alone (Karaoke).mp4", + "title": "I Walk Alone" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Chubby Checker", + "playlist_title": "The Hucklebuck", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "c37e54d2-b0a6-c92b-c27e-5d76b400f0bf", + "path": "z://MP4\\TheKARAOKEChannel\\The Limbo Rock in the style of Chubby Checker karaoke video with lyrics.mp4", + "title": "The Limbo Rock" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Drifters", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "266cd681-d60a-3d21-3de0-70ead8fc34be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - The Drifters.mp4", + "title": "Save The Last Dance For Me" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Ol' Mac Donald", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "ad4b18d0-15de-1dbc-1cd2-eebddcfcc1c1", + "path": "z://CDG\\Various\\Frank Sinatra - La Woman.mp3", + "title": "La Woman" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Everly Brothers", + "playlist_title": "Like Strangers", + "found_song": { + "artist": "The Everly Brothers", + "disabled": false, + "favorite": false, + "guid": "1fcb11f8-e4c6-9cde-4563-9796be388220", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Be Me - The Everly Brothers.mp4", + "title": "Let It Be Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Chimes", + "playlist_title": "Once In Awhile", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "2bbc20c0-1070-733d-3c57-1a574c26bd39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Once in a While - Dean Martin.mp4", + "title": "Once in a While" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Frankie Avalon", + "playlist_title": "A Perfect Love", + "found_song": { + "artist": "Frankie Avalon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0a74a55-c2a4-0c69-d85b-421eb8d03970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Avalon - Venus.mp4", + "title": "Venus" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Bing Crosby", + "playlist_title": "Silent Night", + "found_song": { + "artist": "Enya", + "disabled": false, + "favorite": false, + "guid": "c89cbfdf-4135-90f0-76e0-4319c910ac34", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Silent Night - Enya.mp4", + "title": "Silent Night" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "LaVern Baker", + "playlist_title": "Bumble Bee", + "found_song": { + "artist": "The Searchers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f300d53c-e9b8-ad35-a25d-773de7d8d578", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Searchers - Bumble Bee.mp4", + "title": "Bumble Bee" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "The Shells", + "playlist_title": "Baby Oh Baby", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "8e3a794d-b0cb-0897-8348-88b0e4454fd8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s You - The Shirelles.mp4", + "title": "Baby It s You" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Ricky Nelson", + "playlist_title": "You Are The Only One", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "guid": "fff6698d-288c-031d-ef27-b4533969b917", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Poor Little Fool - Ricky Nelson.mp4", + "title": "Poor Little Fool" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Am I The Man", + "found_song": { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50ef36fa-ff8b-5afe-2d3c-63586bba02ac", + "path": "z://MP4\\VocalStarKaraoke\\Jackie Wilson - Reet Petite.mp4", + "title": "Reet Petite" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "The Flamingos", + "playlist_title": "Your Other Love", + "found_song": { + "artist": "Florence & The Machine", + "disabled": false, + "favorite": false, + "guid": "e8b2f3a1-4970-0b5b-918d-f22ce9e00b4f", + "path": "z://MP4\\singsongsmusic\\You ve Got the Love - Karaoke HD (In the style of Florence & The Machine).mp4", + "title": "You ve Got the Love" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Frankie Avalon", + "playlist_title": "The Puppet Song", + "found_song": { + "artist": "Frankie Avalon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0a74a55-c2a4-0c69-d85b-421eb8d03970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Avalon - Venus.mp4", + "title": "Venus" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "The Melodeers", + "playlist_title": "Rudolph The Red Nosed Reindeer", + "found_song": { + "artist": "The Crystals", + "disabled": false, + "favorite": false, + "guid": "8114b6b7-a6d0-8a63-4e19-d4f125997dc9", + "path": "z://MP4\\Sing King Karaoke\\The Crystals - Rudolph The Red-Nosed Reindeer (Karaoke Version).mp4", + "title": "Rudolph The Red-Nosed Reindeer" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "The Ramblers", + "playlist_title": "Rambling", + "found_song": { + "artist": "Bob Marley & The Wailers", + "disabled": false, + "favorite": false, + "guid": "7e02d70c-99a7-62ce-9ff8-3ccfef0d3ec1", + "path": "z://MP4\\singsongsmusic\\Jammin - Karaoke HD (In the style of Bob Marley & The Wailers).mp4", + "title": "Jammin" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Blue Diamonds", + "playlist_title": "Ramona", + "found_song": { + "artist": "Blue Diamonds", + "disabled": false, + "favorite": false, + "guid": "acff2317-8b62-91bb-7cf2-373efd6cc0dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ramona - Blue Diamonds.mp4", + "title": "Ramona" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Andy Williams", + "playlist_title": "You Don't Want My Love", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70f22c08-8998-af08-00d1-7ec1de330b32", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Home Lovin Man.mp4", + "title": "Home Lovin' Man" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Joni James", + "playlist_title": "My Last Date (With You)", + "found_song": { + "artist": "Skeeter Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2264ce7c-78ec-4b14-2a93-c0f5975aad94", + "path": "z://MP4\\KaraokeOnVEVO\\Skeeter Davis - My Last Date (With You.mp4", + "title": "My Last Date (With You)" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Marv Johnson", + "playlist_title": "Happy Days", + "found_song": { + "artist": "Pratt & McClain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43769de3-1e9e-6390-615d-b4ac11a37524", + "path": "z://MP4\\KaraokeOnVEVO\\KaraokeOnVEVO - Pratt & McClain - Happy Days (Karaoke).mp4", + "title": "Happy Days" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Ike & Tina Turner", + "playlist_title": "I Idolize You", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6a2db83-b700-d08d-936b-284c3b1217b9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tina Turner - I Dont Wanna Lose You.mp4", + "title": "I Don't Wanna Lose You" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Brook Benton", + "playlist_title": "Someday You'll Want Me To Want You", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "091bdc3c-640d-07ef-f47b-78e0e1e72a73", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Someday You ll Want Me To Want You - Dean Martin.mp4", + "title": "Someday You ll Want Me To Want You" + }, + "similarity": 0.82, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bobby Darin", + "playlist_title": "Child Of God", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "d98d4adf-cdca-0440-6083-612b76972226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Feeling Good - Bobby Darin.mp4", + "title": "Feeling Good" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Dinah Washington", + "playlist_title": "We Have Love", + "found_song": { + "artist": "Dinah Washington", + "disabled": false, + "favorite": false, + "guid": "2687f5a1-1196-034a-c8a1-3d9ec80bc696", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke But Not For Me - Dinah Washington.mp4", + "title": "But Not For Me" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "Jerry Wallace", + "playlist_title": "There She Goes", + "found_song": { + "artist": "The La's", + "disabled": false, + "favorite": false, + "guid": "21982fcb-e8da-5245-972f-19b3c2adf85c", + "path": "z://MP4\\Sing King Karaoke\\The La's - There She Goes (Karaoke Version).mp4", + "title": "There She Goes" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Bert Kaempfert And His Orchestra", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Floyd Cramer", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Ferrante & Teicher", + "title": "Exodus", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lolita", + "title": "Sailor (Your Home Is The Sea)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jerry Butler", + "title": "He Will Break Your Heart", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Dion", + "title": "Lonely Teenager", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Louis Prima", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Bill Black's Combo", + "title": "Blue Tango", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Anita Bryant", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Brook Benton", + "title": "Fools Rush In (Where Angels Fear To Tread)", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Donnie Brooks", + "title": "Doll House", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Hank Ballard And The Midnighters", + "title": "Let's Go, Let's Go, Let's Go", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Elvis Presley With The Jordanaires", + "title": "I Gotta Know", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lawrence Welk And His Orchestra", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lawrence Welk And His Orchestra", + "title": "Calcutta", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bing Crosby", + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Innocents", + "title": "Gee Whiz", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "James Booker", + "title": "Gonzo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "title": "Shop Around", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Drifters", + "title": "I Count The Tears", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Olympics", + "title": "Dance By The Light Of The Moon", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bobby Darin", + "title": "Christmas Auld Lang Syne", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Santo & Johnny", + "title": "Twistin' Bells", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Fats Domino", + "title": "Natural Born Lover", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Al Caiola And His Orchestra", + "title": "The Magnificent Seven", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Mantovani & His Orch.", + "title": "Main Theme from Exodus (Ari's Theme)", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Hank Ballard And The Midnighters", + "title": "The Hoochi Coochi Coo", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Adam Wade", + "title": "Gloria's Theme", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Johnny Mathis", + "title": "How To Handle A Woman", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Browns featuring Jim Edward Brown", + "title": "Send Me The Pillow You Dream On", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Larry Verne", + "title": "Mister Livingston", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Bill Doggett", + "title": "(Let's Do) The Hully Gully Twist", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Little Willie John", + "title": "Walk Slow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jerry Murad's Harmonicats", + "title": "Cherry Pink And Apple Blossom White", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teresa Brewer", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Jimmy Charles", + "title": "The Age For Love", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Frank Gari", + "title": "Utopia", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Pepe", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Buddy Knox", + "title": "Lovey Dovey", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Viscounts", + "title": "Wabash Blues", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Annette With The Afterbeats", + "title": "Talk To Me Baby", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Shelby Flint", + "title": "Angel On My Shoulder", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Jeanne Black", + "title": "Oh, How I Miss You Tonight", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Etta & Harvey", + "title": "Spoonful", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 43, + "missing_count": 44, + "needs_manual_review": 43 + } + }, + { + "playlist_title": "1959 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Guy Mitchell", + "playlist_title": "Heartaches By The Number", + "found_song": { + "artist": "Guy Mitchell", + "disabled": false, + "favorite": false, + "guid": "ea1e7a82-aac1-aef4-9655-535df6a2b073", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartaches By The Number - Guy Mitchell.mp4", + "title": "Heartaches By The Number" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marty Robbins", + "playlist_title": "El Paso", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "guid": "77a1beea-b3fa-33c9-d152-1cd2039e4dfb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke El Paso - Marty Robbins.mp4", + "title": "El Paso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Freddie Cannon", + "playlist_title": "Way Down Yonder In New Orleans", + "found_song": { + "artist": "Freddie Cannon", + "disabled": false, + "favorite": false, + "guid": "ab8db552-c55d-fb03-189e-b93346d3e71c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF064\\Freddie Cannon - Way Down Yonder In New Orleans - SF064 - 13.mp3", + "title": "Way Down Yonder In New Orleans" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Darin", + "playlist_title": "Mack The Knife", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "3477148c-7525-a49c-6c3b-cc2a334409e4", + "path": "z://MP4\\KaraFun Karaoke\\Bobby Darin - Mack The Knife.mp4", + "title": "Mack The Knife" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Oh! Carol", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7f4c9f-0abf-cde8-0d8f-5e88db3eb62b", + "path": "z://MP4\\VocalStarKaraoke\\Neil Sedaka - Oh Carol.mp4", + "title": "Oh Carol" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Fleetwoods", + "playlist_title": "Mr. Blue", + "found_song": { + "artist": "The Fleetwoods", + "disabled": false, + "favorite": false, + "guid": "c3f643c3-d0ca-7b55-b1be-deb7f6bd5db0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Blue - The Fleetwoods.mp4", + "title": "Mr. Blue" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fats Domino", + "playlist_title": "Be My Guest", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "78bc4d35-46aa-39a4-f4ae-626fceff798a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be My Guest - Fats Domino.mp4", + "title": "Be My Guest" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Mathis", + "playlist_title": "Misty", + "found_song": { + "artist": "Johnny Mathis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cda023b-cfae-4f5e-e4f4-3a56b7646215", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Mathis - Misty.mp4", + "title": "Misty" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Johnny Preston", + "playlist_title": "Running Bear", + "found_song": { + "artist": "Johnny Preston", + "disabled": false, + "favorite": false, + "guid": "323fac76-156c-b4f9-cfd3-fcb9417b364e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Running Bear - Johnny Preston.mp4", + "title": "Running Bear" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Paul Anka", + "playlist_title": "Put Your Head On My Shoulder", + "found_song": { + "artist": "Paul Anka", + "disabled": false, + "favorite": false, + "guid": "89a54a76-fbec-b983-86bc-4b76289bd5dc", + "path": "z://MP4\\KaraFun Karaoke\\Put Your Head On My Shoulder - Paul Anka Karaoke Version KaraFun.mp4", + "title": "Put Your Head On My Shoulder" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Wink Martindale", + "playlist_title": "Deck Of Cards", + "found_song": { + "artist": "Wink Martindale", + "disabled": false, + "favorite": false, + "guid": "6eabda62-1600-c414-152f-27e12876da97", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF131\\Wink Martindale - Deck Of Cards - SF131 - 04.mp3", + "title": "Deck Of Cards" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Shimmy, Shimmy, Ko-Ko-Bop", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecd08f8d-9101-b14c-e2e0-1424a79737f1", + "path": "z://MP4\\KaraokeOnVEVO\\Little Anthony And The Imperials - Shimmy, Shimmy, Ko-Ko-Bop.mp4", + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Brenda Lee", + "playlist_title": "Sweet Nothin's", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "ae1b2f75-5275-09c9-865c-87c2ac5e72e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweet Nothin s - Brenda Lee.mp4", + "title": "Sweet Nothin s" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mark Dinning", + "playlist_title": "Teen Angel", + "found_song": { + "artist": "Mark Dinning", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aebfadaa-78f0-dbfb-746e-16c459c4c8bf", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Dinning - Teen Angel.mp4", + "title": "Teen Angel" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Frankie Avalon", + "playlist_title": "Why", + "found_song": { + "artist": "Frankie Avalon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0a74a55-c2a4-0c69-d85b-421eb8d03970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Avalon - Venus.mp4", + "title": "Venus" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Bobby Rydell", + "playlist_title": "We Got Love", + "found_song": { + "artist": "Bobby Rydell", + "disabled": false, + "favorite": false, + "guid": "9f771ff9-1b6c-4ebf-75d7-de1ffbacf025", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Volare - Bobby Rydell.mp4", + "title": "Volare" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Connie Francis", + "playlist_title": "Among My Souvenirs", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "545d56f5-f7bf-2e28-389c-a06fb8746224", + "path": "z://MP4\\ZoomKaraokeOfficial\\Connie Francis - Carolina Moon.mp4", + "title": "Carolina Moon" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Fabian", + "playlist_title": "Hound Dog Man", + "found_song": { + "artist": "Sha Na Na", + "disabled": false, + "favorite": false, + "guid": "c68ede32-d763-6804-8db5-e67a53deb4ab", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD039 - Grease\\Sha Na Na - Hound Dog - SFG039 - 14.mp3", + "title": "Hound Dog" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Della Reese", + "playlist_title": "Don't You Know", + "found_song": { + "artist": "Kungs", + "disabled": false, + "favorite": false, + "guid": "5e88e558-c045-1a0f-066e-00311dcfb350", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don't You Know - Kungs.mp4", + "title": "Don't You Know" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Brook Benton", + "playlist_title": "So Many Ways", + "found_song": { + "artist": "David Alexander", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daa396f4-36ed-a552-7c3d-5ad1a2729cce", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Alexander - So Many Ways.mp4", + "title": "So Many Ways" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ricky Nelson", + "playlist_title": "I Wanna Be Loved", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "guid": "168f41a7-3180-4562-40de-99e57f0b8aa5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Late - Ricky Nelson.mp4", + "title": "It s Late" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Conway Twitty", + "playlist_title": "Danny Boy", + "found_song": { + "artist": "Loretta Lynn & Conway Twitty", + "disabled": false, + "favorite": false, + "guid": "874f6e40-c1cd-98c6-12cb-b6af2be85ee6", + "path": "z://MP4\\Let's Sing Karaoke\\Lynn, Loretta & Conway Twitty - Lead Me On (Karaoke & Lyrics).mp4", + "title": "Lead Me On" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Larry Hall", + "playlist_title": "Sandy", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "4c119a40-2365-7ded-d1b8-d265baa8ce7b", + "path": "z://MP4\\Sing King Karaoke\\Barry Manilow - Mandy (Karaoke Version).mp4", + "title": "Mandy" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "The Drifters", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a8c76fb-a044-d46f-2bbf-b4ba278ba7c5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Dance With Me.mp4", + "title": "Dance With Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Sammy Turner", + "playlist_title": "Always", + "found_song": { + "artist": "Erasure", + "disabled": false, + "favorite": false, + "guid": "302f9580-d7c1-e779-f923-aa0285df2109", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF025\\Erasure - Always - SF025 - 01.mp3", + "title": "Always" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Connie Francis", + "playlist_title": "God Bless America", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "defc6d5f-3b2d-fb06-b120-62d6e6583236", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - God Bless America (Karaoke).mp4", + "title": "God Bless America" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "Ricky Nelson", + "playlist_title": "Mighty Good", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74c0419a-d45a-a29f-a1bf-2148149d57a2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Nelson - Stood Up.mp4", + "title": "Stood Up" + }, + "similarity": 0.78, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Paul Evans and the Curls", + "playlist_title": "(Seven Little Girls) Sitting In The Back Seat", + "found_song": { + "artist": "The Avons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73b28db8-2c69-835e-2ef0-507c4d904ff7", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Avons - Seven Little Girls Sitting In The Back Seat (Duet Version).mp4", + "title": "Seven Little Girls Sitting In The Back Seat (Duet Version)" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Dinah Washington", + "playlist_title": "Unforgettable", + "found_song": { + "artist": "Dinah Washington", + "disabled": false, + "favorite": false, + "guid": "2687f5a1-1196-034a-c8a1-3d9ec80bc696", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke But Not For Me - Dinah Washington.mp4", + "title": "But Not For Me" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Talk That Talk", + "found_song": { + "artist": "Rihanna ft. Jay-Z", + "disabled": false, + "favorite": false, + "guid": "28c22346-a26b-bab3-e4ca-a941b51627c9", + "path": "z://CDG\\Big Hits Karaoke\\BHK028\\BHK028-11 - Rihanna & Jay-Z - Talk That Talk.mp3", + "title": "Talk That Talk" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Harry Simeone Chorale", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Bob Seger & The Silver Bullet Band", + "disabled": false, + "favorite": false, + "guid": "1a36ac06-ccf0-55b9-8aa7-6cb1a720658c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band.mp4", + "title": "The Little Drummer Boy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Clovers", + "playlist_title": "Love Potion No. 9", + "found_song": { + "artist": "The Searchers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e4491c4a-431c-e403-6d2b-fd5882292f1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Searchers - Love Potion #9.mp4", + "title": "Love Potion #9" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Sarah Vaughan", + "playlist_title": "Smooth Operator", + "found_song": { + "artist": "Sarah Vaughan", + "disabled": false, + "favorite": false, + "guid": "303800e4-38f4-b881-14f8-1f5ecbe7e5b9", + "path": "z://MP4\\KtvEntertainment\\Sarah Vaughan - Moon River Karaoke Lyrics.mp4", + "title": "Moon River" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "The Crests", + "playlist_title": "A Year Ago Tonight", + "found_song": { + "artist": "The Cars", + "disabled": false, + "favorite": false, + "guid": "ad6060d5-b3c4-c5b6-05df-cc9c35fb2674", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Cars - You're All I've Got Tonight (Karaoke).mp4", + "title": "You're All I've Got Tonight" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "d65b04f2-4a45-4d3b-12e3-2526c4632b67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Of Me - Frank Sinatra.mp4", + "title": "All Of Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Andy Williams", + "playlist_title": "Lonely Street", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "c4d124ec-c990-3134-c146-a6b402b9ec2e", + "path": "z://MP4\\Let's Sing Karaoke\\Williams, Andy - Born Free (Karaoke & Lyrics).mp4", + "title": "Born Free" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 61, + "playlist_artist": "Dee Clark", + "playlist_title": "How About That", + "found_song": { + "artist": "Adam Faith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "566c5d58-46c4-8477-ce3a-085c02aee446", + "path": "z://MP4\\VocalStarKaraoke\\Adam Faith - How About That.mp4", + "title": "How About That" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Fireflies", + "playlist_title": "You Were Mine", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "b3e7281b-0bb1-19a1-9586-2f093becba5e", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - You Were Mine (Karaoke).mp4", + "title": "You Were Mine" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Fats Domino", + "playlist_title": "I've Been Around", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92a391fd-aa13-890a-a14e-3b4d185e1e34", + "path": "z://CDG\\Various\\Fats Domino - I'm Ready.mp3", + "title": "I'm Ready" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "The Coasters", + "playlist_title": "What About Us", + "found_song": { + "artist": "The Saturdays ft. Sean Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cffd7342-829d-d469-ef2c-e56e22d65817", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Saturdays feat Sean Paul - What About Us.mp4", + "title": "What About Us" + }, + "similarity": 0.84, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Cliff Richard and The Drifters", + "playlist_title": "Living Doll", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "90bd5caf-f42f-060d-e606-376a943813d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Living Doll - Cliff Richard.mp4", + "title": "Living Doll" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Kitty Kallen", + "playlist_title": "If I Give My Heart To You", + "found_song": { + "artist": "Doris Day", + "disabled": false, + "favorite": false, + "guid": "a0f90c4c-c901-7559-6721-79e59182ee4f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If I Give My Heart To You - Doris Day.mp4", + "title": "If I Give My Heart To You" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Mitch Miller", + "playlist_title": "Do-Re-Mi", + "found_song": { + "artist": "Mitch Miller", + "disabled": false, + "favorite": false, + "guid": "12a10484-50c0-5261-fbf8-3cb3b0ffd471", + "path": "z://MP4\\KaraokeOnVEVO\\Mitch Miller - You Are My Sunshine (Karaoke).mp4", + "title": "You Are My Sunshine" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Revels", + "playlist_title": "Midnight Stroll", + "found_song": { + "artist": "The Eagles", + "disabled": false, + "favorite": false, + "guid": "99066597-4636-1cad-9401-0ef4e48d9083", + "path": "z://MP4\\KtvEntertainment\\The Eagles - Midnight Flyer Karaoke Lyrics.mp4", + "title": "Midnight Flyer" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Rod Bernard", + "playlist_title": "One More Chance", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "650230f8-8460-0a3e-bc76-e65cbe84d368", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - One More Time.mp4", + "title": "One More Time" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Jane Morgan", + "playlist_title": "Happy Anniversary", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "738874d8-bd9d-2151-9940-e79a645d2230", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Anniversary - Little River Band.mp4", + "title": "Happy Anniversary" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "The Coasters", + "playlist_title": "Run Red Run", + "found_song": { + "artist": "The Coasters", + "disabled": false, + "favorite": false, + "guid": "6a10603f-2f80-6d77-5cae-8dbfc0ab9b64", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Charlie Brown - The Coasters.mp4", + "title": "Charlie Brown" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "The Bluenotes", + "playlist_title": "I Don't Know What It Is", + "found_song": { + "artist": "Harold Melvin & The Bluenotes", + "disabled": false, + "favorite": false, + "guid": "60767e62-3d65-2f06-e0f7-cd5857c27cdd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF088\\Harold Melvin & The Bluenotes - If You Don't Know Me By Now - SF088 - 03.mp3", + "title": "If You Don't Know Me By Now" + }, + "similarity": 0.76, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Johnny Cash", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Standards", + "disabled": false, + "favorite": false, + "guid": "8efb6717-6dfc-226f-c74b-bafbc16fdd2c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF030\\StandardsChristmas - The Little Drummer Boy - SF030 - 08.mp3", + "title": "The Little Drummer Boy" + }, + "similarity": 0.83, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bill Haley And His Comets", + "playlist_title": "Joey's Song", + "found_song": { + "artist": "Bill Haley And His Comets", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0346024c-1e02-ee13-f68a-9272e521bc23", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bill Haley And His Comets - Rock A Beatin Boogie.mp4", + "title": "Rock A Beatin' Boogie" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 96, + "playlist_artist": "Brook Benton", + "playlist_title": "This Time Of The Year", + "found_song": { + "artist": "Brook Benton", + "disabled": false, + "favorite": false, + "guid": "27f12895-a53c-d24f-9c7c-b2b8dae0acd7", + "path": "z://MP4\\Let's Sing Karaoke\\Benton, Brook - It's Just A Matter Of Time (Karaoke & Lyrics).mp4", + "title": "It's Just A Matter Of Time" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Miss Toni Fisher", + "title": "The Big Hurt", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Paul Anka", + "title": "It's Time To Cry", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ernie Fields & Orch.", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Fabian", + "title": "This Friendly World", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Browns", + "title": "Scarlet Ribbons (For Her Hair)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 2", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Steve Lawrence", + "title": "Pretty Blue Eyes", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Santo & Johnny", + "title": "Tear Drop", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marv Johnson", + "title": "You Got What It Takes", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Price and His Orchestra", + "title": "Come Into My Heart", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bill Black's Combo", + "title": "Smokie - Part 2", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Johnny And The Hurricanes", + "title": "Reveille Rock", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Rocco Granata and the International Quintet", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Annette With The Afterbeats", + "title": "First Name Initial", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Jimmy Clanton", + "title": "Go, Jimmy, Go", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bob Beckham", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Drifters", + "title": "(If You Cry) True Love, True Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Royal Teens", + "title": "Believe Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 1", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Willy Alberti", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Tommy Facenda", + "title": "High School U.S.A.", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jerry Wallace With The Jewels", + "title": "Primrose Lane", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Spacemen", + "title": "The Clouds", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Della Reese", + "title": "Not One Minute More", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ray Charles and his Orchestra", + "title": "I'm Movin' On", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Andy Williams", + "title": "The Village Of St. Bernadette", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lloyd Price and His Orchestra", + "title": "Wont'cha Come Home", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Ray Peterson", + "title": "Goodnight My Love (Pleasant Dreams)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Don Costa And His Orchestra And Chorus", + "title": "I'll Walk The Line", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rock-A-Teens", + "title": "Woo-Hoo", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Pat Boone", + "title": "Beyond The Sunset", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Fireballs", + "title": "Torquay", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Hugo & Luigi", + "title": "Just Come Home", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "LaVern Baker", + "title": "Tiny Tim", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Dancer, Prancer And Nervous", + "title": "The Happy Reindeer", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Tommy Edwards", + "title": "(New In) The Ways Of Love", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Islanders", + "title": "The Enchanted Sea", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tommy Edwards", + "title": "Honestly And Truly", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Tony Bennett", + "title": "Climb Ev'ry Mountain", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Titus Turner", + "title": "We Told You Not To Marry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Carl Dobkins, Jr.", + "title": "Lucky Devil", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Dorothy Collins", + "title": "Baciare Baciare (Kissing Kissing)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Mormon Tabernacle Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Sandy Nelson", + "title": "Teen Beat", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Frankie Avalon", + "title": "Swingin' On A Rainbow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Clyde McPhatter", + "title": "Let's Try Again", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Bonnie Guitar", + "title": "Candy Apple Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Rod Lauren", + "title": "If I Had A Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 38, + "missing_count": 48, + "needs_manual_review": 38 + } + }, + { + "playlist_title": "1958 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Platters", + "playlist_title": "Smoke Gets In Your Eyes", + "found_song": { + "artist": "The Platters", + "disabled": false, + "favorite": false, + "guid": "de1ba92f-aaa5-7e0d-a934-fa6c25a6bd76", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke Gets In Your Eyes - The Platters.mp4", + "title": "Smoke Gets In Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Everly Brothers", + "playlist_title": "Problems", + "found_song": { + "artist": "The Everly Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "061bccb6-db5f-da4f-b6e8-d398c1ac12f2", + "path": "z://MP4\\KaraokeOnVEVO\\The Everly Brothers - Problems.mp4", + "title": "Problems" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Kingston Trio", + "playlist_title": "Tom Dooley", + "found_song": { + "artist": "The Kingston Trio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28bd82f2-50fc-4069-1217-e5d1739ff4e1", + "path": "z://MP4\\KaraokeOnVEVO\\The Kingston Trio - Tom Dooley.mp4", + "title": "Tom Dooley" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elvis Presley", + "playlist_title": "One Night", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "da6ff584-1e6b-e161-661a-5c8f6ce293c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Night - Elvis Presley.mp4", + "title": "One Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "It's Only Make Believe", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "guid": "c577c8ca-76e3-81c2-f9c0-4b60a3bb6359", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Only Make Believe - Conway Twitty.mp4", + "title": "It s Only Make Believe" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elvis Presley", + "playlist_title": "I Got Stung", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bbd6540e-423a-bc5c-797a-c47c83b758a4", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - I Got Stung.mp4", + "title": "I Got Stung" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fats Domino", + "playlist_title": "Whole Lotta Loving", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "92c33bd6-ee64-f30c-26f2-d3e7dd2f5b58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whole Lotta Loving - Fats Domino.mp4", + "title": "Whole Lotta Loving" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Connie Francis", + "playlist_title": "My Happiness", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "guid": "88947e8e-5a01-14a8-76aa-ad5f45c7176b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happiness - Connie Francis.mp4", + "title": "My Happiness" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Lonely Teardrops", + "found_song": { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "guid": "9eb595a5-605c-088c-cd8a-da17cff3a4b6", + "path": "z://MP4\\Stingray Karaoke\\Lonely Teardrops Jackie Wilson Karaoke with Lyrics.mp4", + "title": "Lonely Teardrops" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Bopper", + "playlist_title": "Chantilly Lace", + "found_song": { + "artist": "Big Bopper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e850d845-ed2a-e97e-b44c-369e381d23ba", + "path": "z://MP4\\KaraokeOnVEVO\\Big Bopper - Chantilly Lace.mp4", + "title": "Chantilly Lace" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ritchie Valens", + "playlist_title": "Donna", + "found_song": { + "artist": "Ritchie Valens", + "disabled": false, + "favorite": false, + "guid": "e2d78790-e8ad-0cbe-4ba1-eb2d0a04726e", + "path": "z://MP4\\KaraFun Karaoke\\Donna - Ritchie Valens Karaoke Version KaraFun.mp4", + "title": "Donna" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tommy Edwards", + "playlist_title": "It's All In The Game", + "found_song": { + "artist": "Tommy Edwards", + "disabled": false, + "favorite": false, + "guid": "ec8b3638-e173-ca9b-22c3-864e70b57156", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All In The Game - Tommy Edwards.mp4", + "title": "It s All In The Game" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Crests", + "playlist_title": "16 Candles", + "found_song": { + "artist": "The Crests", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b49d1f7e-99b5-ffe4-28a1-df4ecf51142a", + "path": "z://MP4\\VocalStarKaraoke\\The Crests - 16 Candles.mp4", + "title": "16 Candles" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Neil Sedaka", + "playlist_title": "The Diary", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe489948-a758-63dd-918c-61d73e04911f", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - The Diary.mp4", + "title": "The Diary" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Eddie Cochran", + "playlist_title": "C'mon Everybody", + "found_song": { + "artist": "Eddie Cochran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1addc634-52a2-3083-4422-c8f3e388a093", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddie Cochran - CMon Everybody.mp4", + "title": "C'Mon Everybody" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jane Morgan", + "playlist_title": "The Day The Rains Came", + "found_song": { + "artist": "Jane Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b1e774-5d07-20b5-05af-c3b857009678", + "path": "z://MP4\\VocalStarKaraoke\\Jane Morgan - The Day The Rains Came.mp4", + "title": "The Day The Rains Came" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Lloyd Price", + "playlist_title": "Stagger Lee", + "found_song": { + "artist": "Lloyd Price", + "disabled": false, + "favorite": false, + "guid": "7baaab3a-1aa6-b3a5-2292-97315f68bb7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stagger Lee - Lloyd Price.mp4", + "title": "Stagger Lee" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Chuck Berry", + "playlist_title": "Run Rudolph Run", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e2763a55-f716-761a-efe3-b05a031e8d32", + "path": "z://MP4\\Sing King Karaoke\\Chuck Berry - Run Rudolph Run (Karaoke Version).mp4", + "title": "Run Rudolph Run" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Chuck Berry", + "playlist_title": "Merry Christmas Baby", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e39943d8-0683-999b-a4c7-9a94ee686927", + "path": "z://CDG\\Various\\Chuck Berry - Merry Christmas Baby.mp3", + "title": "Merry Christmas Baby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Bobby Day", + "playlist_title": "Rock-in Robin", + "found_song": { + "artist": "Bobby Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d66a08b4-1589-7d9f-84d7-485f7a5adb79", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Day - Rock-in Robin.mp4", + "title": "Rock-in Robin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "The Teddy Bears", + "playlist_title": "To Know Him, Is To Love Him", + "found_song": { + "artist": "Teddy Bears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60e4f026-ebae-ad0d-edfc-298346cafb1a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Teddy Bears - To Know Him Is To Love Him - SFMW 827 -13.mp3", + "title": "To Know Him Is To Love Him" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Ricky Nelson", + "playlist_title": "Lonesome Town", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74c0419a-d45a-a29f-a1bf-2148149d57a2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Nelson - Stood Up.mp4", + "title": "Stood Up" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Jimmie Rodgers", + "playlist_title": "Bimbombey", + "found_song": { + "artist": "Jimmie Rodgers", + "disabled": false, + "favorite": false, + "guid": "c00352d1-3800-e26c-ae9e-b184e99d020d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Honeycomb - Jimmie Rodgers.mp4", + "title": "Honeycomb" + }, + "similarity": 0.77, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Tommy Edwards", + "playlist_title": "Love Is All We Need", + "found_song": { + "artist": "Dion, Celine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3bfd6314-1e9e-0d6f-8b37-665636f4f1f2", + "path": "z://CDG\\SBI\\SBI-05\\Celine Dion - Love Is All We Need.mp3", + "title": "Love Is All We Need" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Bobby Darin", + "playlist_title": "Queen Of The Hop", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "beff237d-6102-447b-aae4-f1ba4e63f4fa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Some Of These Days - Bobby Darin.mp4", + "title": "Some Of These Days" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Frankie Avalon", + "playlist_title": "I'll Wait For You", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8cbf81-9a83-081f-0b31-95adf822cb8a", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Nichols - Ill Wait For you.mp4", + "title": "I'll Wait For you" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Ricky Nelson", + "playlist_title": "I Got A Feeling", + "found_song": { + "artist": "Ricky Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aff1b412-df62-4ecd-ce53-597b9af8cd68", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Nelson - Im Walkin.mp4", + "title": "I'm Walkin'" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The Royaltones", + "playlist_title": "Poor Boy", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "c6f7d1b6-804a-c648-a4c8-9ef00d7fbe19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fool To Cry - The Rolling Stones.mp4", + "title": "Fool To Cry" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Louis Prima And Keely Smith", + "playlist_title": "That Old Black Magic", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7b76c2a-aa27-de74-cafd-5a0da28594c3", + "path": "z://MP4\\KaraokeOnVEVO\\Frank Sinatra - That Old Black Magic.mp4", + "title": "That Old Black Magic" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "The Diamonds", + "playlist_title": "Walking Along", + "found_song": { + "artist": "The Diamonds", + "disabled": false, + "favorite": false, + "guid": "acd5d378-932c-6aed-0008-60e3172996eb", + "path": "z://MP4\\KaraokeOnVEVO\\The Diamonds - Little Darlin' (Karaoke).mp4", + "title": "Little Darlin'" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Earl Grant", + "playlist_title": "The End", + "found_song": { + "artist": "Warrant", + "disabled": false, + "favorite": false, + "guid": "63b7925a-ce21-aeb9-c31d-adbc752bb1b1", + "path": "z://CDG\\Various\\Warrant - Heaven.mp3", + "title": "Heaven" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Pat Boone", + "playlist_title": "I'll Remember Tonight", + "found_song": { + "artist": "Pat Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de66266-5019-1d01-c6d0-a755f8e4e97c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pat Boone - Ill Be Home.mp4", + "title": "I'll Be Home" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "The Four Lads", + "playlist_title": "The Mocking Bird", + "found_song": { + "artist": "Thomas, Rob", + "disabled": false, + "favorite": false, + "guid": "75ea7634-383e-584f-873c-2c21a27baf1c", + "path": "z://CDG\\Big Hits Karaoke\\BHK006\\BHK006-08 - Thomas, Rob - Mockingbird.mp3", + "title": "Mockingbird" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Johnny Mathis", + "playlist_title": "Call Me", + "found_song": { + "artist": "Johnny Mathis", + "disabled": false, + "favorite": false, + "guid": "0f92f81e-254b-2405-034b-b4578870cea1", + "path": "z://MP4\\Let's Sing Karaoke\\Mathis, Johnny - Chances Are (Karaoke & Lyrics).mp4", + "title": "Chances Are" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "The Ames Brothers", + "playlist_title": "Pussy Cat", + "found_song": { + "artist": "The Blues Brothers", + "disabled": false, + "favorite": false, + "guid": "5a324988-28fc-268d-8735-6b86bce4e483", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Soul Man - The Blues Brothers.mp4", + "title": "Soul Man" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Kalin Twins", + "playlist_title": "Forget Me Not", + "found_song": { + "artist": "Eden Kane", + "disabled": false, + "favorite": false, + "guid": "5f4b822d-4d2c-feaa-c680-54cee7653d3d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF083\\Eden Kane - Forget Me Not - SF083 - 11.mp3", + "title": "Forget Me Not" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Chuck Berry", + "playlist_title": "Sweet Little Rock And Roller", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57d3c910-687b-ef7c-7bc4-21292d87da74", + "path": "z://MP4\\ZoomKaraokeOfficial\\Chuck Berry - Sweet Little Sixteen.mp4", + "title": "Sweet Little Sixteen" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Roy Hamilton", + "playlist_title": "Pledging My Love", + "found_song": { + "artist": "Emmylou Harris", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37ba0a2f-c3f0-6aaf-3a9b-0b74686cce0d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Emmylou Harris - Pledging My Love.mp4", + "title": "Pledging My Love" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Joni James", + "playlist_title": "There Goes My Heart", + "found_song": { + "artist": "Mavericks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "478abe2d-2785-2be4-73ca-5dcf9f27aa01", + "path": "z://MP4\\KaraokeOnVEVO\\Mavericks - There Goes My Heart.mp4", + "title": "There Goes My Heart" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "The Four Preps", + "playlist_title": "Cinderella", + "found_song": { + "artist": "The Four Preps", + "disabled": false, + "favorite": false, + "guid": "929f686d-3798-7b6b-718d-95ee6e64f484", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF062\\The Four Preps - Big Man - SF062 - 03.mp3", + "title": "Big Man" + }, + "similarity": 0.75, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Mr. Success", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "5a23c1f0-b18e-65b3-390f-d13dfb9d427c", + "path": "z://CDG\\Various\\Frank Sinatra - More.mp3", + "title": "More" + }, + "similarity": 0.81, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Everly Brothers", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "The Everly Brothers", + "disabled": false, + "favorite": false, + "guid": "30603f25-1441-c5fb-e847-c74c9239823e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bye Bye Love - The Everly Brothers.mp4", + "title": "Bye Bye Love" + }, + "similarity": 0.79, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Perry Como", + "playlist_title": "Mandolins In The Moonlight", + "found_song": { + "artist": "Toploader", + "disabled": false, + "favorite": false, + "guid": "c0cc6235-6b98-ebb0-4734-221e319d30b4", + "path": "z://MP4\\Sing King Karaoke\\Toploader - Dancing In The Moonlight (Karaoke Version).mp4", + "title": "Dancing In The Moonlight" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Jerry Wallace", + "playlist_title": "Diamond Ring", + "found_song": { + "artist": "Chipmunk ft Emeli Sande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63e1546f-7c47-13ad-1652-cac06618c1d3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF282\\Chipmunk ft Emeli Sande - Diamond Rings - SF282 - 06.mp3", + "title": "Diamond Rings" + }, + "similarity": 0.71, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "The Harry Simeone Chorale", + "playlist_title": "The Little Drummer Boy", + "found_song": { + "artist": "Bob Seger & The Silver Bullet Band", + "disabled": false, + "favorite": false, + "guid": "1a36ac06-ccf0-55b9-8aa7-6cb1a720658c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Drummer Boy in the style of Bob Seger & The Silver Bullet Band.mp4", + "title": "The Little Drummer Boy" + }, + "similarity": 0.74, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Bobby Freeman", + "playlist_title": "Need Your Love", + "found_song": { + "artist": "Shaggy ft Mohombi Faydee & Costi", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "b36988be-4ad4-11f6-4dc1-df1255e2cb3f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF355\\Shaggy ft Mohombi Faydee & Costi - I Need Your Love - SF355 - 06.mp3", + "title": "I Need Your Love" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Dreamy Eyes", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9b80601-e32c-73a4-6bdb-eefdadbebe48", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Tillotson - Why Do I Love You So.mp4", + "title": "Why Do I Love You So" + }, + "similarity": 0.7, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Chuck Berry", + "playlist_title": "Joe Joe Gunne", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ead9fc-5c95-b289-7d15-12a04d555a28", + "path": "z://MP4\\ZoomKaraokeOfficial\\Chuck Berry - Nadine.mp4", + "title": "Nadine" + }, + "similarity": 0.72, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "So Much", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "guid": "fd8b5c2f-ce43-20b3-f002-0cb074b7bc8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goin Out Of My Head - Little Anthony And The Imperials.mp4", + "title": "Goin Out Of My Head" + }, + "similarity": 0.8, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 98, + "playlist_artist": "The 5 Chanels", + "playlist_title": "The Reason", + "found_song": { + "artist": "The Chainsmokers", + "disabled": false, + "favorite": false, + "guid": "dbc5c324-4c0d-f266-df21-dffb1d6f53d4", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers - The One (Karaoke Version).mp4", + "title": "The One" + }, + "similarity": 0.73, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Chipmunks With David Seville", + "title": "The Chipmunk Song", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Playmates", + "title": "Beep Beep", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Clyde McPhatter", + "title": "A Lover's Question", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Grammer", + "title": "Gotta Travel On", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Cannonball", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cozy Cole", + "title": "Topsy II", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Nu Tornados", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Donnie Owens", + "title": "Need You", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Four Coins", + "title": "The World Outside", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Reg Owen & His Orchestra", + "title": "Manhattan Spiritual", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Cadillacs", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Sam Cooke", + "title": "Love You Most Of All", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "title": "The Teen Commandments", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Big Bopper", + "title": "Big Bopper's Wedding", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Paul Anka", + "title": "(All of a Sudden) My Heart Sings", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Jimmy Clanton", + "title": "A Letter To An Angel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Cozy Cole", + "title": "Turvy II", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "LaVern Baker", + "title": "I Cried A Tear", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Tommy Dorsey Orchestra", + "title": "Tea For Two Cha Cha", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dee Clark", + "title": "Nobody But You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Augie Rios", + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "June Valli", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bill Parsons", + "title": "The All American Boy", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bernie Lowe Orchestra", + "title": "Sing Sing Sing", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Billy Vaughn And His Orchestra", + "title": "Cimarron (Roll On)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Four Esquires", + "title": "Hideaway", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Johnny Cash And The Tennessee Two", + "title": "It's Just About Time", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dion & The Belmonts", + "title": "Don't Pity Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Applejacks", + "title": "Rocka-Conga", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "James Brown And The Famous Flames", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Jack Scott", + "title": "Goodbye Baby", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tony Dallara", + "title": "Come Prima", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Raymond Lefevre and His Orchestra", + "title": "The Day The Rains Came", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Harvey & The Moonglows", + "title": "Ten Commandments Of Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tab Hunter", + "title": "Jealous Heart", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Polly Bergen", + "title": "Come Prima (Koma Preema)", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Billy & Lillie", + "title": "Lucky Ladybug", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Applejacks", + "title": "Mexican Hat Rock", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Quaker City Boys", + "title": "Teasin'", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Bobby Helms", + "title": "The Fool And The Angel", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Poni-Tails", + "title": "Seven Minutes In Heaven", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Nat King Cole", + "title": "Non Dimenticar (Don't Forget)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Enoch Light & The Light Brigade", + "title": "I Want To Be Happy Cha Cha", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Art Lund", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Ray Charles and his Orchestra", + "title": "Rockhouse (Part 2)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Accents", + "title": "Wiggle, Wiggle", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Wade Flemons and the Newcomers", + "title": "Here I Stand", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Olympics", + "title": "(I Wanna) Dance With The Teacher", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 30, + "missing_count": 48, + "needs_manual_review": 30 + } + } + ], + "overall_summary": { + "total_songs": 9749, + "exact_matches": 3911, + "fuzzy_matches": 2917, + "missing_songs": 2921, + "needs_manual_review": 2917 + } +} \ No newline at end of file diff --git a/cli/final_playlist_validation.json b/cli/final_playlist_validation.json new file mode 100644 index 0000000..c5421a9 --- /dev/null +++ b/cli/final_playlist_validation.json @@ -0,0 +1,98157 @@ +{ + "total_playlists": 169, + "playlist_results": [ + { + "playlist_title": "Top 100 Karaoke Songs", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Neil Diamond", + "playlist_title": "Sweet Caroline", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "70aa1d8b-45b6-b3dd-b5d3-5e470c3fac26", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Sweet Caroline (Karaoke Version).mp4", + "title": "Sweet Caroline" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin' on a Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Wanna Dance With Somebody", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "967b0ffa-1914-ea2f-6940-ca5085595a58", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - I Wanna Dance With Somebody (w.mp4", + "title": "I Wanna Dance With Somebody" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Killers", + "playlist_title": "Mr. Brightside", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "37f83db1-2820-ee7d-bfc7-1d52e4d925fd", + "path": "z://MP4\\Sing King Karaoke\\The Killers - Mr Brightside (Karaoke Version).mp4", + "title": "Mr Brightside" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Backstreet Boys", + "playlist_title": "I Want It That Way", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "48ed3e92-55d2-22f3-f7e5-37b4e70ae523", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - I Want It That Way (Karaoke Version).mp4", + "title": "I Want It That Way" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Spice Girls", + "playlist_title": "Wannabe", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "49467912-14fb-ce08-09fd-2e2ea43cf7d5", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - Wannabe (Karaoke Version).mp4", + "title": "Wannabe" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Oasis", + "playlist_title": "Wonderwall", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "4867a49d-407f-dc48-d795-bf9ca55d73f4", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Wonderwall (Karaoke Version).mp4", + "title": "Wonderwall" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse of the Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 to 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Like a Prayer", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "3cee094e-f784-4473-157d-36b8888cf122", + "path": "z://MP4\\Let's Sing Karaoke\\Madonna - Like A Prayer (Karaoke & Lyrics) (2).mp4", + "title": "Like A Prayer" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neil Diamond", + "playlist_title": "Cracklin' Rosie", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "c746960c-cd2b-498f-71e2-c87535d16a19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cracklin Rosie - Neil Diamond.mp4", + "title": "Cracklin Rosie" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "Any Way You Want It", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "42aa663c-28b8-3a5c-de9f-ddea0f3ecffe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Any Way You Want It - Journey.mp4", + "title": "Any Way You Want It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Adele", + "playlist_title": "Rolling in the Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Madonna", + "playlist_title": "Vogue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fc9cbc39-ceb7-4b46-e0f1-a074e596a0b0", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Vogue (Karaoke Version).mp4", + "title": "Vogue" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bryan Adams", + "playlist_title": "Summer of '69", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "18407b50-9913-210b-c09e-8ff71ec4d062", + "path": "z://MP4\\Sing King Karaoke\\Bryan Adams - Summer Of '69 (Karaoke Version).mp4", + "title": "Summer Of '69" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Little Mix", + "playlist_title": "Shout Out to My Ex", + "found_song": { + "artist": "Little Mix", + "disabled": false, + "favorite": false, + "guid": "037470bb-4c46-98ff-34de-69d3c553f121", + "path": "z://MP4\\Sing King Karaoke\\Little Mix - Shout Out To My Ex (Karaoke Version).mp4", + "title": "Shout Out To My Ex" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Shania Twain", + "playlist_title": "Man! I Feel Like a Woman!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "e874c98d-5e8f-1afc-ab9b-13f530125319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Man! I Feel Like A Woman! - Shania Twain.mp4", + "title": "Man! I Feel Like A Woman!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Britney Spears", + "playlist_title": "Oops!... I Did It Again", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "15f490ae-59b1-f079-134f-328d1907d5e2", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Oops!...I Did It Again (Karaoke Version).mp4", + "title": "Oops!...I Did It Again" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Weather Girls", + "playlist_title": "It's Raining Men", + "found_song": { + "artist": "The Weather Girls", + "disabled": false, + "favorite": false, + "guid": "aa8e113d-6f78-0b78-3412-62aab432735f", + "path": "z://MP4\\Stingray Karaoke\\It's Raining Men The Weather Girls Karaoke with Lyrics.mp4", + "title": "It's Raining Men" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Queen", + "playlist_title": "Somebody to Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Spice Girls", + "playlist_title": "Say You'll Be There", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "58d4d851-328a-6ea6-9034-f915961891c7", + "path": "z://CDG\\Various\\Spice Girls - Say You'll Be There.mp3", + "title": "Say You'll Be There" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Everybody (Backstreet's Back)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "53eb2ea2-0647-9a14-f0a4-ded4fc3364f1", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Everybody (Backstreet s Back) (Karaoke Version).mp4", + "title": "Everybody (Backstreet s Back)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Fountains of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Liza Minnelli", + "playlist_title": "Cabaret", + "found_song": { + "artist": "Liza Minnelli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6fcb3b4-65ab-a4f6-51dc-5f2eec549eb2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Liza Minnelli - Cabaret.mp4", + "title": "Cabaret" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Missy Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "a7a9e774-0a98-b1f1-4d59-49c353db5cb4", + "path": "z://MP4\\Let's Sing Karaoke\\Elliott, Missy - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop the Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Blink‑182", + "playlist_title": "All the Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Oasis", + "playlist_title": "Don't Look Back in Anger", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "404f3b17-3427-39d3-41b3-189922f545f9", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Don't Look Back In Anger (Karaoke Version).mp4", + "title": "Don't Look Back In Anger" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Blink‑182", + "playlist_title": "What's My Age Again?", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "guid": "cb394951-2094-513c-c0a5-663c01bfd5ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s My Age Again - Blink-182.mp4", + "title": "What s My Age Again" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Lionel Richie", + "playlist_title": "Hello", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e2d196a3-492c-3a8e-3aad-e7e7c123297f", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - Hello (Karaoke Version).mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "George Michael", + "playlist_title": "Careless Whisper", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "fa7cfb8d-3c09-9839-6607-8a1f4c5547b5", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Careless Whisper (Karaoke Version).mp4", + "title": "Careless Whisper" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Respect", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "5c0977a8-8c70-110a-a799-b4e46a459dd9", + "path": "z://MP4\\Sing King Karaoke\\Aretha Franklin - Respect (Karaoke Version).mp4", + "title": "Respect" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Losing My Religion", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a4a6f38-5742-6a87-3e4d-80946898fd54", + "path": "z://MP4\\Sing King Karaoke\\Rem - Losing My Religion.mp4", + "title": "Losing My Religion" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Go Your Own Way", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "7c5cc505-466c-1c45-ecfa-9959dd563c64", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Go Your Own Way (Karaoke Version).mp4", + "title": "Go Your Own Way" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Queen", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Salt‑n‑Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Michael Jackson", + "playlist_title": "Billie Jean", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc2977c-cbdf-00f6-0997-c3273d2853d4", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - Billie Jean.mp4", + "title": "Billie Jean" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Elvis Presley", + "playlist_title": "Can't Help Falling in Love", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "575336ed-6637-efa8-89d5-3b6242d61db9", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Can t Help Falling In Love (Karaoke Version).mp4", + "title": "Can t Help Falling In Love" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Frank Sinatra", + "playlist_title": "My Way", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "7c0a9b2c-d218-3bf6-6a5c-a2acc8d2a9b8", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - My Way (Karaoke Version).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lil Nas X", + "playlist_title": "Old Town Road", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "93825a62-4f0e-57fe-51f1-9c91318f9101", + "path": "z://MP4\\KaraFun Karaoke\\Old Town Road - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Old Town Road" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "JAY‑Z", + "playlist_title": "Empire State of Mind", + "found_song": { + "artist": "Jay Z ft. Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "910461c3-1b2d-9197-0315-799151b13630", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jay Z feat Alicia Keys - Empire State Of Mind (Duet Version).mp4", + "title": "Empire State Of Mind" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "4 Non Blondes", + "playlist_title": "What's Up?", + "found_song": { + "artist": "4 Non Blondes", + "disabled": false, + "favorite": false, + "guid": "77623013-eb25-7103-4a8f-46c62378d7bf", + "path": "z://MP4\\KaraFun Karaoke\\What’s Up - 4 Non Blondes Karaoke Version KaraFun.mp4", + "title": "What’s Up" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Soundgarden", + "playlist_title": "Fell on Black Days", + "found_song": { + "artist": "Soundgarden", + "disabled": false, + "favorite": false, + "guid": "f19b13c4-7dc1-5947-053d-36964f3f017d", + "path": "z://CDG\\Various\\Soundgarden - Fell On Black Days.mp3", + "title": "Fell On Black Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "63ca77f0-ac16-599f-2f08-b4a4412074b2", + "path": "z://MP4\\Sing King Karaoke\\The Jackson 5 - I Want You Back (Karaoke Version).mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Usher", + "playlist_title": "Climax", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "98cbfbe2-e0d2-0d3f-c3a7-d3c4260be6ab", + "path": "z://MP4\\Sing King Karaoke\\Usher - Climax (Karaoke Version).mp4", + "title": "Climax" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Kenny Rogers & Dolly Parton", + "playlist_title": "Islands in the Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cruel Summer", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2596a18d-f42c-1be9-249f-8e96304456c4", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Cruel Summer (Karaoke Version).mp4", + "title": "Cruel Summer" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Elton John & Kiki Dee", + "playlist_title": "Don't Go Breaking My Heart", + "found_song": { + "artist": "Elton John And Kiki Dee", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "e1fed966-32fe-126e-2146-825d279f55ba", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John And Kiki Dee - Dont Go Breaking My Heart.mp4", + "title": "Dont Go Breaking My Heart" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Eminem & Rihanna", + "playlist_title": "Love the Way You Lie", + "found_song": { + "artist": "Eminem & Rihanna", + "disabled": false, + "favorite": false, + "guid": "ed6f1a8e-be79-d427-b10d-0e0fed6d1a19", + "path": "z://CDG\\Big Hits Karaoke\\BHK010\\BHK010-02 - Eminem & Rihanna - Love The Way You Lie.mp3", + "title": "Love The Way You Lie" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "SZA & Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Beyoncé", + "playlist_title": "Crazy in Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3413c594-b3e7-1563-a3dd-fc63955feb74", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Crazy In Love (2014 Remix) (Karaoke Version) (From Fifty Shades Of Grey ).mp4", + "title": "Crazy In Love" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Rocky Horror Show", + "playlist_title": "The Time Warp", + "found_song": { + "artist": "The Rocky Horror Show", + "disabled": false, + "favorite": false, + "guid": "ec64bc5c-bbe0-d44a-233d-a0089629e820", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Time Warp - The Rocky Horror Show.mp4", + "title": "Time Warp" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "I've Had The Time Of My Life", + "found_song": { + "artist": "Bill Medley, Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5914e17-396c-e9c9-0f5c-6aa24b030f94", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley, Jennifer Warnes - (Ive Had) The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 20, + "artist": "Lionel Richie & Diana Ross", + "title": "Endless Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Brandy & Monica", + "title": "The Boy Is Mine", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ed Sheeran & Beyoncé", + "title": "Perfect Duet", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Usher & Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Marvin Gaye ft. Tammi Terrell", + "title": "Ain't No Mountain High Enough", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Taylor Swift ft. Ed Sheeran", + "title": "Everything Has Changed", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "title": "Despacito", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay‑Z ft. Beyoncé", + "title": "03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Sam Smith & Kim Petras", + "title": "Unholy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Nas & Beyoncé", + "title": "Brown Skin Girl", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Lady Gaga & Bruno Mars", + "title": "Die with a Smile", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Amy Winehouse & Mark Ronson", + "title": "Valerie", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Huey Lewis & Gwyneth Paltrow", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "John Travolta & Olivia Newton‑John", + "title": "Summer Nights", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Ross & Keyshia Cole", + "title": "Love", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Megan Thee Stallion feat. Beyoncé", + "title": "Savage Remix", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lady Gaga & Ariana Grande", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Rihanna & JAY‑Z", + "title": "Umbrella", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 69, + "fuzzy_match_count": 12, + "missing_count": 19, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "2025 - Apple Music Top 50", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bad Bunny", + "playlist_title": "DtMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mariah the Scientist", + "playlist_title": "Burning Blue", + "found_song": { + "artist": "Mariah the Scientist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4a6ae42-46d3-6e43-9c8f-f27e3db4843d", + "path": "z://MP4\\Sing King Karaoke\\Mariah the Scientist - Burning Blue.mp4", + "title": "Burning Blue" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Bieber", + "playlist_title": "DAISIES", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "d8964ae6-e001-b752-97ab-cd1d2a9d7392", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - DAISIES (Karaoke Version).mp4", + "title": "DAISIES" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Bad Bunny", + "playlist_title": "BAILE INoLVIDABLE", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Superman", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "151e7f1d-9e14-10a2-d98a-d5874a38c414", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Superman (Karaoke Version).mp4", + "title": "Superman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Cardi B", + "playlist_title": "Outside", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef89e7a-6702-d628-11ab-c7f2ef139c1e", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Outside.mp4", + "title": "Outside" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Crazy Train", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75c29fc8-76e1-29c1-575d-057d8e39f7a6", + "path": "z://MP4\\VocalStarKaraoke\\Ozzy Osbourne - Crazy Train.mp4", + "title": "Crazy Train" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar & SZA", + "playlist_title": "luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Toby Keith", + "playlist_title": "Courtesy of the Red, White and Blue", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "14a2ac09-e528-c87d-3300-b03724d8c954", + "path": "z://MP4\\Let's Sing Karaoke\\Keith, Toby - Courtesy Of The Red, White & Blue (Karaoke & Lyrics) (2).mp4", + "title": "Courtesy Of The Red, White & Blue" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Justin Bieber", + "playlist_title": "GO BABY", + "found_song": { + "artist": "Justin Bieber ft. Ludacris", + "disabled": false, + "favorite": false, + "guid": "d920a036-01db-b2f7-d136-65e894e422b0", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Ludacris - Baby (Karaoke Version).mp4", + "title": "Baby" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Drake", + "title": "NOKIA", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Morgan Wallen & Tate McRae", + "title": "What I Want", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Drake", + "title": "GIMME A HUG", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Playboi Carti", + "title": "EVIL J0RDAN", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake", + "title": "What Did I Miss", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lil Baby, Young Thug & Future", + "title": "Dum, Dumb, and Dumber", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Justin Bieber", + "title": "ALL I CAN TAKE", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "BigXthaPlug & Bailey Zimmerman", + "title": "All The Way", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Morgan Wallen & Post Malone", + "title": "I Ain't Comin' Back", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "PARTYNEXTDOOR & Drake", + "title": "CN TOWER", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Travis Scott", + "title": "KICK OUT", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Playboi Carti", + "title": "RATHER LIE", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lil Baby", + "title": "Listen Up", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Kendrick Lamar", + "title": "tv off", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Weeknd", + "title": "Cry For Me", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bad Bunny", + "title": "NUEVAYoL", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Lil Baby & Rylo Rodriguez", + "title": "By Myself", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Travis Scott", + "title": "DUMBO", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Morgan Wallen", + "title": "I'm A Little Crazy", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "20 Cigarettes", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny", + "title": "VOY A LLeVARTE PA PR", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "PARTYNEXTDOOR & Drake", + "title": "SOMETHING ABOUT YOU", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Playboi Carti & The Weeknd", + "title": "RATHER LIE", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Baby", + "title": "F U 2x", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lil Durk", + "title": "Vanish Mode", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Travis Scott, Don Toliver & Waka Flocka Flame", + "title": "CHAMPAIN & VACAY", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Lady Gaga & Bruno Mars", + "title": "Die With A Smile", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "PARTYNEXTDOOR & Drake", + "title": "SOMEBODY LOVES ME", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Kendrick Lamar", + "title": "squabble up", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "PARTYNEXTDOOR & Drake", + "title": "MOTH BALLS", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Playboi Carti & Kendrick Lamar", + "title": "GOOD CREDIT", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Justin Bieber & Gunna", + "title": "WAY IT IS", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Lil Durk", + "title": "They Want To Be You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 33, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2025 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "ROSE", + "playlist_title": "APT.", + "found_song": { + "artist": "Rose ft. Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cdc1d65-2b1e-e8a8-59b6-3e9d1949eda5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rose & Bruno Mars - APT.mp4", + "title": "APT" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Chappell Roan", + "playlist_title": "Pink Pony Club", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "660737f7-9bb5-fc12-1bd7-b52a2d02c473", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Pink Pony Club (Karaoke Version).mp4", + "title": "Pink Pony Club" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Love Somebody", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4bd08d6-3839-bc1d-12c1-7cc1ddb69d03", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Love Somebody (Karaoke Version).mp4", + "title": "Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Gracie Abrams", + "playlist_title": "That's So True", + "found_song": { + "artist": "Gracie Abrams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de084702-1eb2-038d-96d7-a9180a5d2af3", + "path": "z://MP4\\Sing King Karaoke\\Gracie Abrams - That’s So True (Karaoke Version).mp4", + "title": "That’s So True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Alex Warren", + "playlist_title": "Ordinary", + "found_song": { + "artist": "Alex Warren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "130e10f6-f0c1-e61a-51bb-63433dffecb5", + "path": "z://MP4\\Sing King Karaoke\\Alex Warren - Ordinary (Karaoke Version).mp4", + "title": "Ordinary" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lola Young", + "playlist_title": "Messy", + "found_song": { + "artist": "Lola Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f4d6765f-389c-8d62-eda8-a8f13089a175", + "path": "z://MP4\\Sing King Karaoke\\Lola Young - Messy (Karaoke Version).mp4", + "title": "Messy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Doechii", + "playlist_title": "Anxiety", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7795470f-0410-b8c4-c871-2bd31edf1a36", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Anxiety.mp4", + "title": "Anxiety" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Leon Thomas", + "playlist_title": "Mutt", + "found_song": { + "artist": "Leon Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3478b3f0-1c00-dd33-d8c6-5a06dc43a0aa", + "path": "z://MP4\\Sing King Karaoke\\Leon Thomas - MUTT (Karaoke Version).mp4", + "title": "MUTT" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "BigXthaPlug", + "playlist_title": "All The Way", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Tate McRae", + "playlist_title": "Sports Car", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb7c7c0f-1ed9-3ab7-3079-aa2d69d87e66", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - Sports car (Karaoke Version).mp4", + "title": "Sports car" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Myles Smith", + "playlist_title": "Stargazing", + "found_song": { + "artist": "Myles Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29311c90-932b-2a64-c703-df0d97cb14f3", + "path": "z://MP4\\Sing King Karaoke\\Myles Smith - Stargazing (Karaoke Version).mp4", + "title": "Stargazing" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "What I Want", + "found_song": { + "artist": "Morgan Wallen ft. Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21b358b6-7363-25ad-0f32-54e89fe7d464", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen & Tate McRae - What I Want.mp4", + "title": "What I Want" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Gaga", + "playlist_title": "Abracadabra", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9a5b697-3618-889d-d726-20f0447ed149", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Abracadabra.mp4", + "title": "Abracadabra" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Benson Boone", + "playlist_title": "Sorry I'm Here For Someone Else", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b050db46-edec-090c-42eb-29b66c7b1bd2", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Sorry Im Here For Someone Else.mp4", + "title": "Sorry I'm Here For Someone Else" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Riley Green", + "playlist_title": "Worst Way", + "found_song": { + "artist": "Riley Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "145d5ab5-347c-60e1-523a-55c0075c86dc", + "path": "z://MP4\\Sing King Karaoke\\Riley Green - Worst Way (Karaoke Version).mp4", + "title": "Worst Way" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bad Bunny", + "playlist_title": "DTMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Marias", + "playlist_title": "No One Noticed", + "found_song": { + "artist": "The Marias", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37ff5d41-37d0-4acf-5f1c-2a49c34c22de", + "path": "z://MP4\\Sing King Karaoke\\The Marias - No One Noticed.mp4", + "title": "No One Noticed" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Manchild", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576600ae-b8e2-8dd5-3eec-157fcee8de7e", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Manchild (Karaoke Version).mp4", + "title": "Manchild" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Ravyn Lenae", + "playlist_title": "Love Me Not", + "found_song": { + "artist": "Ravyn Lenae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4495b3-0ef1-6b9f-e657-816590ccb331", + "path": "z://MP4\\Sing King Karaoke\\Ravyn Lenae - Love Me Not (Karaoke Version).mp4", + "title": "Love Me Not" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Gigi Perez", + "playlist_title": "Sailor Song", + "found_song": { + "artist": "Gigi Perez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "708d4809-5853-8419-0a63-d209e642f8a2", + "path": "z://MP4\\Sing King Karaoke\\Gigi Perez - Sailor Song (Karaoke Version).mp4", + "title": "Sailor Song" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Doechii", + "playlist_title": "Denial Is A River", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8979f1e2-8c09-f7f0-70df-89a79a37dfcb", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Denial Is A River.mp4", + "title": "Denial Is A River" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Zach Top", + "playlist_title": "I Never Lie", + "found_song": { + "artist": "Zach Top", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43bee50c-ab50-1919-c283-c5e1306089d3", + "path": "z://MP4\\Sing King Karaoke\\Zach Top - I Never Lie (Karaoke Version).mp4", + "title": "I Never Lie" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ella Langley", + "playlist_title": "Weren't For The Wind", + "found_song": { + "artist": "Ella Langley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09ac26f4-79e4-8dc2-bcac-c9ef6bd6e511", + "path": "z://MP4\\Sing King Karaoke\\Ella Langley - weren't for the wind (Karaoke Version).mp4", + "title": "weren't for the wind" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bad Bunny", + "playlist_title": "Baile Inolvidable", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Benson Boone", + "playlist_title": "Mystical Magical", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1018a9d3-5d8b-9a17-dc2e-9e9d0e65e8a6", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Mystical Magical (Karaoke Version).mp4", + "title": "Mystical Magical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Shaboozey", + "playlist_title": "Good News", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "guid": "fbabc154-3216-7076-b7e9-cc4ef2920ae5", + "path": "z://MP4\\Stingray Karaoke\\Shaboozey - Good News (Karaoke Version).mp4", + "title": "Good News" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Bed Chem", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "746be54f-dfe6-f096-a00b-f3b5f98f816a", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Bed Chem (Karaoke Version).mp4", + "title": "Bed Chem" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Ain't Coming Back", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d444fad-0e1a-fe28-0c43-2a505a6a49da", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Aint Comin Back (feat Post Malone.mp4", + "title": "I Aint Comin Back" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Drake", + "title": "Nokia", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kendrick Lamar", + "title": "TV Off", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kendrick Lamar", + "title": "Squabble Up", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 1, + "missing_count": 3, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2024 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tommy Richman", + "playlist_title": "Million Dollar Baby", + "found_song": { + "artist": "Tommy Richman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e04622d-2c44-b67e-ef19-5f23d74e6bb2", + "path": "z://MP4\\Sing King Karaoke\\Tommy Richman - MILLION DOLLAR BABY (Karaoke Version).mp4", + "title": "MILLION DOLLAR BABY" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jack Harlow", + "playlist_title": "Lovin On Me", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6cf30417-3cb7-d86c-1e32-bb65adf78cee", + "path": "z://MP4\\Sing King Karaoke\\Jack Harlow - Lovin On Me.mp4", + "title": "Lovin On Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "SZA", + "playlist_title": "Saturn", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96afb253-b553-712c-d082-9e55862545cf", + "path": "z://MP4\\Sing King Karaoke\\SZA - Saturn (Karaoke Version).mp4", + "title": "Saturn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Please Please Please", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "32dd3728-cd72-8ff6-c2bb-83b4f04e546c", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Please Please Please (Karaoke Version).mp4", + "title": "Please Please Please" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Zach Bryan", + "playlist_title": "Pink Skies", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "777b38d4-41f7-da76-e60e-f5dd73f93bde", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Pink Skies (Karaoke Version).mp4", + "title": "Pink Skies" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dasha", + "playlist_title": "Austin", + "found_song": { + "artist": "Dasha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5161a767-35e4-f957-16c8-f0f1e25910c6", + "path": "z://MP4\\Sing King Karaoke\\Dasha - Austin.mp4", + "title": "Austin" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Doja Cat", + "playlist_title": "Agora Hills", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ee009ff-d4b1-b932-abfd-853e86523af3", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Agora Hills.mp4", + "title": "Agora Hills" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Luke Combs", + "playlist_title": "Ain't No Love In Oklahoma", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "44cce20d-99ed-54c0-0be8-75c75ab92f6a", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Ain't No Love In Oklahoma.mp4", + "title": "Ain't No Love In Oklahoma" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chappell Roan", + "playlist_title": "Hot To Go!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f528176f-b611-7406-cc2e-74606f508395", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - HOT TO GO! (Karaoke Version).mp4", + "title": "HOT TO GO!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Feather", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61fcc1dd-9caa-8c9c-297d-9db3fbac12dd", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Feather (Karaoke Version).mp4", + "title": "Feather" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Tyla", + "playlist_title": "Water", + "found_song": { + "artist": "Tyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3cb2600a-0b77-85d1-5d2a-ad2f0e356e80", + "path": "z://MP4\\Sing King Karaoke\\Tyla - Water.mp4", + "title": "Water" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jelly Roll", + "playlist_title": "I Am Not Okay", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6055234-c952-8f64-e6be-c7918a583d44", + "path": "z://MP4\\Sing King Karaoke\\Jelly Roll - I Am Not Okay.mp4", + "title": "I Am Not Okay" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Texas Hold 'Em", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7217242c-c010-274f-08c6-6148f30b5944", + "path": "z://MP4\\Stingray Karaoke\\Beyonce - Texas Hold Em.mp4", + "title": "Texas Hold 'Em" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Eminem", + "playlist_title": "Houdini", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b6cd797-9d56-5f32-20d6-00d837596c75", + "path": "z://MP4\\Sing King Karaoke\\Eminem - Houdini (Karaoke Version).mp4", + "title": "Houdini" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Post Malone", + "playlist_title": "Pour Me A Drink", + "found_song": { + "artist": "Post Malone ft. Blake Shelton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "910f8d9a-cbb3-979e-f471-ed68bd8c45f2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Post Malone feat Blake Shelton - Pour Me A Drink (Without Backing Vocals) -.mp4", + "title": "Pour Me A Drink" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Flo Milli", + "playlist_title": "Never Lose Me", + "found_song": { + "artist": "Flo Milli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77285d76-662b-bcda-75eb-2803f94d9856", + "path": "z://MP4\\Sing King Karaoke\\Flo Milli - Never Lose Me.mp4", + "title": "Never Lose Me" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jimin", + "playlist_title": "Who", + "found_song": { + "artist": "Jimin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "959de075-da03-a27d-276e-cde34fc2bc6d", + "path": "z://MP4\\Sing King Karaoke\\Jimin - Who (Karaoke Version).mp4", + "title": "Who" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Djo", + "playlist_title": "End Of Beginning", + "found_song": { + "artist": "Djo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e114e7b-714d-5d29-78f9-a0a9b64bdabe", + "path": "z://MP4\\Sing King Karaoke\\Djo - End of Beginning (Karaoke Version).mp4", + "title": "End of Beginning" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "We Can't Be Friends (Wait For Your Love)", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e328b766-e4c6-702e-2714-68b3d0ea5a70", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - We Cant Be Friends (Wait For Your Love.mp4", + "title": "We Can't Be Friends (Wait For Your Love)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fortnight", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41d574e0-19b7-8737-cef4-d62b635989de", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Fortnight.mp4", + "title": "Fortnight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Can Do It With A Broken Heart", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7563f047-1b3f-1f28-8a64-d98fe54e6383", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - I Can Do It With A Broken Heart.mp4", + "title": "I Can Do It With A Broken Heart" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 16, + "artist": "Future, Metro Boomin & Kendrick Lamar", + "title": "Like That", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Morgan Wallen", + "title": "Cowgirls", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Taylor Swift", + "title": "Cruel Summer [re-release]", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Marshmello", + "title": "Miles On It", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Morgan Wallen", + "title": "Lies Lies Lies", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "21 Savage", + "title": "Redrum", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "GloRilla", + "title": "Wanna Be", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Kanye West and Ty Dolla $ign", + "title": "Carnival", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Thinkin' Bout Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Taylor Swift", + "title": "Is It Over Now? (Taylor's Version)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 3, + "missing_count": 10, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2023 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "Kill Bill", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a876e5f-7a4b-9714-8db1-efc3d1d36f83", + "path": "z://MP4\\Sing King Karaoke\\SZA - Kill Bill (Karaoke Version).mp4", + "title": "Kill Bill" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rema", + "playlist_title": "Calm Down", + "found_song": { + "artist": "Rema &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bcb537-1967-4ef3-86d1-f7ffb2c01b76", + "path": "z://MP4\\Sing King Karaoke\\Rema & Selena Gomez - Calm Down.mp4", + "title": "Calm Down" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Vampire", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac92be2a-60f8-6618-ce9b-be72b1e3bb3f", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - vampire (Karaoke Version).mp4", + "title": "vampire" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Toosii", + "playlist_title": "Favorite Song", + "found_song": { + "artist": "Toosii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57bccd0f-2a6f-c34e-dfa1-e92b8cde5062", + "path": "z://MP4\\Sing King Karaoke\\Toosii - Favorite Song.mp4", + "title": "Favorite Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jelly Roll", + "playlist_title": "Need A Favor", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5a0228e-137f-97e3-95d1-28af37ac9b4c", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Need A Favor.mp4", + "title": "Need A Favor" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dua Lipa", + "playlist_title": "Dance The Night", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5e2cac5-b9e1-09e1-a77e-75ffadf54edf", + "path": "z://MP4\\VocalStarKaraoke\\Dua Lipa - Dance The Night.mp4", + "title": "Dance The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "PinkPantheress", + "playlist_title": "Boy's A Liar, Pt. 2", + "found_song": { + "artist": "PinkPantheress, Ice Spice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3dfdf31-08cc-c16d-8977-05487e381c5c", + "path": "z://MP4\\Sing King Karaoke\\Pink Pantheress, Ice Spice - Boys a liar Pt 2.mp4", + "title": "Boy's a liar Pt. 2" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Eslabon Armado", + "playlist_title": "Ella Baila Sola", + "found_song": { + "artist": "Eslabon Armado, Peso Pluma", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2648069d-5072-644a-44e6-eae465a542f7", + "path": "z://MP4\\Sing King Karaoke\\Eslabon Armado, Peso Pluma - Ella Baila Sola (Karaoke Version).mp4", + "title": "Ella Baila Sola" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kane Brown", + "playlist_title": "Thank God", + "found_song": { + "artist": "Kane Brown, Katelyn Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "957b98a1-995c-9294-006c-bd61399f15f9", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown, Katelyn Brown - Thank God.mp4", + "title": "Thank God" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Coi Leray", + "playlist_title": "Players", + "found_song": { + "artist": "Coi Leray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5720c368-afb8-92c8-a9e7-fb0232e71bba", + "path": "z://MP4\\Sing King Karaoke\\Coi Leray - Players.mp4", + "title": "Players" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Grupo Frontera", + "playlist_title": "Un x100to", + "found_song": { + "artist": "Grupo Frontera, Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33584a9f-276d-995e-2457-622bf4a79605", + "path": "z://MP4\\Sing King Karaoke\\Grupo Frontera, Bad Bunny - un x100to (Karaoke Version).mp4", + "title": "un x100to" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Billie Eilish", + "playlist_title": "What Was I Made For?", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8244850e-b327-bf77-a6fa-562f7dd5bcfb", + "path": "z://MP4\\KaraokeOnVEVO\\Billie Eilish - What Was I Made For.mp4", + "title": "What Was I Made For?" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "RAYE", + "playlist_title": "Escapism", + "found_song": { + "artist": "RAYE, 070 Shake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee7e72fd-cf4b-3fda-ed55-251a2032a117", + "path": "z://MP4\\Sing King Karaoke\\RAYE, 070 Shake - Escapism.mp4", + "title": "Escapism." + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Post Malone", + "playlist_title": "Chemical", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b47b013c-2d76-f82f-3717-67c1b33e7030", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone - Chemical.mp4", + "title": "Chemical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Used To Be Young", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42ccee5-1e69-598d-765a-e51a838af884", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Used To Be Young (Karaoke Version).mp4", + "title": "Used To Be Young" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Karma", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e00aa6b4-04de-c7f8-dd13-b96a9044e1d0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Karma.mp4", + "title": "Karma" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lavender Haze", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9cd9e1f-f0f9-060a-588d-e2b0120ccaaf", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lavender Haze (Karaoke Version).mp4", + "title": "Lavender Haze" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Metro Boomin, The Weeknd & 21 Savage", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Weeknd", + "title": "Die For You [re-release]", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Morgan Wallen", + "title": "Thinkin' Bout Me", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Taylor Swift", + "title": "Cruel Summer [re-release]", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Gunna", + "title": "Fukumean", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Lil Durk", + "title": "All My Life", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Miguel", + "title": "Sure Thing [re-release]", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nicki Minaj and Ice Spice", + "title": "Barbie World", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Uzi Vert", + "title": "Just Wanna Rock", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Yng Lvcas", + "title": "La Bebe", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bailey Zimmerman", + "title": "Religiously", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Drake", + "title": "Rich Flex", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Drake", + "title": "Search & Rescue", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Fifty Fifty", + "title": "Cupid", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Morgan Wallen", + "title": "One Thing At A Time", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Metro Boomin, Future & Chris Brown", + "title": "Superhero (Heroes & Villains)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 3, + "missing_count": 16, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2022 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Stay", + "found_song": { + "artist": "The Kid LAROI & Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8f8f2877-e968-a875-df4c-9ec9c197398e", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI & Justin Bieber - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elton John", + "playlist_title": "Cold Heart (PNAU Remix)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "332a01a2-856f-db65-9a20-d560ba04c8f0", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Cold Heart (PNAU Remix).mp4", + "title": "Cold Heart (PNAU Remix)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Post Malone", + "playlist_title": "I Like You (A Happier Song)", + "found_song": { + "artist": "Post Malone ft. Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03fad94f-364f-6370-a8d5-33464fac6bad", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone Featuring Doja Cat - I Like You (A Happier Song.mp4", + "title": "I Like You (A Happier Song)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lil Nas X", + "playlist_title": "That's What I Want", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c0dcb0c-51a7-3ab3-4e8b-4499b1296240", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Thats What I Want.mp4", + "title": "That's What I Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Adele", + "playlist_title": "Easy On Me", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "f71193d0-9484-56ca-5627-29eb00d15dff", + "path": "z://MP4\\TheKARAOKEChannel\\Adele - Easy On Me (Karaoke With Lyrics).mp4", + "title": "Easy On Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Nicky Youre", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Lil Nas X", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "One Right Now", + "found_song": { + "artist": "Post Malone ft. The Weeknd", + "disabled": false, + "favorite": false, + "guid": "c4191576-b710-c254-8eb1-a80d0a77ed5c", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, The Weeknd - One Right Now (Karaoke Version).mp4", + "title": "One Right Now" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Muni Long", + "playlist_title": "Hrs And Hrs", + "found_song": { + "artist": "Muni Long", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eefed0d-059d-63e4-4d3f-74af08d5c7e0", + "path": "z://MP4\\Sing King Karaoke\\Muni Long - Hrs And Hrs.mp4", + "title": "Hrs And Hrs" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 31, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Future", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kodak Black", + "title": "Super Gremlin", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bad Bunny", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kate Bush", + "title": "Running Up That Hill [re-release]", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz", + "title": "We Don't Talk About Bruno", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Drake", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Gunna and Future", + "title": "Pushin P", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jessica Darrow", + "title": "Surface Pressure", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 2, + "missing_count": 10, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2022 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "AJR", + "playlist_title": "World's Smallest Violin", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6404ba7-2343-c0e3-b8a0-d5922e5d2d33", + "path": "z://MP4\\Sing King Karaoke\\AJR - World's Smallest Violin (Karaoke Version).mp4", + "title": "World's Smallest Violin" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Metallica", + "playlist_title": "Master Of Puppets", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "a514c91f-1c12-800b-ca4e-175849d12199", + "path": "z://CDG\\Various\\Metallica - Master Of Puppets.mp3", + "title": "Master Of Puppets" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foo Fighters", + "playlist_title": "My Hero", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "3dfcf4f9-6d34-c0f8-b91f-1018b7c15e9e", + "path": "z://CDG\\Various\\Foo Fighters - My Hero.mp3", + "title": "My Hero" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Elvis Presley", + "playlist_title": "Suspicious Minds", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "6709163c-b00f-db78-0f0d-cbb3b3789a32", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Suspicious Minds (Karaoke Version).mp4", + "title": "Suspicious Minds" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Billie Eilish", + "playlist_title": "TV", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6f7a6bcb-24d7-83cc-446c-752b3b79e814", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - TV (Karaoke Version).mp4", + "title": "TV" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Maneskin", + "playlist_title": "Supermodel", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f35248a-e0e5-0d64-2b05-28ebd9fac046", + "path": "z://MP4\\VocalStarKaraoke\\Maneskin - Supermodel.mp4", + "title": "Supermodel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Sharks", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a99c7b-c4a9-9c7e-f05b-44d11dddfd08", + "path": "z://MP4\\KaraokeOnVEVO\\Imagine Dragons - Sharks.mp4", + "title": "Sharks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Nessa Barrett", + "playlist_title": "Die First", + "found_song": { + "artist": "Nessa Barrett", + "disabled": false, + "favorite": false, + "guid": "9e6e11e5-c8c8-8f4c-414e-656f8633af72", + "path": "z://MP4\\Sing King Karaoke\\Nessa Barrett - die first (Karaoke Version).mp4", + "title": "die first" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billie Eilish", + "playlist_title": "The 30th", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7c85452-2038-6a65-6493-a9684c21e1d8", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - The 30th.mp4", + "title": "The 30th" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Falling In Reverse", + "playlist_title": "Voices In My Head", + "found_song": { + "artist": "Falling In Reverse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0cc1a13d-0c54-fa9c-fe54-640af57f22aa", + "path": "z://MP4\\KaraokeOnVEVO\\Falling In Reverse - Voices In My Head.mp4", + "title": "Voices In My Head" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 37, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "There'd Better Be A Mirrorball", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afd08dd-133e-91e8-fcb3-3e1db5ccc3fc", + "path": "z://MP4\\VocalStarKaraoke\\Arctic Monkeys - Thered Better Be A Mirrorball.mp4", + "title": "Thered Better Be A Mirrorball" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "The Killers", + "playlist_title": "Boy", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "192ec929-cd5b-f6d2-a3ca-ef89f1c2a33c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Bones.mp4", + "title": "Bones" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "AJR", + "playlist_title": "I Won't", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18475993-d9b5-96d8-cfeb-4acdcce60112", + "path": "z://MP4\\VocalStarKaraoke\\AJR - I Wont.mp4", + "title": "I Wont" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Foo Fighters", + "title": "Everlong", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "title": "New Gold", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cafune", + "title": "Tek It", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Beach Weather", + "title": "Sex, Drugs, Etc.", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Demi Lovato", + "title": "29", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Pierce The Veil", + "title": "Pass The Nirvana", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "TALK", + "title": "Run Away To Mars", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The 1975", + "title": "I'm In Love With You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Zach Williams", + "title": "Heart Of God", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Gorillaz Featuring Thundercat", + "title": "Cracker Island", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "CORPSE, Scarlxrd & Kordhell", + "title": "Misa Misa!", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Rex Orange County", + "title": "Amazing", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Zach Bryan", + "title": "Sun To Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Zach Bryan", + "title": "Heavy Eyes", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Steve Lacy", + "title": "Mercury", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Steve Lacy Featuring Foushee", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Shinedown", + "title": "Daylight", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Suki Waterhouse", + "title": "Good Looking", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Panic! At The Disco", + "title": "Don't Let The Light Go Out", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Rex Orange County", + "title": "The Shade", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Steve Lacy", + "title": "Helmet", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Disturbed", + "title": "Hey You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Vance Joy", + "title": "Clarity", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 3, + "missing_count": 26, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2022 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 38, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Vette Motors", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "YG", + "playlist_title": "Toxic", + "found_song": { + "artist": "BoyWithUke", + "disabled": false, + "favorite": false, + "guid": "bc80717a-6347-f5cf-7436-785c3e1c9f97", + "path": "z://MP4\\Sing King Karaoke\\BoyWithUke - Toxic (Karaoke Version).mp4", + "title": "Toxic" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lil Baby", + "title": "Detox", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lil Baby", + "title": "In A Minute", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Yeat", + "title": "Talk", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tems", + "title": "Free Mind", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lil Tjay", + "title": "Beat The Odds", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake", + "title": "Sticky", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rod Wave", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Beyonce", + "title": "Alien Superstar", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Future & Lil Baby", + "title": "Big Time", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Post Malone Featuring Roddy Ricch", + "title": "Cooped Up", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "City Girls & Usher", + "title": "Good Love", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ice Spice", + "title": "Munch (Feelin' U)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Diddy & Bryson Tiller", + "title": "Gotta Move On", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DJ Khaled Featuring Juice WRLD", + "title": "Juice WRLD Did", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "GloRilla", + "title": "Blessed", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Finesse2Tymes", + "title": "Back End", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "NAV, Travis Scott & Lil Baby", + "title": "Never Sleep", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Moneybagg Yo", + "title": "See Wat I'm Sayin", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "title": "Die Hard", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "title": "Cash In Cash Out", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Beyonce", + "title": "Church Girl", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Rod Wave", + "title": "Sweet Little Lies", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Chris Brown Featuring WizKid", + "title": "Call Me Everyday", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Future", + "title": "Love You Better", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Lil Baby, 42 Dugg & Veeze", + "title": "U-Digg", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rod Wave Featuring Jack Harlow", + "title": "Yungen", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 2, + "missing_count": 39, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2022 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Louis Tomlinson", + "playlist_title": "Bigger Than Me", + "found_song": { + "artist": "Louis Tomlinson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46454cde-26d7-397b-d629-0f7a863301f0", + "path": "z://MP4\\KaraokeOnVEVO\\Louis Tomlinson - Bigger Than Me.mp4", + "title": "Bigger Than Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Post Malone Featuring Doja Cat", + "title": "I Like You (A Happier Song)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Charlie Puth Featuring Jung Kook", + "title": "Left And Right", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Elton John & Britney Spears", + "title": "Hold Me Closer", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Black Eyed Peas, Shakira + David Guetta", + "title": "Don't You Worry", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kane Brown", + "title": "Grand", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull + Zac Brown", + "title": "Can't Stop Us Now", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ellie Goulding Featuring Big Sean", + "title": "Easy Lover", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Kx5 Featuring Hayla", + "title": "Escape", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Macklemore Featuring Windser", + "title": "Maniac", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "David Guetta & Bebe Rexha", + "title": "I'm Good (Blue)", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd, Maren Morris & BEAUZ", + "title": "Make You Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 1, + "missing_count": 17, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2022 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "JVKE", + "playlist_title": "Golden Hour", + "found_song": { + "artist": "JVKE", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3cdcbf9-4e69-95dd-8d20-5f66ec00509e", + "path": "z://MP4\\Sing King Karaoke\\JVKE - golden hour (Karaoke Version).mp4", + "title": "golden hour" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Post Malone Featuring Doja Cat", + "title": "I Like You (A Happier Song)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Bad Bunny & Chencho Corleone", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Elton John & Britney Spears", + "title": "Hold Me Closer", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lil Baby", + "title": "Detox", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Baby", + "title": "In A Minute", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Charlie Puth Featuring Jung Kook", + "title": "Left And Right", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Bad Bunny", + "title": "Efecto", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Bailey Zimmerman", + "title": "Fall In Love", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Yeat", + "title": "Talk", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Karol G", + "title": "Provenza", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "David Guetta & Bebe Rexha", + "title": "I'm Good (Blue)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Karol G x Maldy", + "title": "Gatubela", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Burna Boy", + "title": "Last Last", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Tems", + "title": "Free Mind", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Justin Moore", + "title": "With A Woman You Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Ingrid Andress With Sam Hunt", + "title": "Wishful Drinking", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Bad Bunny & Rauw Alejandro", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Rosalia", + "title": "Despecha", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bad Bunny & Bomba Estereo", + "title": "Ojitos Lindos", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil Tjay", + "title": "Beat The Odds", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Drake", + "title": "Sticky", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Gabby Barrett", + "title": "Pick Me Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Despues de La Playa", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bailey Zimmerman", + "title": "Where It Ends", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Rod Wave", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Bad Bunny", + "title": "Neverita", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Tarot", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Manuel Turizo", + "title": "La Bachata", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Lee Brice", + "title": "Soul", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Rema & Selena Gomez", + "title": "Calm Down", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bizarrap & Quevedo", + "title": "Bzrp Music Sessions, Vol. 52", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Romeo Santos & Justin Timberlake", + "title": "Sin Fin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 2, + "missing_count": 59, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2022 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lainey Wilson", + "playlist_title": "Heart Like A Truck", + "found_song": { + "artist": "Lainey Wilson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0389c8e3-bb2b-307c-e817-4305e4281bd6", + "path": "z://MP4\\Sing King Karaoke\\Lainey Wilson - Heart Like A Truck.mp4", + "title": "Heart Like A Truck" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Carly Pearce", + "playlist_title": "What He Didn't Do", + "found_song": { + "artist": "Carly Pearce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b1f9dc08-25a7-f221-709d-56012e8049be", + "path": "z://MP4\\VocalStarKaraoke\\Carly Pearce - What He Didnt Do.mp4", + "title": "What He Didnt Do" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Bailey Zimmerman", + "title": "Fall In Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Justin Moore", + "title": "With A Woman You Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Ingrid Andress With Sam Hunt", + "title": "Wishful Drinking", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gabby Barrett", + "title": "Pick Me Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bailey Zimmerman", + "title": "Where It Ends", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lee Brice", + "title": "Soul", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Corey Kent", + "title": "Wild As Her", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Old Dominion", + "title": "No Hard Feelings", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "HARDY Featuring Lainey Wilson", + "title": "Wait In The Truck", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Chris Stapleton", + "title": "Joy Of My Life", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Kelsea Ballerini", + "title": "Heartfirst", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jimmie Allen", + "title": "Down Home", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Zac Brown Band", + "title": "Out In The Middle", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BRELAND Featuring Lady A", + "title": "Told You I Could Drink", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Hailey Whitters", + "title": "Everything She Ain't", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "David Morris", + "title": "Dutton Ranch Freestyle", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Jason Aldean", + "title": "That's What Tequila Does", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Dustin Lynch", + "title": "Party Mode", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Little Big Town", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Parker McCollum", + "title": "Handle On You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Walker Hayes", + "title": "Y'all Life", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Drew Green", + "title": "Good Ol' Man", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Luke Combs", + "title": "Tomorrow Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jordan Davis", + "title": "Next Thing You Know", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Frank Ray", + "title": "Country'd Look Good On You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sam Hunt", + "title": "Water Under The Bridge", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Can't Have Mine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 2, + "missing_count": 36, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Dreams", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a354524b-3343-e0a7-e332-11645e2a442f", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Dreams (Karaoke Version).mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Billie Eilish", + "playlist_title": "Your Power", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb70b0d7-0df6-e135-d35e-c1dfb460de68", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Your Power (Karaoke Version).mp4", + "title": "Your Power" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Male Fantasy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6462e7a8-10d8-fd2a-56de-660ee8662c07", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Male Fantasy (Karaoke Version).mp4", + "title": "Male Fantasy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Brutal", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "bd4b44d5-b689-ee64-90bd-d1314912c0e4", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - brutal (Karaoke Version).mp4", + "title": "brutal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Maneskin", + "playlist_title": "I Wanna Be Your Slave", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc17f1fb-e9d1-cf02-2082-9a46644f9b1e", + "path": "z://MP4\\KaraokeOnVEVO\\Maneskin - I Wanna Be Your Slave.mp4", + "title": "I Wanna Be Your Slave" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Follow You", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a41bd323-8641-0aff-b418-b1ae370b0a43", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Follow You (Karaoke Version).mp4", + "title": "Follow You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Surf Curse", + "playlist_title": "Freaks", + "found_song": { + "artist": "Surf Curse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0bd2b48-baa9-1576-55c4-df5ceaa7270a", + "path": "z://MP4\\Sing King Karaoke\\Surf Curse - Freaks (Karaoke Version).mp4", + "title": "Freaks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Wrecked", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "e45ec851-8ee5-b34e-c10d-61c4e181a3bc", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Wrecked (Karaoke Version).mp4", + "title": "Wrecked" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lorde", + "playlist_title": "Solar Power", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ad46914-fe77-dedf-8524-aebd9009e0a2", + "path": "z://MP4\\VocalStarKaraoke\\Lorde - Solar Power.mp4", + "title": "Solar Power" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "AURORA", + "playlist_title": "Runaway", + "found_song": { + "artist": "Aurora", + "disabled": false, + "favorite": false, + "guid": "a9e2158c-f693-e6ea-3fe4-84582ec646dd", + "path": "z://MP4\\Sing King Karaoke\\Aurora - Runaway (Karaoke Version).mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Higher Power", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "404361fa-961d-87c5-d5d7-20ad64059c3a", + "path": "z://MP4\\KaraFun Karaoke\\Higher Power - Coldplay Karaoke Version KaraFun.mp4", + "title": "Higher Power" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Vance Joy", + "playlist_title": "Missing Piece", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abecd49e-f5a8-e350-0fe3-29050d9d8cff", + "path": "z://MP4\\VocalStarKaraoke\\Vance Joy - Missing Piece.mp4", + "title": "Missing Piece" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "girl in red", + "playlist_title": "Serotonin", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ab9a71d-b0d0-85a0-1c02-c7401e86cdc7", + "path": "z://MP4\\VocalStarKaraoke\\girl in red - Serotonin.mp4", + "title": "Serotonin" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "John Mayer", + "playlist_title": "Last Train Home", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c045d59-7d96-b9a2-cb8c-28616f15073a", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Mayer - Last Train Home.mp4", + "title": "Last Train Home" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "PinkPantheress", + "playlist_title": "Passion", + "found_song": { + "artist": "PinkPantheress", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b01737d-bb96-8ced-b2f8-1e3fb22224c9", + "path": "z://MP4\\Sing King Karaoke\\PinkPantheress - Passion.mp4", + "title": "Passion" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "twenty one pilots", + "playlist_title": "Shy Away", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "992cbb26-6eba-d3b5-9c9b-883ac5f62ec4", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Shy Away (Karaoke Version).mp4", + "title": "Shy Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Billie Eilish", + "playlist_title": "OverHeated", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "703d04b5-3810-8c68-5971-c511811e98db", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Bored (Karaoke Version).mp4", + "title": "Bored" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Billie Eilish", + "title": "Billie Bossa Nova", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Billie Eilish", + "title": "Oxytocin", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billie Eilish", + "title": "I Didn't Change My Number", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Billie Eilish", + "title": "Goldwing", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Willow Featuring Travis Barker", + "title": "transparentsoul", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Billie Eilish", + "title": "Everybody Dies", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Billie Eilish", + "title": "Not My Responsibility", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Weezer", + "title": "All My Favorite Songs", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Big Red Machine Featuring Taylor Swift", + "title": "Renegade", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "PinkPantheress", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rise Against", + "title": "Nowhere Generation", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Modest Mouse", + "title": "We Are Between", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bleachers", + "title": "Stop Making This Hurt", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "title": "Love Race", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lorde", + "title": "Stoned At The Nail Salon", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Foo Fighters", + "title": "Making A Fire", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "bbno$ Featuring Rich Brian", + "title": "Edamame", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Five Finger Death Punch", + "title": "Darkness Settles In", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Clairo", + "title": "Amoeba", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 2, + "missing_count": 22, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 39, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Nevada", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "title": "Peaches", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Roddy Ricch", + "title": "Late At Night", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Doja Cat", + "title": "Ain't Shit", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "BIA Featuring Nicki Minaj", + "title": "Whole Lotta Money", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake Featuring Lil Baby", + "title": "Wants And Needs", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Tjay Featuring 6LACK", + "title": "Calling My Phone", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moneybagg Yo", + "title": "Time Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rod Wave", + "title": "Tombstone", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "City Girls", + "title": "Twerkulator", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "title": "WUSYANAME", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Young Thug & Gunna", + "title": "Ski", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "DaBaby", + "title": "Red Light Green Light", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "T-Pain & Kehlani", + "title": "I Like Dat", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "42 Dugg & Roddy Ricch", + "title": "4 Da Gang", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brent Faiyaz Featuring Drake", + "title": "Wasting Time", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "42 Dugg Featuring Future", + "title": "Maybach", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Trippie Redd & Playboi Carti", + "title": "Miss The Rage", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "title": "Holy Smokes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Wale Featuring Chris Brown", + "title": "Angles", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Isaiah Rashad", + "title": "RIP Young", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cochise & $NOT", + "title": "Tell Em", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "J. Cole & Lil Baby", + "title": "pride.is.the.devil", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "EST Gee", + "title": "Lick Back", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 1, + "missing_count": 42, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2021 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Weeknd", + "playlist_title": "Take My Breath", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "d8d25e8d-1897-81e7-ad99-6788f0ca053c", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Take My Breath (Karaoke Version).mp4", + "title": "Take My Breath" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Maroon 5", + "playlist_title": "Lost", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ed2b50c-93cc-309f-a1a3-ec554d8854aa", + "path": "z://MP4\\VocalStarKaraoke\\Maroon 5 - Lost.mp4", + "title": "Lost" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tesher X Jason Derulo", + "playlist_title": "Jalebi Baby", + "found_song": { + "artist": "Tesher X Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b2b4a0a-9379-2e1d-1e47-b5b10dc99516", + "path": "z://MP4\\VocalStarKaraoke\\Tesher X Jason Derulo - Jalebi Baby.mp4", + "title": "Jalebi Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello, Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "4978b052-d318-2d5b-c488-c482f508a80a", + "path": "z://MP4\\Sing King Karaoke\\Marshmello, Jonas Brothers - Leave Before You Love Me (Karaoke Version).mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Doja Cat Featuring SZA", + "title": "Kiss Me More", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "title": "Peaches", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bazzi", + "title": "I Like That", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Pop Smoke Featuring Dua Lipa", + "title": "Demeanor", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tones And I", + "title": "Cloudy Day", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Dixie Featuring Rubi Rose", + "title": "Psycho", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Alessia Cara", + "title": "Sweet Dream", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "title": "Lifetime", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 2, + "missing_count": 17, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Bad Bunny", + "playlist_title": "Yonaguni", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "guid": "eb1195b0-30a6-b4e4-6d54-4f08ed7032a5", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Yonaguni (Karaoke Version).mp4", + "title": "Yonaguni" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Favorite Crime", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "374be4fd-440e-47ed-3174-2086d13083f2", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - favorite crime (Karaoke Version).mp4", + "title": "favorite crime" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Happier", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "f3ce170a-3513-461f-a60a-fd1c869fc6b7", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - happier (Karaoke Version).mp4", + "title": "happier" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello, Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "4978b052-d318-2d5b-c488-c482f508a80a", + "path": "z://MP4\\Sing King Karaoke\\Marshmello, Jonas Brothers - Leave Before You Love Me (Karaoke Version).mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Rauw Alejandro", + "playlist_title": "Todo de Ti", + "found_song": { + "artist": "Rauw Alejandro", + "disabled": false, + "favorite": false, + "guid": "046e251c-8487-283c-43c5-53bb8d19666f", + "path": "z://MP4\\Sing King Karaoke\\Rauw Alejandro - Todo De Ti (Karaoke Version).mp4", + "title": "Todo De Ti" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Doja Cat Featuring SZA", + "title": "Kiss Me More", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The Weeknd & Ariana Grande", + "title": "Save Your Tears", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "title": "Peaches", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "BTS", + "title": "Permission To Dance", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Roddy Ricch", + "title": "Late At Night", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Maroon 5 Featuring Megan Thee Stallion", + "title": "Beautiful Mistakes", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chris Young + Kane Brown", + "title": "Famous Friends", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Aventura x Bad Bunny", + "title": "Volvi", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Saweetie Featuring Doja Cat", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Doja Cat", + "title": "Ain't Shit", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "BIA Featuring Nicki Minaj", + "title": "Whole Lotta Money", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Thomas Rhett", + "title": "Country Again", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jason Aldean & Carrie Underwood", + "title": "If I Didn't Love You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Justin Moore", + "title": "We Didn't Have Much", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Old Dominion", + "title": "I Was On A Boat That Day", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Farruko", + "title": "Pepas", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Billie Eilish", + "title": "Billie Bossa Nova", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Rod Wave", + "title": "Tombstone", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Billie Eilish", + "title": "Oxytocin", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jason Aldean", + "title": "Blame It On You", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Billie Eilish", + "title": "I Didn't Change My Number", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "title": "AM", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "title": "Fiel", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 4, + "missing_count": 57, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2021 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Sand In My Boots", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dbcea48b-298f-718c-dee1-7d626739c6fa", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Sand In My Boots (Karaoke Version).mp4", + "title": "Sand In My Boots" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ingrid Andress", + "playlist_title": "Lady Like", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "c97cf043-8f7c-1ee3-f04e-5091e75a653e", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Andress - Lady Like (Karaoke).mp4", + "title": "Lady Like" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Same Boat", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc31a2e9-645c-8eea-a938-89a5fc63af97", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Same Boat.mp4", + "title": "Same Boat" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Kelsea Ballerini & LANY", + "playlist_title": "I Quit Drinking", + "found_song": { + "artist": "Kelsea Ballerini & LANY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd4218e5-b795-8ca9-c348-1ce62b3bfb9e", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini & LANY - I Quit Drinking.mp4", + "title": "I Quit Drinking" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Chris Young + Kane Brown", + "title": "Famous Friends", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Thomas Rhett", + "title": "Country Again", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jason Aldean & Carrie Underwood", + "title": "If I Didn't Love You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Justin Moore", + "title": "We Didn't Have Much", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Old Dominion", + "title": "I Was On A Boat That Day", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Luke Combs", + "title": "Cold As You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Carly Pearce", + "title": "Next Girl", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kenny Chesney", + "title": "Knowing You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis Featuring Luke Bryan", + "title": "Buy Dirt", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "title": "Thinking 'Bout You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Parker McCollum", + "title": "To Be Loved By You", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Lady A", + "title": "Like A Lady", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jimmie Allen & Brad Paisley", + "title": "Freedom Was A Highway", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Michael Ray", + "title": "Whiskey And Rain", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jon Pardi", + "title": "Tequila Little Time", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Priscilla Block", + "title": "Just About Over You", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dierks Bentley, Breland & HARDY", + "title": "Beers On Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "title": "Half Of My Hometown", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Russell Dickerson", + "title": "Home Sweet", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "HARDY", + "title": "Give Heaven Some Hell", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Chase Matthew", + "title": "County Line", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Aaron Lewis", + "title": "Am I The Only One", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Dan + Shay", + "title": "Good Things", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Breland Featuring Keith Urban", + "title": "Throw It Back", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Brett Young", + "title": "Not Yet", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Callista Clark", + "title": "It's 'Cause I Am", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Garth Brooks", + "title": "That's What Cowboys Do", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Riley Green", + "title": "If It Wasn't For Trucks", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 3, + "missing_count": 38, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2020 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Clairo", + "playlist_title": "Sofia", + "found_song": { + "artist": "Clairo", + "disabled": false, + "favorite": false, + "guid": "493d606a-1d5a-28a9-c840-9e209ba21d23", + "path": "z://MP4\\Sing King Karaoke\\Clairo - Sofia (Karaoke Version).mp4", + "title": "Sofia" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Plastic Hearts", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "22a03a3f-b4dd-a974-ecf2-ffb3095d4d16", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Plastic Hearts (Karaoke Version).mp4", + "title": "Plastic Hearts" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Machine Gun Kelly", + "playlist_title": "Bloody Valentine", + "found_song": { + "artist": "Machine Gun Kelly", + "disabled": false, + "favorite": false, + "guid": "9dfb5697-7255-7932-697e-6ddffa475e3e", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly - Bloody Valentine (Karaoke Version).mp4", + "title": "Bloody Valentine" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "BANNERS", + "playlist_title": "Someone To You", + "found_song": { + "artist": "BANNERS", + "disabled": false, + "favorite": false, + "guid": "b004ff62-a2d1-dcdf-7233-c390f1564789", + "path": "z://MP4\\Sing King Karaoke\\BANNERS - Someone To You (Karaoke Version).mp4", + "title": "Someone To You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "347aidan", + "playlist_title": "Dancing In My Room", + "found_song": { + "artist": "347aidan", + "disabled": false, + "favorite": false, + "guid": "374e316f-cff8-a838-b906-f463d34a5315", + "path": "z://MP4\\Sing King Karaoke\\347aidan - Dancing In My Room (Karaoke Version).mp4", + "title": "Dancing In My Room" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Shame Shame", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72b20cd6-cdb9-d160-6d95-d809b7868ad5", + "path": "z://MP4\\VocalStarKaraoke\\Foo Fighters - Shame Shame.mp4", + "title": "Shame Shame" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Peach Tree Rascals", + "playlist_title": "Mariposa", + "found_song": { + "artist": "Peach Tree Rascals", + "disabled": false, + "favorite": false, + "guid": "1dc2808f-e7ac-2894-b666-7c01f6f5b51d", + "path": "z://MP4\\Sing King Karaoke\\Peach Tree Rascals - Mariposa (Karaoke Version).mp4", + "title": "Mariposa" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Cannons", + "playlist_title": "Fire For You", + "found_song": { + "artist": "Cannons", + "disabled": false, + "favorite": false, + "guid": "4a9f1e7a-e3fa-4531-cbdf-89482345a834", + "path": "z://MP4\\Sing King Karaoke\\Cannons - Fire For You (Karaoke Version).mp4", + "title": "Fire For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Penelope Scott", + "playlist_title": "Rat", + "found_song": { + "artist": "Penelope Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebc73b4b-5518-8581-a5a8-5cda5f22dc06", + "path": "z://MP4\\Sing King Karaoke\\Penelope Scott - Rat.mp4", + "title": "Rat" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Frances Forever", + "playlist_title": "Space Girl", + "found_song": { + "artist": "Frances Forever", + "disabled": false, + "favorite": false, + "guid": "01433b1a-f4a7-1c76-75a9-e5a77636718f", + "path": "z://MP4\\Sing King Karaoke\\Frances Forever - Space Girl (Karaoke Version).mp4", + "title": "Space Girl" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Stellar", + "playlist_title": "Ashes", + "found_song": { + "artist": "Stellar", + "disabled": false, + "favorite": false, + "guid": "344115df-5fc2-f00b-8fb1-319471c68760", + "path": "z://MP4\\Sing King Karaoke\\Stellar - Ashes (Karaoke Version).mp4", + "title": "Ashes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tones And I", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Tones And I", + "disabled": false, + "favorite": false, + "guid": "d6c796e8-2e23-d7cc-9fd1-daa07550d8a4", + "path": "z://MP4\\KaraFun Karaoke\\Fly Away - Tones And I Karaoke Version KaraFun.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cardigan", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c91637f-a5a9-43bc-7907-9c3d8182d2c0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - cardigan (Karaoke Version).mp4", + "title": "cardigan" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Machine Gun Kelly & Halsey", + "playlist_title": "Forget Me Too", + "found_song": { + "artist": "Machine Gun Kelly ft. Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d5b6d394-7adb-4871-9f77-6dba436554fb", + "path": "z://MP4\\VocalStarKaraoke\\Machine Gun Kelly & Halsey - Forget Me Too.mp4", + "title": "Forget Me Too" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Miley Cyrus", + "playlist_title": "High", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "7d81b646-cf91-4a51-b1ab-7bc21aa9ad2e", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - 7 Things (Karaoke Version).mp4", + "title": "7 Things" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "My Tears Ricochet", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad51718-c330-2410-cfa3-f41ef8bae403", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - My Tears Ricochet.mp4", + "title": "My Tears Ricochet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Taylor Swift", + "playlist_title": "August", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2a6763c9-0aac-b2f9-8599-8f2f4012f6f0", + "path": "z://MP4\\Stingray Karaoke\\Taylor Swift - August.mp4", + "title": "August" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "AC/DC", + "playlist_title": "Shot In The Dark", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "8946008c-7acc-d187-60e6-5286e55ad502", + "path": "z://MP4\\ACDC - Shot In The Dark (Karaoke Version).mp4", + "title": "Shot In The Dark" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "Seven", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d1c19ce-60d3-ae34-d4a1-60cb3e8e879d", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Seven.mp4", + "title": "Seven" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Royal Blood", + "playlist_title": "Trouble's Coming", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d39e4107-bf8a-211f-7d45-e588cf2d0b9d", + "path": "z://MP4\\VocalStarKaraoke\\Royal Blood - Troubles Coming.mp4", + "title": "Troubles Coming" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Juice WRLD x Marshmello", + "title": "Come & Go", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Taylor Swift Featuring Bon Iver", + "title": "Exile", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Wallows Featuring Clairo", + "title": "Are You Bored Yet?", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Miley Cyrus Featuring Billy Idol", + "title": "Night Crawling", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Miley Cyrus", + "title": "WTF Do I Know", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Miley Cyrus", + "title": "Gimme What I Want", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "All Time Low Featuring blackbear", + "title": "Monsters", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Miley Cyrus Featuring Joan Jett", + "title": "Bad Karma", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Royal & The Serpent", + "title": "Overwhelmed", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Miley Cyrus", + "title": "Zombie", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "NEEDTOBREATHE", + "title": "Who Am I", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sista_Prod Featuring Subvrbs", + "title": "Eyes Blue Like The Atlantic", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Taylor Swift", + "title": "This Is Me Trying", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Taylor Swift", + "title": "Mirrorball", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tai Verdes", + "title": "Drugs", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Machine Gun Kelly", + "title": "Drunk Face", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tame Impala", + "title": "Is It True", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Bastille", + "title": "Survivin'", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "CORPSE", + "title": "Miss You!", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Zach Bryan", + "title": "Heading South", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "ILLENIUM", + "title": "Nightlight", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Taylor Swift", + "title": "Mad Woman", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "I Prevail Featuring Delaney Jane", + "title": "Every Time You Leave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 9, + "missing_count": 24, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2020 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "H.E.R.", + "playlist_title": "Damage", + "found_song": { + "artist": "H.E.R.", + "disabled": false, + "favorite": false, + "guid": "333078e3-0881-7f29-0abe-e2b40ee54feb", + "path": "z://MP4\\Sing King Karaoke\\H.E.R. - Damage (Karaoke Version).mp4", + "title": "Damage" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Megan Thee Stallion", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Cardi B Featuring Megan Thee Stallion", + "title": "WAP", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DaBaby Featuring Roddy Ricch", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rod Wave Featuring ATR Son Son", + "title": "Rags2Riches", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "title": "The Woo", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Pop Smoke Featuring Lil Tjay", + "title": "Mood Swings", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "title": "Franchise", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "DaBaby", + "title": "Practice", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ne-Yo & Jeremih", + "title": "U 2 Luv", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "DJ Khaled Featuring Drake", + "title": "Popstar", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Future & Lil Uzi Vert", + "title": "Drankin N Smokin", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Money Man Featuring Lil Baby", + "title": "24", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "YoungBoy Never Broke Again", + "title": "Kacey Talk", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "DDG", + "title": "Moonwalking In Calabasas", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "21 Savage & Metro Boomin", + "title": "Runnin", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DaBaby Featuring Young Thug", + "title": "Blind", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Lil Yachty, Future & Playboi Carti", + "title": "Flex Up", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Meek Mill Featuring Lil Durk", + "title": "Pain Away", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Megan Thee Stallion Featuring DaBaby", + "title": "Cry Baby", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "DJ Chose Featuring BeatKing", + "title": "Thick", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "title": "Hello", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "K Camp Featuring Jacquees", + "title": "What's On Your Mind", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Ty Dolla $ign Featuring Post Malone", + "title": "Spicy", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Future & Lil Uzi Vert", + "title": "That's It", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Yung Bleu Featuring Drake", + "title": "You're Mines Still", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Juice WRLD & The Weeknd", + "title": "Smile", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "King Von Featuring Lil Durk", + "title": "Crazy Story 2.0", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Kid LAROI & Juice WRLD", + "title": "Go!", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Usher", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Big Sean Featuring Post Malone", + "title": "Wolves", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 0, + "missing_count": 45, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2020 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Zoe Wees", + "playlist_title": "Control", + "found_song": { + "artist": "Zoe Wees", + "disabled": false, + "favorite": false, + "guid": "8651018b-ef16-85b8-bebe-674b331e9550", + "path": "z://MP4\\Sing King Karaoke\\Zoe Wees - Control (Karaoke Version).mp4", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jason Derulo", + "playlist_title": "Take You Dancing", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d0cd6f1-020c-b614-529e-3c6940bce5a5", + "path": "z://MP4\\VocalStarKaraoke\\Jason Derulo - Take You Dancing.mp4", + "title": "Take You Dancing" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ritt Momney", + "playlist_title": "Put Your Records On", + "found_song": { + "artist": "Ritt Momney", + "disabled": false, + "favorite": false, + "guid": "81f39d24-23e7-6e6b-bdcb-6888f80b4be0", + "path": "z://MP4\\Sing King Karaoke\\Ritt Momney - Put Your Records On (Karaoke Version).mp4", + "title": "Put Your Records On" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Conan Gray", + "playlist_title": "Heather", + "found_song": { + "artist": "Conan Gray", + "disabled": false, + "favorite": false, + "guid": "fb8ba04f-c065-aa3f-e794-ba69de14aeb3", + "path": "z://MP4\\Sing King Karaoke\\Conan Gray - Heather (Karaoke Version).mp4", + "title": "Heather" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Joel Corry X MNEK", + "playlist_title": "Head & Heart", + "found_song": { + "artist": "Joel Corry X MNEK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "776101c2-da43-f5d2-787c-3a06bb153153", + "path": "z://MP4\\VocalStarKaraoke\\Joel Corry X MNEK - Head & Heart.mp4", + "title": "Head & Heart" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Justin Bieber Featuring Chance The Rapper", + "title": "Holy", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Kane Brown With Swae Lee & Khalid", + "title": "Be Like That", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Justin Bieber & benny blanco", + "title": "Lonely", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Shawn Mendes & Justin Bieber", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Bebe Rexha Featuring Doja Cat", + "title": "Baby, I'm Jealous", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Why Don't We", + "title": "Fallin'", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Miley Cyrus Featuring Dua Lipa", + "title": "Prisoner", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Zara Larsson", + "title": "Wow", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Juice WRLD x Marshmello", + "title": "Come & Go", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "G-Eazy Featuring blackbear", + "title": "Hate The Way", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 3, + "missing_count": 19, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2020 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jose Feliciano", + "playlist_title": "Feliz Navidad", + "found_song": { + "artist": "José Feliciano", + "disabled": false, + "favorite": false, + "guid": "eb804689-a048-9c8c-1b31-7cdcca7d0063", + "path": "z://MP4\\Sing King Karaoke\\José Feliciano - Feliz Navidad (Karaoke Version).mp4", + "title": "Feliz Navidad" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Dean Martin", + "playlist_title": "Let It Snow, Let It Snow, Let It Snow", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e27963d9-e668-815b-a709-6ce8af6d2569", + "path": "z://MP4\\Sing King Karaoke\\Dean Martin - Let It Snow, Let It Snow, Let It Snow.mp4", + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Ronettes", + "playlist_title": "Sleigh Ride", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "b1f8780b-4e8e-2435-e221-e00dbf00997f", + "path": "z://MP4\\Sing King Karaoke\\The Ronettes - Sleigh Ride (Karaoke Version).mp4", + "title": "Sleigh Ride" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "BTS", + "playlist_title": "Life Goes On", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "28f39318-3748-b0cc-8a92-3a947151ce9b", + "path": "z://MP4\\Sing King Karaoke\\BTS - Life Goes On (Karaoke Version).mp4", + "title": "Life Goes On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Andy Williams", + "playlist_title": "Happy Holiday / The Holiday Season", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "38a81819-ddad-ca94-96ea-dd02b7b0b617", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Holiday The Holiday Season - Andy Williams.mp4", + "title": "Happy Holiday The Holiday Season" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Darlene Love", + "playlist_title": "Christmas (Baby Please Come Home)", + "found_song": { + "artist": "Darlene Love", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fc629a4-f944-091f-2cd1-e0c206f843c2", + "path": "z://MP4\\Sing King Karaoke\\Darlene Love - Christmas (Baby Please Come Home.mp4", + "title": "Christmas (Baby Please Come Home)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Before You Go", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "149bc108-473c-3b90-3c15-62bd9bcdea75", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Before You Go (Karaoke Version).mp4", + "title": "Before You Go" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Perry Como", + "playlist_title": "(There's No Place Like) Home For The Holidays", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26628bfb-0d79-a51c-b34e-3e73048c3ed2", + "path": "z://MP4\\KaraokeOnVEVO\\Perry Como - (There's No Place Like) Home For The Holidays.mp4", + "title": "(There's No Place Like) Home For The Holidays" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Midnight Sky", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "4795e4b6-e3ef-9a78-717e-07abea7db336", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Midnight Sky (Karaoke Version).mp4", + "title": "Midnight Sky" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Gene Autry", + "playlist_title": "Here Comes Santa Claus (Right Down Santa Claus Lane)", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1096ce9b-0757-ec3b-31ef-396137bd03e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane).mp4", + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Michael Buble", + "playlist_title": "It's Beginning To Look A Lot Like Christmas", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "c16e3761-2b08-1636-8f5f-ca05da1fd445", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - It's Beginning To Look A Lot Like Christmas (Karaoke Version).mp4", + "title": "It's Beginning To Look A Lot Like Christmas" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Gene Autry", + "playlist_title": "Rudolph The Red-Nosed Reindeer", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "671f242a-3007-43d7-63a0-895d5319c63e", + "path": "z://MP4\\KaraFun Karaoke\\Rudolph The Red-Nosed Reindeer - Frank Sinatra Karaoke Version KaraFun.mp4", + "title": "Rudolph The Red-Nosed Reindeer" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Justin Bieber", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brian Setzer", + "disabled": false, + "favorite": false, + "guid": "93d70d8a-edaf-4850-f650-d215cc2af323", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin' Around The Christmas Tree - Brian Setzer.mp4", + "title": "Rockin' Around The Christmas Tree" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Dakiti", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Justin Bieber Featuring Chance The Rapper", + "title": "Holy", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Megan Thee Stallion", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Kane Brown With Swae Lee & Khalid", + "title": "Be Like That", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Cardi B Featuring Megan Thee Stallion", + "title": "WAP", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "DaBaby Featuring Roddy Ricch", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Shawn Mendes & Justin Bieber", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "title": "It's Beginning To Look A Lot Like Christmas", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Justin Bieber & benny blanco", + "title": "Lonely", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Blake Shelton Featuring Gwen Stefani", + "title": "Happy Anywhere", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bad Bunny & ROSALIA", + "title": "La Noche de Anoche", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Miley Cyrus Featuring Dua Lipa", + "title": "Prisoner", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bad Bunny", + "title": "Te Mudaste", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Chris Stapleton", + "title": "Starting Over", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Bad Bunny", + "title": "Yo Visto Asi", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Haciendo Que Me Amas", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Bad Bunny", + "title": "Te Deseo Lo Mejor", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Bad Bunny", + "title": "Booker T", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bad Bunny", + "title": "El Mundo Es Mio", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Bad Bunny", + "title": "Hoy Cobre", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Morgan Wallen", + "title": "Somebody's Problem", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Morgan Wallen", + "title": "Still Goin Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bad Bunny", + "title": "Maldita Pobreza", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bad Bunny", + "title": "La Droga", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Carrie Underwood", + "title": "Favorite Time Of Year", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kelsea Ballerini", + "title": "Hole In The Bottle", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Karol G", + "title": "Bichota", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 8, + "missing_count": 52, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2020 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lee Brice", + "playlist_title": "One Of Them Girls", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "9093074c-92a1-1e84-89f8-c5cfef676651", + "path": "z://MP4\\Karaoke Junkies\\Lee Brice - One Of Them Girls (Karaoke).mp4", + "title": "One Of Them Girls" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Silent Night", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "816fafb4-6b5d-b86d-5891-5e464e2e4237", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Silent Night.mp4", + "title": "Silent Night" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Gabby Barrett", + "playlist_title": "The Good Ones", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "3ce86173-0d6c-2f44-807c-81aa423cb659", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - The Good Ones (Karaoke Version).mp4", + "title": "The Good Ones" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Parmalee x Blanco Brown", + "playlist_title": "Just The Way", + "found_song": { + "artist": "Parmalee x Blanco Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8424ea16-230d-3587-8953-cfc47cab7eff", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee x Blanco Brown - Just The Way.mp4", + "title": "Just The Way" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Church", + "playlist_title": "Hell Of A View", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "b7cea25d-bf4b-ca70-06b2-47b75a0e5d43", + "path": "z://MP4\\TheKARAOKEChannel\\Eric Church - Hell Of A View (Karaoke with Lyrics).mp4", + "title": "Hell Of A View" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Gone", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tenille Arts", + "playlist_title": "Somebody Like That", + "found_song": { + "artist": "Tenille Arts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b203f539-0cbd-4f9f-9d94-4e3cc03b8add", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tenille Arts - Somebody Like That.mp4", + "title": "Somebody Like That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 27, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Long Live", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "bf73f481-9843-2b7f-0e7d-6bb32f369c54", + "path": "z://MP4\\King of Karaoke\\Florida Georgia Line - HOLY - King of Karaoke.mp4", + "title": "HOLY" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Taylor Swift", + "playlist_title": "Betty", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "228da555-a7cf-f280-79ab-2ce04fb830bd", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Betty.mp4", + "title": "Betty" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Blake Shelton Featuring Gwen Stefani", + "title": "Happy Anywhere", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Parker McCollum", + "title": "Pretty Heart", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "title": "One Beer", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Chris Stapleton", + "title": "Starting Over", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Morgan Wallen", + "title": "Somebody's Problem", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Morgan Wallen", + "title": "Still Goin Down", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Carrie Underwood", + "title": "Favorite Time Of Year", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kelsea Ballerini", + "title": "Hole In The Bottle", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kenny Chesney", + "title": "Happy Does", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Thomas Rhett", + "title": "What's Your Country Song", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Darius Rucker", + "title": "Beers And Sunshine", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Luke Bryan", + "title": "Down To One", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Carrie Underwood & John Legend", + "title": "Hallelujah", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dustin Lynch", + "title": "Momma's House", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jordan Davis", + "title": "Almost Maybes", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Dan + Shay", + "title": "Take Me Home For Christmas", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "Livin' The Dream", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Rascal Flatts", + "title": "How They Remember You", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Brett Young", + "title": "Lady", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Sam Hunt", + "title": "Breaking Up Was Easy In The 90's", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Little Big Town", + "title": "Wine, Beer, Whiskey", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Miranda Lambert", + "title": "Settling Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Brothers Osborne", + "title": "All Night", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Garth Brooks & Trisha Yearwood", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Maren Morris", + "title": "To Hell & Back", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Nobody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 2, + "missing_count": 32, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2019 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Hey Look Ma, I Made It", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f71bb7d3-ed74-52e6-82d2-2f0d8148370b", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Hey Look Ma, I Made It (Karaoke Version).mp4", + "title": "Hey Look Ma, I Made It" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Orphans", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "3d0f477b-0c30-adac-57e8-155937c027ec", + "path": "z://MP4\\Coldplay - Orphans Karaoke Instrumetal Lyrics Cover Original Key A.mp4", + "title": "Orphans" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "twenty one pilots", + "playlist_title": "The Hype", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "29c6e3f9-afaa-8d0b-1023-1cd65cdd27e5", + "path": "z://MP4\\Twenty One Pilots - The Hype (Classic Karaoke).mp4", + "title": "The Hype" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Under The Graveyard", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "guid": "fc9a0089-13bc-2bf4-f893-afac80913b0d", + "path": "z://MP4\\Under The Graveyard - Ozzy Osbourne - Instrumental Karaoke by SoMusique.mp4", + "title": "Under The Graveyard" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dermot Kennedy", + "playlist_title": "Outnumbered", + "found_song": { + "artist": "Dermot Kennedy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa34ecd5-df30-51c9-ba84-6d8af7454d6a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dermot Kennedy - Outnumbered.mp4", + "title": "Outnumbered" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "girl in red", + "playlist_title": "we fell in love in october", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "guid": "efdfd418-5e97-beba-16d8-2d2d3746723e", + "path": "z://MP4\\Sing King Karaoke\\girl in red - we fell in love in october (Karaoke Version).mp4", + "title": "we fell in love in october" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Ludens", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc59546e-f293-7d44-c161-456b04efd79c", + "path": "z://MP4\\KaraokeOnVEVO\\Bring Me The Horizon - Ludens.mp4", + "title": "Ludens" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Rex Orange County", + "playlist_title": "Pluto Projector", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b75fe53e-6cd0-9a36-fe9e-cfe3ec389c50", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Pluto Projector.mp4", + "title": "Pluto Projector" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Beach Bunny", + "playlist_title": "Prom Queen", + "found_song": { + "artist": "Beach Bunny", + "disabled": false, + "favorite": false, + "guid": "a8c7f0ad-132d-df1a-b5eb-e58371db9438", + "path": "z://MP4\\Sing King Karaoke\\Beach Bunny - Prom Queen (Karaoke Version).mp4", + "title": "Prom Queen" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "YUNGBLUD", + "playlist_title": "Parents", + "found_song": { + "artist": "YUNGBLUD", + "disabled": false, + "favorite": false, + "guid": "aba66e72-46ca-aad5-e7ab-879f3509f954", + "path": "z://MP4\\Sing King Karaoke\\YUNGBLUD - Parents (Karaoke Version).mp4", + "title": "Parents" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Marshmello, YUNGBLUD & blackbear", + "title": "Tongue Tied", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Highly Suspect", + "title": "16", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "title": "I Think I'm OKAY", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Meg Myers", + "title": "Running Up That Hill", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Weezer", + "title": "The End Of The Game", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Green Day", + "title": "Father Of All...", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cage The Elephant", + "title": "Social Cues", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Rex Orange County", + "title": "10/10", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "title": "Outlaws & Outsiders", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Tool", + "title": "Fear Inoculum", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "White Reaper", + "title": "Might Be Right", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Fall Out Boy Featuring Wyclef Jean", + "title": "Dear Future Self (Hands Up)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Local Natives", + "title": "When Am I Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Bad Wolves", + "title": "Killing Me Slowly", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "AJR", + "title": "Dear Winter", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Black Keys", + "title": "Go", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Neon Trees", + "title": "Used To Like", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Blink-182", + "title": "I Really Wish I Hated You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Badflower", + "title": "The Jester", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YUNGBLUD Featuring Dan Reynolds", + "title": "Original Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Mumford & Sons", + "title": "Blind Leading The Blind", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Tame Impala", + "title": "It Might Be Time", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Papa Roach", + "title": "Come Around", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dayglow", + "title": "Can I Call You Tonight?", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Skillet", + "title": "Legendary", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Lumineers", + "title": "Life In The City", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Dinosaur Pile-Up", + "title": "Back Foot", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "AWOLNATION", + "title": "The Best", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "ONE OK ROCK", + "title": "Stand Out Fit In", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "I Prevail", + "title": "Hurricane", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Coldplay", + "title": "Everyday Life", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "guardin", + "title": "i think you're really cool", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Unlikely Candidates", + "title": "Novocaine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Falling In Reverse", + "title": "Popular Monster", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Cold War Kids", + "title": "Complainer", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Beck", + "title": "Uneventful Days", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "HAIM", + "title": "Now I'm In It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "X Ambassadors", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Of Monsters And Men", + "title": "Wars", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 0, + "missing_count": 39, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2019 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 46, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Hot Now", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Chris Brown Featuring Drake", + "title": "No Guidance", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lil Baby", + "title": "Woah", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DaBaby", + "title": "BOP", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mustard Featuring Roddy Ricch", + "title": "Ballin'", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Young Thug Featuring Gunna", + "title": "Hot", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "title": "Bandit", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Chris Brown Featuring Gunna", + "title": "Heat", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake Featuring Rick Ross", + "title": "Money In The Grave", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Doja Cat & Tyga", + "title": "Juicy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kanye West", + "title": "Follow God", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "NLE Choppa", + "title": "Camelot", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "DaBaby", + "title": "VIBEZ", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "YoungBoy Never Broke Again", + "title": "Make No Sense", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "title": "Hot Girl Summer", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "YoungBoy Never Broke Again", + "title": "Lonely Child", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Khalid", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "YoungBoy Never Broke Again", + "title": "Self Control", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Summer Walker & Usher", + "title": "Come Thru", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "title": "The Trade", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Russ & BIA", + "title": "BEST ON EARTH", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Alicia Keys Featuring Miguel", + "title": "Show Me Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 1, + "missing_count": 38, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2019 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Saweetie", + "playlist_title": "My Type", + "found_song": { + "artist": "Saweetie", + "disabled": false, + "favorite": false, + "guid": "b0f6a5a4-ab18-4dcf-cd2c-872bf721165e", + "path": "z://MP4\\Sing King Karaoke\\Saweetie - My Type (Karaoke Version).mp4", + "title": "My Type" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Teeth", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "683b6d6c-0c1c-0f8d-b8ee-e7eba6431766", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Teeth (Karaoke Version).mp4", + "title": "Teeth" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Charlie Puth", + "playlist_title": "Mother", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efeb5c64-4dc6-9072-fb3f-de5951b007ca", + "path": "z://MP4\\KaraokeOnVEVO\\Charlie Puth - Mother.mp4", + "title": "Mother" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Public", + "playlist_title": "Make You Mine", + "found_song": { + "artist": "PUBLIC", + "disabled": false, + "favorite": false, + "guid": "e5a25517-895b-c6e2-ebb5-c3e8e92a040e", + "path": "z://MP4\\Sing King Karaoke\\PUBLIC - Make You Mine (Karaoke Version).mp4", + "title": "Make You Mine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Ed Sheeran Featuring Khalid", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Shawn Mendes & Camila Cabello", + "title": "Senorita", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Why Don't We", + "title": "What Am I", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Kesha Featuring Big Freedia", + "title": "Raising Hell", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "title": "Lonely", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "title": "Writing On The Wall", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "AJ Mitchell & Ava Max", + "title": "Slow Dance", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Lauv Featuring Anne-Marie", + "title": "fuck, i'm lonely", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Chris Brown Featuring Drake", + "title": "No Guidance", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BTS Featuring Lauv", + "title": "Make It Right", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Loud Luxury And Bryce Vine", + "title": "I'm Not Alright", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd & Kehlani", + "title": "Good Thing", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 2, + "missing_count": 16, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2019 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "everything i wanted", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "292566a9-43fb-21d8-6cf8-920eb8110f17", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - everything i wanted (Karaoke Version).mp4", + "title": "everything i wanted" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Bad Guy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "4becb299-aac1-7a98-da4f-7421b3fa185d", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - bad guy (Karaoke Version).mp4", + "title": "bad guy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Khalid", + "playlist_title": "Talk", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "61590d8e-62d9-65f9-b453-874736ef12b2", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Talk (Karaoke Version).mp4", + "title": "Talk" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Sucker", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "d53e3497-8149-1948-7aad-f320cfeb5f5b", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Sucker (Karaoke Version).mp4", + "title": "Sucker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "DaBaby", + "playlist_title": "Suge", + "found_song": { + "artist": "DaBaby", + "disabled": false, + "favorite": false, + "guid": "714654e3-e342-23a9-d598-e92b38e5dacb", + "path": "z://MP4\\Sing King Karaoke\\DaBaby - Suge (Karaoke Version).mp4", + "title": "Suge" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Harry Styles", + "playlist_title": "Lights Up", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "985f9eaa-81c7-2932-fbf1-fcd2222c6175", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Lights Up (Karaoke Version).mp4", + "title": "Lights Up" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Ant Saunders", + "playlist_title": "Yellow Hearts", + "found_song": { + "artist": "Ant Saunders", + "disabled": false, + "favorite": false, + "guid": "0df1cce5-d558-ba99-4977-e78438e3f911", + "path": "z://MP4\\Sing King Karaoke\\Ant Saunders - Yellow Hearts (Karaoke Version).mp4", + "title": "Yellow Hearts" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Sam Smith & Normani", + "playlist_title": "Dancing With A Stranger", + "found_song": { + "artist": "Sam Smith ft. Normani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1569241d-064c-e35f-2049-1231bdcce495", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith & Normani - Dancing With A Stranger.mp4", + "title": "Dancing With A Stranger" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Shawn Mendes & Camila Cabello", + "title": "Senorita", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Chris Brown Featuring Drake", + "title": "No Guidance", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lil Baby", + "title": "Woah", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "DaBaby", + "title": "BOP", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Mustard Featuring Roddy Ricch", + "title": "Ballin'", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young Thug Featuring Gunna", + "title": "Hot", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ed Sheeran Featuring Khalid", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "title": "Old Town Road", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "title": "Bandit", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Ed Sheeran & Justin Bieber", + "title": "I Don't Care", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Chris Brown Featuring Gunna", + "title": "Heat", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Drake Featuring Rick Ross", + "title": "Money In The Grave", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Doja Cat & Tyga", + "title": "Juicy", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Kanye West", + "title": "Follow God", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "NLE Choppa", + "title": "Camelot", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "DaBaby", + "title": "VIBEZ", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Ellie Goulding & Juice WRLD", + "title": "Hate Me", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Dustin Lynch", + "title": "Ridin' Roads", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Russell Dickerson", + "title": "Every Little Thing", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Kenny Chesney", + "title": "Tip Of My Tongue", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "YoungBoy Never Broke Again", + "title": "Make No Sense", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "title": "Hot Girl Summer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Chris Lane", + "title": "I Don't Know About You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "YoungBoy Never Broke Again", + "title": "Lonely Child", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Chris Janson", + "title": "Good Vibes", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "J Balvin & Bad Bunny", + "title": "La Cancion", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Khalid", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Y2K & bbno$", + "title": "Lalala", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Karol G & Nicki Minaj", + "title": "Tusa", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "YoungBoy Never Broke Again", + "title": "Self Control", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Blake Shelton Featuring Trace Adkins", + "title": "Hell Right", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Black Eyed Peas X J Balvin", + "title": "RITMO (Bad Boys For Life)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 3, + "missing_count": 57, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2019 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Blanco Brown", + "playlist_title": "The Git Up", + "found_song": { + "artist": "Blanco Brown", + "disabled": false, + "favorite": false, + "guid": "c412ee98-7fce-4bf3-e94d-f066eedddf08", + "path": "z://MP4\\Sing King Karaoke\\Blanco Brown - The Git Up (Karaoke Version).mp4", + "title": "The Git Up" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Luke Bryan", + "playlist_title": "What She Wants Tonight", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6e4e74c-5cba-40bd-82ef-30cc07110726", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - What She Wants Tonight.mp4", + "title": "What She Wants Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ingrid Andress", + "playlist_title": "More Hearts Than Mine", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "0802e2e0-0b78-6366-3bbb-ba7bcbc7a108", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress - More Hearts Than Mine (Karaoke Version).mp4", + "title": "More Hearts Than Mine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Chasin' You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f567e4ab-5b8a-6672-d383-d51110d81dc3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Chasin' You (Karaoke Version).mp4", + "title": "Chasin' You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Combs", + "playlist_title": "Refrigerator Door", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "9259e424-7187-5103-bbf2-3266e81eefe9", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Refrigerator Door (Karaoke).mp4", + "title": "Refrigerator Door" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Kane Brown", + "playlist_title": "For My Daughter", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70bf87f2-3f65-3cf2-633f-5eb6d000d6d3", + "path": "z://MP4\\KaraokeOnVEVO\\Kane Brown - For My Daughter.mp4", + "title": "For My Daughter" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Luke Combs", + "playlist_title": "Moon Over Mexico", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "eb496a75-5c45-4d6f-8243-c132f83da176", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Moon Over Mexico (Karaoke).mp4", + "title": "Moon Over Mexico" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Luke Combs", + "playlist_title": "Nothing Like You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff33931d-ffad-dd43-9cf5-ec61b3191c62", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Nothing Like You (Karaoke).mp4", + "title": "Nothing Like You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Luke Combs", + "playlist_title": "Lovin' On You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8bf6b10f-0942-4dfe-6e38-242d841d5012", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Lovin' On You (Karaoke).mp4", + "title": "Lovin' On You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Caylee Hammack", + "playlist_title": "Family Tree", + "found_song": { + "artist": "Caylee Hammack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9400c16d-7cea-7de1-2b14-dc9476d76faa", + "path": "z://MP4\\KaraokeOnVEVO\\Caylee Hammack - Family Tree.mp4", + "title": "Family Tree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 34, + "playlist_artist": "Carly Pearce & Lee Brice", + "playlist_title": "I Hope You're Happy Now", + "found_song": { + "artist": "Carly Pearce & Lee Brice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d205fc6-1781-bb83-3f00-3734ec6339ad", + "path": "z://MP4\\Sing King Karaoke\\Carly Pearce & Lee Brice - I Hope Youre Happy Now.mp4", + "title": "I Hope You're Happy Now" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Dustin Lynch", + "title": "Ridin' Roads", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kenny Chesney", + "title": "Tip Of My Tongue", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Blake Shelton Featuring Trace Adkins", + "title": "Hell Right", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Miranda Lambert", + "title": "It All Comes Out In The Wash", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jimmie Allen", + "title": "Make Me Want To", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Garth Brooks & Blake Shelton", + "title": "Dive Bar", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis", + "title": "Slow Dance In A Parking Lot", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Riley Green", + "title": "I Wish Grandpas Never Died", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Ryan Hurd", + "title": "To A T", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Brett Young", + "title": "Catch", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jake Owen", + "title": "Homemade", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Luke Combs & Brooks & Dunn", + "title": "1, 2 Many", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Luke Combs", + "title": "What You See Is What You Get", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Carrie Underwood", + "title": "Drinking Alone", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Luke Combs", + "title": "Reasons", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Luke Combs", + "title": "All Over Again", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Travis Denning", + "title": "After A Few", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Luke Combs Featuring Eric Church", + "title": "Does To Me", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Michael Ray", + "title": "Her World Or Mine", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Chris Young", + "title": "Drowning", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Eric Church", + "title": "Monsters", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 2, + "missing_count": 28, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2018 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a48ea54-c714-ea62-83f7-08c94bce978d", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Will Rock You (2.mp4", + "title": "We Will Rock You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Queen", + "playlist_title": "Killer Queen", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "86abd8d9-bbe2-3ebb-86a0-818309b65288", + "path": "z://MP4\\Sing King Karaoke\\Queen - Killer Queen (Karaoke Version).mp4", + "title": "Killer Queen" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Queen", + "playlist_title": "We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "f77cf827-4ec3-14c5-7afd-b28061589a08", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Are The Champions (Karaoke Version).mp4", + "title": "We Are The Champions" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bad Liar", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "9363c3e9-27dd-4168-9f80-a56a8f0526f1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bad Liar (Karaoke Version).mp4", + "title": "Bad Liar" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Zero", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "f65787cf-7654-65e4-730a-71b0104d2710", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Zero (Karaoke Version).mp4", + "title": "Zero" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Queen", + "playlist_title": "I Want To Break Free", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7eedc299-eedf-9b34-51df-9cc40ad17547", + "path": "z://MP4\\Sing King Karaoke\\Queen - I Want To Break Free (Karaoke Version).mp4", + "title": "I Want To Break Free" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Radio Ga Ga", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "33fc0ad0-9e6a-56f1-2ef1-f6fe431b8b32", + "path": "z://MP4\\Sing King Karaoke\\Queen - Radio Ga Ga (Karaoke Version).mp4", + "title": "Radio Ga Ga" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Queen", + "playlist_title": "Fat Bottomed Girls", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "72634af2-46a7-deba-6d54-666ba5e54ed9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fat Bottomed Girls - Queen.mp4", + "title": "Fat Bottomed Girls" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Queen", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7d27d172-136b-8538-58cd-1a54e39a4f2a", + "path": "z://MP4\\Sing King Karaoke\\Queen - Love Of My Life (Karaoke Version).mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "George Ezra", + "playlist_title": "Shotgun", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "497317c0-2a67-7155-6744-1ac112e17108", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Shotgun (Karaoke Version).mp4", + "title": "Shotgun" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hozier", + "playlist_title": "Movement", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad509a09-2fce-a4e9-6a0f-427299cf344a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hozier - Movement.mp4", + "title": "Movement" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Queen", + "playlist_title": "Hammer To Fall (Live Aid)", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a297761f-af13-8d18-ff7d-ca16a3655846", + "path": "z://MP4\\KaraFun Karaoke\\Hammer to Fall (Live Aid) - Queen Karaoke Version KaraFun.mp4", + "title": "Hammer to Fall (Live Aid)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The 1975", + "playlist_title": "Love It If We Made It", + "found_song": { + "artist": "The 1975", + "disabled": false, + "favorite": false, + "guid": "312899c6-cc20-877f-7be9-a3e18b41a770", + "path": "z://MP4\\Sing King Karaoke\\The 1975 - Love It If We Made It (Karaoke Version).mp4", + "title": "Love It If We Made It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "twenty one pilots", + "playlist_title": "Chlorine", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "15adda1c-76c5-c59d-1a08-ef7dbceb8be3", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Chlorine (Karaoke Version).mp4", + "title": "Chlorine" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "When The Curtain Falls", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "074febe9-9e38-3e22-7629-5f7907fbdfe3", + "path": "z://MP4\\KaraokeOnVEVO\\Greta Van Fleet - When The Curtain Falls (Karaoke).mp4", + "title": "When The Curtain Falls" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Ghost", + "playlist_title": "Dance Macabre", + "found_song": { + "artist": "Ghost", + "disabled": false, + "favorite": false, + "guid": "72d977f5-2b3f-5d63-0917-d8cd9cff4e3d", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Ghost - Dance Macabre (Karaoke).mp4", + "title": "Dance Macabre" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Mantra", + "found_song": { + "artist": "Bring Me the Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab7172ea-287b-4846-9c6c-6ad52275b06d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-12 - Bring Me the Horizon - Mantra.mp3", + "title": "Mantra" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Elle King", + "playlist_title": "Shame", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57f1429e-b239-eb79-463d-09af4ffa4776", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King - Shame.mp4", + "title": "Shame" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54e03359-1c41-d7f9-28f0-f2b8ba9be660", + "path": "z://CDG\\Various\\David Bowie - Under Pressure.mp3", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The Glorious Sons", + "playlist_title": "S.O.S. (Sawed Off Shotgun)", + "found_song": { + "artist": "The Glorious Sons", + "disabled": false, + "favorite": false, + "guid": "7c3f54b6-c3df-5b8f-ca1e-ead95c62ccc5", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Glorious Sons - Sawed Off Shotgun (SOS) (Karaoke).mp4", + "title": "Sawed Off Shotgun (SOS)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Weezer", + "title": "Africa", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Mumford & Sons", + "title": "Guiding Light", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "flora cash", + "title": "You're Somebody Else", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Panic! At The Disco", + "title": "The Greatest Show", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Shinedown", + "title": "Get Up", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Revivalists", + "title": "All My Friends", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Interrupters", + "title": "She's Kerosene", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bad Wolves Featuring DIAMANTE", + "title": "Hear Me Now", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Disturbed", + "title": "Are You Ready", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Struts", + "title": "Body Talks", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Muse", + "title": "Pressure", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Godsmack", + "title": "When Legends Rise", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Imagine Dragons", + "title": "Machine", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Queen", + "title": "Radio Ga Ga (Live Aid)", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Slipknot", + "title": "All Out Life", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Young The Giant", + "title": "Superposition", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Mumford & Sons", + "title": "42", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Foster The People", + "title": "Worst Nites", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "lovelytheband", + "title": "These Are My Friends", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Queen", + "title": "Ay-Oh (Live Aid)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Portugal. The Man", + "title": "Tidal Wave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 3, + "missing_count": 21, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2018 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "title": "Wake Up In The Sky", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Wayne", + "title": "Uproar", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake", + "title": "Nonstop", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "title": "Big Bank", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "6ix9ine Featuring Lil Baby", + "title": "TIC TOC", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Trippie Redd", + "title": "Topanga", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "French Montana Featuring Drake", + "title": "No Stylist", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tyga & Nicki Minaj", + "title": "Dip", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Metro Boomin Featuring Gunna", + "title": "Space Cadet", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Daniel Caesar Featuring H.E.R.", + "title": "Best Part", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Kanye West & Lil Pump", + "title": "I Love It", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lil Mosey", + "title": "Noticed", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Quavo", + "title": "W O R K I N M E", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Eminem Featuring Joyner Lucas", + "title": "Lucky You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Amine", + "title": "Reel It In", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "6ix9ine Featuring DJ SPINKING", + "title": "TATI", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 1, + "missing_count": 36, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2018 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Why Don't We", + "playlist_title": "8 Letters", + "found_song": { + "artist": "Why Don't We", + "disabled": false, + "favorite": false, + "guid": "5eafe4e2-ca60-4f7e-5ef7-6783be8505eb", + "path": "z://MP4\\Sing King Karaoke\\Why Don't We - 8 Letters (Karaoke Version).mp4", + "title": "8 Letters" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Zara Larsson", + "playlist_title": "Ruin My Life", + "found_song": { + "artist": "Zara Larsson", + "disabled": false, + "favorite": false, + "guid": "3047e50a-39ab-f160-2eea-7f4e56c83624", + "path": "z://MP4\\Sing King Karaoke\\Zara Larsson - Ruin My Life (Karaoke Version).mp4", + "title": "Ruin My Life" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lukas Graham", + "playlist_title": "Love Someone", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "09c5bf2a-68c3-74c0-1fec-b9328620e5f1", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Love Someone (Karaoke Version).mp4", + "title": "Love Someone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Marshmello & Bastille", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Khalid & Normani", + "title": "Love Lies", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Benny Blanco, Halsey & Khalid", + "title": "Eastside", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Maroon 5 Featuring Cardi B", + "title": "Girls Like You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Bazzi Featuring Camila Cabello", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Silk City x Dua Lipa", + "title": "Electricity", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "title": "Close To Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "title": "This Feeling", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "title": "Taki Taki", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Labrinth, Sia & Diplo Present... LSD", + "title": "Thunderclouds", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Alessia Cara", + "title": "Trust My Lonely", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Drake Featuring Michael Jackson", + "title": "Don't Matter To Me", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Loud Luxury Featuring Brando", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "title": "No Brainer", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Steve Aoki Featuring BTS", + "title": "Waste It On Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lauv Featuring Julia Michaels", + "title": "There's No Way", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 5, + "missing_count": 19, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2018 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ella Mai", + "playlist_title": "Boo'd Up", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "fc8b7192-9e13-6662-e1ea-cd27edeff2a8", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Boo'd Up (Karaoke Version).mp4", + "title": "Boo'd Up" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Eilish", + "playlist_title": "When The Party's Over", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "71a1943f-3bbe-80e5-b1f4-65a69de29032", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - when the party's over (Karaoke Version).mp4", + "title": "when the party's over" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Lauren Daigle", + "playlist_title": "You Say", + "found_song": { + "artist": "Lauren Daigle", + "disabled": false, + "favorite": false, + "guid": "b37aa5f4-041e-f4e3-3237-2e71866e24ae", + "path": "z://MP4\\Sing King Karaoke\\Lauren Daigle - You Say (Karaoke Version).mp4", + "title": "You Say" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Come Out And Play", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "32ba4069-8510-f0ad-5ede-22d5265d29b2", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - come out and play (Karaoke Version).mp4", + "title": "come out and play" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bebe Rexha", + "playlist_title": "I'm A Mess", + "found_song": { + "artist": "Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "f1b186ab-2866-50e3-a066-3e142757a058", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha - I'm A Mess (Karaoke Version).mp4", + "title": "I'm A Mess" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Maren Morris", + "playlist_title": "Rich", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "be2f1409-5b99-a5e9-e56b-222bd1fb6dec", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - Rich (Karaoke Version).mp4", + "title": "Rich" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Billie Eilish", + "playlist_title": "Ocean Eyes", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb03dae2-190a-7ef5-4996-742afe03de13", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Ocean Eyes (Karaoke Version).mp4", + "title": "Ocean Eyes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Marshmello & Bastille", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Maroon 5 Featuring Cardi B", + "title": "Girls Like You", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "title": "Wake Up In The Sky", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Benny Blanco, Halsey & Khalid", + "title": "Eastside", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Khalid & Normani", + "title": "Love Lies", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "title": "Taki Taki", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bazzi Featuring Camila Cabello", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Cardi B, Bad Bunny & J Balvin", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyga Featuring Offset", + "title": "Taste", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Wayne", + "title": "Uproar", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Lil Baby & Drake", + "title": "Yes Indeed", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Drake", + "title": "Nonstop", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Mitchell Tenpenny", + "title": "Drunk Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "6ix9ine Featuring Lil Baby", + "title": "TIC TOC", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Trippie Redd", + "title": "Topanga", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "French Montana Featuring Drake", + "title": "No Stylist", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dierks Bentley Featuring Brothers Osborne", + "title": "Burning Man", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Chris Young", + "title": "Hangin' On", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tyga & Nicki Minaj", + "title": "Dip", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Dustin Lynch", + "title": "Good Girl", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "title": "This Feeling", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Billie Eilish & Khalid", + "title": "Lovely", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Anuel AA & Romeo Santos", + "title": "Ella Quiere Beber", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "6ix9ine Featuring Anuel AA", + "title": "BEBE", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Thomas Rhett", + "title": "Sixteen", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Russell Dickerson", + "title": "Blue Tacoma", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Metro Boomin Featuring Gunna", + "title": "Space Cadet", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kip Moore", + "title": "Last Shot", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Daniel Caesar Featuring H.E.R.", + "title": "Best Part", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Jason Aldean", + "title": "Girl Like You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Kanye West & Lil Pump", + "title": "I Love It", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lil Peep & XXXTENTACION", + "title": "Falling Down", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Lil Mosey", + "title": "Noticed", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "title": "Close To Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 6, + "missing_count": 57, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2018 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Scotty McCreery", + "playlist_title": "This Is It", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "ac4138e8-24a2-c1c3-cfed-fab42e7745f7", + "path": "z://MP4\\Karaoke Studio\\Scotty McCreery - This Is It (Karaoke with Lyrics).mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Millionaire", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "95534f43-a242-c5f8-adf5-ac47ada16bca", + "path": "z://MP4\\Stingray Karaoke\\Millionaire Chris Stapleton Karaoke with Lyrics.mp4", + "title": "Millionaire" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eric Church", + "playlist_title": "Desperate Man", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "23fceba7-f85b-58cd-8df5-7bccefffbd09", + "path": "z://MP4\\King of Karaoke\\Eric Church - Desperate Man - King of Karaoke.mp4", + "title": "Desperate Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Luke Combs", + "playlist_title": "Beautiful Crazy", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a182bbe1-f007-bd48-dbe6-629ad92b9e92", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Beautiful Crazy (Karaoke Version).mp4", + "title": "Beautiful Crazy" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jake Owen", + "playlist_title": "Down To The Honkytonk", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "3382b479-7d9a-a4b3-fc3f-d97bf5246b04", + "path": "z://MP4\\Stingray Karaoke\\Down To The Honkytonk Jake Owen Karaoke with Lyrics.mp4", + "title": "Down To The Honkytonk" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Luke Bryan", + "playlist_title": "What Makes You Country", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "073c8c3c-e474-6080-1ec8-49c945a98963", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - What Makes You Country Karaoke.mp4", + "title": "What Makes You Country" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Whiskey Glasses", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "696b4a9b-4671-fc44-d095-73da32cc5452", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Whiskey Glasses (Karaoke Version).mp4", + "title": "Whiskey Glasses" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Midland", + "playlist_title": "Burn Out", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "26be8d4d-f23f-1ced-ba5a-c0fa3f85a677", + "path": "z://MP4\\King of Karaoke\\Midland - Burn Out - King of Karaoke.mp4", + "title": "Burn Out" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Friends Don't", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "a5fe7352-f222-7435-4ac0-a643e6172f3c", + "path": "z://MP4\\KtvEntertainment\\Maddie & Tae - Friends Don't Karaoke Lyrics.mp4", + "title": "Friends Don't" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Mitchell Tenpenny", + "title": "Drunk Me", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Dierks Bentley Featuring Brothers Osborne", + "title": "Burning Man", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Chris Young", + "title": "Hangin' On", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Dustin Lynch", + "title": "Good Girl", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Thomas Rhett", + "title": "Sixteen", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Kip Moore", + "title": "Last Shot", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jason Aldean", + "title": "Girl Like You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Blake Shelton", + "title": "Turnin' Me On", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jordan Davis", + "title": "Take It From Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Riley Green", + "title": "There Was This Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Tim McGraw", + "title": "Neon Church", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kelsea Ballerini", + "title": "Miss Me More", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jon Pardi", + "title": "Night Shift", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Old Dominion", + "title": "Make It Sweet", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Carrie Underwood", + "title": "Love Wins", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Brett Young", + "title": "Here Tonight", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Cody Johnson", + "title": "On My Way To You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Keith Urban", + "title": "Never Comin Down", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Michael Ray", + "title": "One That Got Away", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lee Brice", + "title": "Rumor", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Kenny Chesney Featuring Mindy Smith", + "title": "Better Boat", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tyler Rich", + "title": "The Difference", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Florida Georgia Line", + "title": "Talk You Out Of It", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Chris Lane", + "title": "I Don't Know About You", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Eli Young Band", + "title": "Love Ain't", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "title": "Caught Up In The Country", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Granger Smith", + "title": "You're In It", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Chase Rice", + "title": "Eyes On You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Brett Eldredge", + "title": "Love Someone", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Kane Brown", + "title": "Good As You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Travis Denning", + "title": "David Ashley Parker From Powder Springs", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Billy Currington", + "title": "Bring It On Over", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Rascal Flatts", + "title": "Back To Life", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 3, + "missing_count": 36, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2017 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Revivalists", + "playlist_title": "Wish I Knew You", + "found_song": { + "artist": "The Revivalists", + "disabled": false, + "favorite": false, + "guid": "844a5802-715e-69b9-2cbe-1508dfe66bba", + "path": "z://MP4\\Karaoke Studio\\Wish I Knew You (In the Style of The Revivalists) Karaoke with Lyrics.mp4", + "title": "Wish I Knew You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Rx (Medicate)", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "227ac9f9-339a-3125-2a0d-00ed6c21ed51", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Theory Of A Deadman - RX (Medicate) (Karaoke).mp4", + "title": "RX (Medicate)" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Whatever It Takes", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "acdf3a83-0de4-9cde-eba8-13ea6f7063a9", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Whatever It Takes (Karaoke Version).mp4", + "title": "Whatever It Takes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Gone Away", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "55b940db-9d51-d87b-f32c-9d3a72ed3c00", + "path": "z://MP4\\King of Karaoke\\Five Finger Death Punch - Gone Away - King of Karaoke.mp4", + "title": "Gone Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alice Merton", + "playlist_title": "No Roots", + "found_song": { + "artist": "Alice Merton", + "disabled": false, + "favorite": false, + "guid": "6a448447-6367-bb35-e5a0-39ae1ff5bd4b", + "path": "z://MP4\\Karaoke Sing Sing\\Alice Merton - No Roots (Karaoke Version).mp4", + "title": "No Roots" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beck", + "playlist_title": "Up All Night", + "found_song": { + "artist": "Beck", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "2424c4c9-1ace-1f16-ba06-5fc0a8584ca3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF381\\SF381-13 - Beck - Up All Night.mp3", + "title": "Up All Night" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Linkin Park", + "playlist_title": "One More Light", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "ab986ef4-b202-6648-d9f7-d7e893d4a3f2", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - One More Light (Karaoke Version).mp4", + "title": "One More Light" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gary Clark Jr.", + "playlist_title": "Come Together", + "found_song": { + "artist": "Gary Clark Jr. & Junkie XL", + "disabled": false, + "favorite": false, + "guid": "811166b5-3d59-371e-d08e-5c02ea772379", + "path": "z://MP4\\KaraFun Karaoke\\Come Together - Gary Clark Jr. & Junkie XL Karaoke Version KaraFun.mp4", + "title": "Come Together" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Foster The People", + "playlist_title": "Sit Next To Me", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "e91c8241-86d8-bd8c-844c-d9418af1dfb6", + "path": "z://MP4\\Karaoke Studio\\Foster The People - Sit Next To Me (Karaoke Version) - YouTube.mp4", + "title": "Sit Next To Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Hold Me Tight Or Don't", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "06fb4e4d-5b44-4cd8-8ad7-48842d8ba47f", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - HOLD ME TIGHT OR DON'T (Karaoke Version).mp4", + "title": "HOLD ME TIGHT OR DON'T" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Trouble", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38efd75-e122-62bf-fced-371c7e33328b", + "path": "z://MP4\\KaraokeOnVEVO\\Five Finger Death Punch - Trouble.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Bastille", + "playlist_title": "World Gone Mad", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "bcec6da9-e349-a321-2fc0-3af7185d0aa1", + "path": "z://MP4\\Karaoke Sing Sing\\Bastille - World Gone Mad (Karaoke Version).mp4", + "title": "World Gone Mad" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "Highway Tune", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "fb3d9aba-b7e2-bbb4-95a8-09fb3182f3e1", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Greta Van Fleet - Highway Tune (Karaoke) (Vocal Reduction).mp4", + "title": "Highway Tune" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Weezer", + "playlist_title": "Happy Hour", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "2e184434-1c3c-0ee2-0742-b841cb02a3e3", + "path": "z://MP4\\Karaoke Studio\\Weezer - Happy Hour (Karaoke Version).mp4", + "title": "Happy Hour" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Welshly Arms", + "playlist_title": "Legendary", + "found_song": { + "artist": "Welshly Arms", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f493fd6d-9358-d971-523a-79b4538c9599", + "path": "z://MP4\\KaraokeOnVEVO\\Welshly Arms - Legendary.mp4", + "title": "Legendary" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Seether", + "playlist_title": "Betray And Degrade", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2632adda-dae8-4627-5428-8e5394d160a9", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Betray And Degrade.mp4", + "title": "Betray And Degrade" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bishop Briggs", + "playlist_title": "Dream", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "e88f608d-cc9d-1184-1ea7-6b3c49acff0e", + "path": "z://MP4\\KtvEntertainment\\Bishop Briggs - Dream Karaoke.mp4", + "title": "Dream" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "U2", + "playlist_title": "American Soul", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "05d7cd10-e56e-e21a-ea70-e89232c8d546", + "path": "z://MP4\\Karaoke Studio\\U2 - American Soul (Karaoke Version).mp4", + "title": "American Soul" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "AC/DC", + "playlist_title": "Thunderstruck", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "0cc0016f-a5dd-f17f-9efe-1247e75375a0", + "path": "z://MP4\\KtvEntertainment\\AC DC - Thunderstruck (Karaoke without Vocal).mp4", + "title": "Thunderstruck" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Angela", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8171f8dc-413c-885b-254a-01caea4348f4", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Lumineers - Gloria.mp4", + "title": "Gloria" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "AC/DC", + "playlist_title": "Highway To Hell", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "e9a66438-e15b-0e6d-d091-c1e24b10f11a", + "path": "z://MP4\\Sing King Karaoke\\AC DC - Highway To Hell (Karaoke Version).mp4", + "title": "Highway To Hell" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "All That Remains", + "playlist_title": "The Thunder Rolls", + "found_song": { + "artist": "All That Remains", + "disabled": false, + "favorite": false, + "guid": "67d8201d-8247-5ae6-a49b-417975c2c587", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - All That Remains - Thunder Rolls (Karaoke).mp4", + "title": "Thunder Rolls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Dirty Heads", + "playlist_title": "Vacation", + "found_song": { + "artist": "Dirty Heads", + "disabled": false, + "favorite": false, + "guid": "515f867c-9866-e269-4428-2e8199ebc05a", + "path": "z://MP4\\Karaoke Studio\\Dirty Heads - Vacation (Karaoke Version).mp4", + "title": "Vacation" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Thirty Seconds To Mars", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "U2", + "title": "You're The Best Thing About Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chloe Kohanski", + "title": "Call Me", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Foo Fighters", + "title": "The Sky Is A Neighborhood", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Vance Joy", + "title": "Lay It On Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Portugal. The Man", + "title": "Live In The Moment", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Nothing More", + "title": "Go To War", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Royal Blood", + "title": "I Only Lie When I Love You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cold War Kids Featuring Bishop Briggs", + "title": "So Tied Up", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "U2", + "title": "Get Out Of Your Own Way", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Skillet", + "title": "The Resistance", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Noah Mac", + "title": "Ordinary World", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Papa Roach", + "title": "Born For Greatness", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Manchester Orchestra", + "title": "The Gold", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "X Ambassadors", + "title": "Ahead Of Myself", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Fall Out Boy", + "title": "The Last Of The Real Ones", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Score", + "title": "Legend", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Marilyn Manson", + "title": "Kill4me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Two Feet", + "title": "Go Fuck Yourself", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Fozzy", + "title": "Judas", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 7, + "missing_count": 20, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2017 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "Go Flex", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "7b4fd6d5-b21b-75d9-08a9-3213aab2c419", + "path": "z://MP4\\KtvEntertainment\\Post Malone - Go Flex Karaoke Lyrics.mp4", + "title": "Go Flex" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lil Baby", + "playlist_title": "My Dawg", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "guid": "7a96e336-9795-8ca0-3502-9dccd967ff49", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Baby - My Dawg (Karaoke).mp4", + "title": "My Dawg" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 43, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "No Smoke", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Cardi B", + "title": "Bodak Yellow (Money Moves)", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "6ix9ine", + "title": "Gummo", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Migos, Nicki Minaj & Cardi B", + "title": "MotorSport", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Logic Featuring Alessia Cara & Khalid", + "title": "1-800-273-8255", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Miguel Featuring Travis Scott", + "title": "Sky Walker", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Offset & Metro Boomin", + "title": "Ric Flair Drip", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Yo Gotti Featuring Nicki Minaj", + "title": "Rake It Up", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "title": "Crew", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Post Malone", + "title": "Candy Paint", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "N*E*R*D & Rihanna", + "title": "Lemon", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "6ix9ine", + "title": "Kooda", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kodak Black", + "title": "Transportin'", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Uzi Vert", + "title": "Sauce It Up", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eminem Featuring Beyonce", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "title": "Come Through And Chill", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Rich The Kid Featuring Kendrick Lamar", + "title": "New Freezer", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jaden Smith", + "title": "Icon", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "title": "Something New", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "title": "Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 39, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2017 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Blackbear", + "playlist_title": "Do Re Mi", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "c0645d87-7866-c9ab-af13-650fa03de5bc", + "path": "z://MP4\\Sing King Karaoke\\blackbear - do re mi (Karaoke Version).mp4", + "title": "do re mi" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lauv", + "playlist_title": "I Like Me Better", + "found_song": { + "artist": "Lauv", + "disabled": false, + "favorite": false, + "guid": "309b922f-f3d5-a8b1-5ed3-708d19a1e707", + "path": "z://MP4\\Sing King Karaoke\\Lauv - I Like Me Better (Karaoke Version).mp4", + "title": "I Like Me Better" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Liam Payne", + "playlist_title": "Bedroom Floor", + "found_song": { + "artist": "Liam Payne", + "disabled": false, + "favorite": false, + "guid": "d4654857-b194-0a80-d598-b032ad7b64c8", + "path": "z://MP4\\Sing King Karaoke\\Liam Payne - Bedroom Floor (Karaoke Version).mp4", + "title": "Bedroom Floor" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Camila Cabello Featuring Young Thug", + "title": "Havana", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Maroon 5 Featuring SZA", + "title": "What Lovers Do", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Logic Featuring Alessia Cara & Khalid", + "title": "1-800-273-8255", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Liam Payne Featuring Quavo", + "title": "Strip That Down", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "MAX Featuring gnash", + "title": "Lights Down Low", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Macklemore Featuring Kesha", + "title": "Good Old Days", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Zayn Featuring Sia", + "title": "Dusk Till Dawn", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marshmello Featuring Khalid", + "title": "Silence", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "title": "Feels Great", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Daya", + "title": "New", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "CNCO & Little Mix", + "title": "Reggaeton Lento (Bailemos)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 2, + "missing_count": 22, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2017 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 4, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shape Of You", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "e65e5be8-f28d-7c1a-11f3-3a6408d1d09a", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shape Of You (Karaoke Version).mp4", + "title": "Shape Of You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Charlie Puth", + "playlist_title": "Attention", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "5be8908f-4826-0e3d-5e51-ea0b382c9a48", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - Attention (Karaoke Version).mp4", + "title": "Attention" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Bruno Mars", + "playlist_title": "That's What I Like", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "549fedd8-513f-eade-f0a0-1b13bb9485d5", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - That s What I Like (Karaoke Version).mp4", + "title": "That s What I Like" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Shawn Mendes", + "playlist_title": "There's Nothing Holdin' Me Back", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43731608-cb85-bd56-84c6-d4dc4501303f", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - There's Nothing Holdin' Me Back.mp4", + "title": "There's Nothing Holdin' Me Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Humble.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3069327c-f9a2-0c55-5c6f-ff03dfd472c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - HUMBLE. (Karaoke Version).mp4", + "title": "HUMBLE." + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Demi Lovato", + "playlist_title": "Tell Me You Love Me", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "ac7bc2e0-3b3f-a1b0-d288-88a365eac36d", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Tell Me You Love Me (Karaoke Version).mp4", + "title": "Tell Me You Love Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Love So Soft", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "eeedbbff-3f9b-ea0f-e64f-a85a0d13ca6c", + "path": "z://MP4\\Karaoke Studio\\Kelly Clarkson - Love So Soft (Karaoke Version).mp4", + "title": "Love So Soft" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 43, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Camila Cabello Featuring Young Thug", + "title": "Havana", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Cardi B", + "title": "Bodak Yellow (Money Moves)", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Maroon 5 Featuring SZA", + "title": "What Lovers Do", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "6ix9ine", + "title": "Gummo", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Migos, Nicki Minaj & Cardi B", + "title": "MotorSport", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Logic Featuring Alessia Cara & Khalid", + "title": "1-800-273-8255", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "title": "Despacito", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marshmello Featuring Khalid", + "title": "Silence", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "French Montana Featuring Swae Lee", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Miguel Featuring Travis Scott", + "title": "Sky Walker", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Offset & Metro Boomin", + "title": "Ric Flair Drip", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Post Malone Featuring Quavo", + "title": "Congratulations", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Post Malone", + "title": "Candy Paint", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "N*E*R*D & Rihanna", + "title": "Lemon", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "6ix9ine", + "title": "Kooda", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Macklemore Featuring Kesha", + "title": "Good Old Days", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "MAX Featuring gnash", + "title": "Lights Down Low", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Thomas Rhett", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Luis Fonsi & Demi Lovato", + "title": "Echame La Culpa", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Zayn Featuring Sia", + "title": "Dusk Till Dawn", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Becky G Featuring Bad Bunny", + "title": "Mayores", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "title": "Krippy Kush", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kodak Black", + "title": "Transportin'", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "title": "Bella y Sensual", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Natti Natasha x Ozuna", + "title": "Criminal", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lil Uzi Vert", + "title": "Sauce It Up", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 3, + "missing_count": 52, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2017 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Hunt", + "playlist_title": "Body Like A Back Road", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "aafc36bd-edad-52e5-30dd-bdd993b0102a", + "path": "z://MP4\\Sing King Karaoke\\Sam Hunt - Body Like A Back Road (Karaoke Version).mp4", + "title": "Body Like A Back Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Chris Janson", + "playlist_title": "Fix A Drink", + "found_song": { + "artist": "Chris Janson", + "disabled": false, + "favorite": false, + "guid": "9a77ae8b-425b-66e3-9901-328c2f61bd60", + "path": "z://MP4\\KtvEntertainment\\Chris Janson - Fix a Drink Karaoke.mp4", + "title": "Fix a Drink" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Urban", + "playlist_title": "Female", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "28ad1988-ad9a-e768-1d98-e3355a050669", + "path": "z://MP4\\Karaoke Studio\\Keith Urban - Female (Karaoke Version).mp4", + "title": "Female" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aaron Watson", + "playlist_title": "Outta Style", + "found_song": { + "artist": "Aaron Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e20eac4a-479e-3a07-3934-d48f478d3ded", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Watson - Outta Style.mp4", + "title": "Outta Style" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Kane Brown", + "playlist_title": "Heaven", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "8cf650fe-e4c0-b840-1f42-6e31bad6c49a", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown - Heaven (Karaoke Version).mp4", + "title": "Heaven" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Brett Eldredge", + "playlist_title": "The Long Way", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "2692b3e8-3f0f-1382-cae5-ac3443b7d220", + "path": "z://MP4\\Karaoke Studio\\Brett Eldredge - The Long Way (Karaoke Version).mp4", + "title": "The Long Way" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Granger Smith", + "playlist_title": "Happens Like That", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "c9943190-809b-d585-b512-187b0eb2ce5c", + "path": "z://MP4\\Karaoke Studio\\Granger Smith - Happens Like That (Karaoke with Lyrics).mp4", + "title": "Happens Like That" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lee Brice", + "playlist_title": "Boy", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Smooth", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "c7cbfd68-b99d-773e-607f-441d5e1c776e", + "path": "z://MP4\\Karaoke Studio\\Florida Georgia Line - Smooth (Karaoke Version).mp4", + "title": "Smooth" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kane Brown", + "playlist_title": "Found You", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ab8632aa-598f-6e49-3526-65967316d37e", + "path": "z://MP4\\Karaoke Studio\\Kane Brown - Found You (Karaoke Version).mp4", + "title": "Found You" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Michael Ray", + "playlist_title": "Get To You", + "found_song": { + "artist": "Michael Ray", + "disabled": false, + "favorite": false, + "guid": "a6a35c8a-6262-05a1-847b-20db9147ed68", + "path": "z://MP4\\Karaoke Studio\\Michael Ray - Get To You (Karaoke with Lyrics).mp4", + "title": "Get To You" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darius Rucker", + "playlist_title": "For The First Time", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "guid": "86a3b590-7cd7-7c4b-b5be-c57186a82527", + "path": "z://MP4\\Karaoke Studio\\Darius Rucker - For The First Time (Karaoke with Lyrics).mp4", + "title": "For The First Time" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Little Big Town", + "playlist_title": "When Someone Stops Loving You", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "a111ab69-3582-2cf7-27f7-0845c599726c", + "path": "z://MP4\\Stingray Karaoke\\When Someone Stops Loving You Little Big Town Karaoke with Lyrics.mp4", + "title": "When Someone Stops Loving You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Tin Man", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "43f75206-e8fd-748b-ce17-50855894e358", + "path": "z://MP4\\King of Karaoke\\Miranda Lambert - Tin Man - King of Karaoke.mp4", + "title": "Tin Man" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Midland", + "playlist_title": "Make A Little", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "1e9730db-4340-45ea-7142-da2eb5838aa1", + "path": "z://MP4\\KtvEntertainment\\Midland - Make a Little Karaoke.mp4", + "title": "Make a Little" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Brantley Gilbert", + "playlist_title": "Ones That Like Me", + "found_song": { + "artist": "Brantley Gilbert", + "disabled": false, + "favorite": false, + "guid": "dc0f74fb-711c-dfe7-5735-d58602ed3d8b", + "path": "z://MP4\\Karaoke Studio\\Brantley Gilbert - The Ones That Like Me (Karaoke with Lyrics).mp4", + "title": "The Ones That Like Me" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Kane Brown Featuring Lauren Alaina", + "title": "What Ifs", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Thomas Rhett", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Dustin Lynch", + "title": "Small Town Boy", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Kelsea Ballerini", + "title": "Legends", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Easton Corbin", + "title": "A Girl Like You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tim McGraw & Faith Hill", + "title": "The Rest Of Our Life", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jordan Davis", + "title": "Singles You Up", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "High Valley", + "title": "She's With Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Big & Rich", + "title": "California", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Chris Lane Featuring Tori Kelly", + "title": "Take Back Home Girl", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "title": "Up Down", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Cole Swindell", + "title": "Stay Downtown", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Chase Rice", + "title": "Three Chords & The Truth", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "David Lee Murphy & Kenny Chesney", + "title": "Everything's Gonna Be Alright", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Dylan Scott", + "title": "Hooked", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Red Marlow", + "title": "The Dance", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Taylor Swift", + "title": "New Year's Day", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 4, + "missing_count": 18, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2016 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Waste A Moment", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "cad209d7-37d8-4857-a24a-17a979ae70cb", + "path": "z://MP4\\Karaoke Sing Sing\\Kings Of Leon - Waste A Moment (Karaoke Version).mp4", + "title": "Waste A Moment" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Lumineers", + "playlist_title": "Ophelia", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "4d35e840-a495-5597-ca00-f309fff48fbd", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ophelia (Karaoke Version).mp4", + "title": "Ophelia" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Fitz And The Tantrums", + "playlist_title": "HandClap", + "found_song": { + "artist": "Fitz And The Tantrums", + "disabled": false, + "favorite": false, + "guid": "352d05f7-d8c0-034f-f76a-dbeb0c36fde6", + "path": "z://MP4\\King of Karaoke\\Fitz And The Tantrums - HandClap - King of Karaoke.mp4", + "title": "HandClap" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "twenty one pilots", + "playlist_title": "Cancer", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "8d835e62-43e1-dc8e-9434-df9f369b9e91", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Cancer (Karaoke Version).mp4", + "title": "Cancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bastille", + "playlist_title": "Good Grief", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "a16cf0b7-9f7c-4df0-58f4-b9c352ce2020", + "path": "z://MP4\\King of Karaoke\\Bastille - Good Grief - King of Karaoke.mp4", + "title": "Good Grief" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kaleo", + "playlist_title": "Way Down We Go", + "found_song": { + "artist": "Kaleo", + "disabled": false, + "favorite": false, + "guid": "5733f138-96ae-59ea-402e-da2fd17ea925", + "path": "z://MP4\\KtvEntertainment\\Kaleo - Way Down We Go Karaoke Lyrics.mp4", + "title": "Way Down We Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bishop Briggs", + "playlist_title": "River", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "d056b86a-af1c-b358-8b7a-40cea9ba399b", + "path": "z://MP4\\King of Karaoke\\Bishop Briggs - River - King of Karaoke.mp4", + "title": "River" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blink-182", + "playlist_title": "Bored To Death", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "ff7d3959-134d-f8e8-7121-5c367a0e13c3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Blink 182 - Bored to Death - SF364 - 17.mp3", + "title": "Bored to Death" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Dark Necessities", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "b7d8c55a-0212-9786-64e1-3fc8883429a0", + "path": "z://MP4\\KtvEntertainment\\Red Hot Chili Peppers - Dark Necessities Karaoke Lyrics.mp4", + "title": "Dark Necessities" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Green Day", + "playlist_title": "Bang Bang", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "93012853-2ab1-af5d-d1b6-b5998749f1d9", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Bang Bang (Karaoke Version).mp4", + "title": "Bang Bang" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Trouble", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Green Day", + "playlist_title": "Revolution Radio", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf8b1d0f-5805-89f1-2548-bd13abc7e5a1", + "path": "z://MP4\\CCKaraoke\\Green Day - Revolution Radio.mp4", + "title": "Revolution Radio" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Head And The Heart", + "title": "All We Ever Knew", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Panic! At The Disco", + "title": "Bohemian Rhapsody", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Metallica", + "title": "Hardwired", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Beck", + "title": "Wow", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Skillet", + "title": "Feel Invincible", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Fray", + "title": "Singing Low", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Phantogram", + "title": "You Don't Get Me High Anymore", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2016 - Hot R & B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Aminé", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "D.R.A.M. Featuring Lil Yachty", + "title": "Broccoli", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Drake Featuring WizKid & Kyla", + "title": "One Dance", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DJ Khaled Featuring Drake", + "title": "For Free", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Usher Featuring Young Thug", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Post Malone Featuring Justin Bieber", + "title": "Deja Vu", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2016 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Major Lazer Featuring Justin Bieber & MO", + "title": "Cold Water", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "The Chainsmokers Featuring Halsey", + "title": "Closer", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Sia Featuring Sean Paul", + "title": "Cheap Thrills", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Calvin Harris Featuring Rihanna", + "title": "This Is What You Came For", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kiiara", + "title": "Gold", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Charlie Puth Featuring Selena Gomez", + "title": "We Don't Talk Anymore", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Daya", + "title": "Sit Still, Look Pretty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "DJ Snake Featuring Justin Bieber", + "title": "Let Me Love You", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Drake Featuring WizKid & Kyla", + "title": "One Dance", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "gnash Featuring Olivia O'Brien", + "title": "I Hate U I Love U", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 1, + "missing_count": 11, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2016 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jason Aldean", + "playlist_title": "Lights Come On", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "c4940a37-bf90-38da-3006-f590932ca21b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Lights Come On Karaoke Lyrics.mp4", + "title": "Lights Come On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Church Bells", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2fb127d9-b8ab-384a-e9d1-817210938d39", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Church Bells Karaoke Lyrics.mp4", + "title": "Church Bells" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Old Dominion", + "playlist_title": "Song For Another Time", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "4f23529f-5e04-5b37-a3e0-c59435612402", + "path": "z://MP4\\KtvEntertainment\\Old Dominion - Song for Another Time Karaoke Lyrics.mp4", + "title": "Song for Another Time" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Wanna Be That Song", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "198e8564-3efa-a31a-8f36-a29d06b2fcdc", + "path": "z://MP4\\King of Karaoke\\Brett Eldredge - Wanna Be That Song - King of Karaoke.mp4", + "title": "Wanna Be That Song" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tim McGraw", + "playlist_title": "How I'll Always Be", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "d869240f-5d69-1914-1b16-4ce620577f16", + "path": "z://MP4\\KtvEntertainment\\Tim McGraw - How I'll Always Be Karaoke Lyrics.mp4", + "title": "How I'll Always Be" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Maren Morris", + "playlist_title": "80s Mercedes", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "36c6ad47-709e-8c16-fb6c-ea7f6c6bbbcd", + "path": "z://MP4\\King of Karaoke\\Maren Morris - 80's Mercedes - King of Karaoke.mp4", + "title": "80's Mercedes" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Castaway", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc147dd9-db98-e9d7-ec55-e224b034d4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Castaway.mp4", + "title": "Castaway" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Dierks Bentley Featuring Elle King", + "title": "Different For Girls", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Miranda Lambert", + "title": "Vice", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jason Aldean", + "title": "A Little More Summertime", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Florida Georgia Line Featuring Tim McGraw", + "title": "May We All", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 3, + "missing_count": 7, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2016 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Gaga", + "playlist_title": "Perfect Illusion", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "9a283ade-da99-10cf-4ce6-0ab3d2e741dc", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Perfect Illusion (Karaoke Version).mp4", + "title": "Perfect Illusion" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "P!nk", + "playlist_title": "Just Like Fire", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5bca412-08d4-c811-1299-6869c11545b2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Just Like Fire.mp4", + "title": "Just Like Fire" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Mike Posner", + "playlist_title": "I Took A Pill In Ibiza", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "94722783-fde9-b881-ca28-ffaa2e8ace7d", + "path": "z://MP4\\King of Karaoke\\Mike Posner - I Took A Pill In Ibiza - King of Karaoke.mp4", + "title": "I Took A Pill In Ibiza" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lukas Graham", + "playlist_title": "7 Years", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "1abdfb9a-3f16-49da-20fa-27c018e7afda", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - 7 Years (Karaoke Version).mp4", + "title": "7 Years" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Me Too", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8ce83ac-a9c0-a16c-d165-eb1f89e1e11d", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Me Too.mp4", + "title": "Me Too" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Alessia Cara", + "playlist_title": "Scars To Your Beautiful", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "e89f04fa-a5fb-a7ce-e044-242f5f102df2", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Scars To Your Beautiful (Karaoke Version).mp4", + "title": "Scars To Your Beautiful" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Katy Perry", + "playlist_title": "Rise", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "2c2eed9b-e4fc-1402-e226-60b0c6abbe5a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Rise (Karaoke Version).mp4", + "title": "Rise" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Beyonce", + "playlist_title": "Hold Up", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "4369e9b3-383d-bedc-000a-cfe851d157cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Beyonce - Hold Up - SF364 - 04.mp3", + "title": "Hold Up" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chris Brown", + "playlist_title": "Grass Ain't Greener", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "d52b28d1-c381-257c-e387-84a9a3ab1466", + "path": "z://MP4\\KtvEntertainment\\Chris Brown - Grass Ain't Greener (Karaoke without Vocal).mp4", + "title": "Grass Ain't Greener" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Amin�", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Chainsmokers Featuring Halsey", + "title": "Closer", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Major Lazer Featuring Justin Bieber & MO", + "title": "Cold Water", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Sia Featuring Sean Paul", + "title": "Cheap Thrills", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "The Chainsmokers Featuring Daya", + "title": "Don't Let Me Down", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "DJ Snake Featuring Justin Bieber", + "title": "Let Me Love You", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Calvin Harris Featuring Rihanna", + "title": "This Is What You Came For", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "D.R.A.M. Featuring Lil Yachty", + "title": "Broccoli", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Charlie Puth Featuring Selena Gomez", + "title": "We Don't Talk Anymore", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake Featuring WizKid & Kyla", + "title": "One Dance", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ariana Grande Featuring Nicki Minaj", + "title": "Side To Side", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Kiiara", + "title": "Gold", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "gnash Featuring Olivia O'Brien", + "title": "I Hate U I Love U", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Sia Featuring Kendrick Lamar", + "title": "The Greatest", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "DJ Khaled Featuring Drake", + "title": "For Free", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Flume Featuring Kai", + "title": "Never Be Like You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Daya", + "title": "Sit Still, Look Pretty", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Hailee Steinfeld & Grey Featuring Zedd", + "title": "Starving", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "title": "Work From Home", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Usher Featuring Young Thug", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Rihanna Featuring Drake", + "title": "Work", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Dierks Bentley Featuring Elle King", + "title": "Different For Girls", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Future Featuring The Weeknd", + "title": "Low Life", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Martin Garrix & Bebe Rexha", + "title": "In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Fifth Harmony Featuring Fetty Wap", + "title": "All In My Head (Flex)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Miranda Lambert", + "title": "Vice", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Marc E. Bassy Featuring G-Eazy", + "title": "You & Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jason Aldean", + "title": "A Little More Summertime", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Post Malone Featuring Justin Bieber", + "title": "Deja Vu", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Britney Spears Featuring G-Eazy", + "title": "Make Me...", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "YG Featuring Drake & Kamaiyah", + "title": "Why You Always Hatin?", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Skrillex & Rick Ross", + "title": "Purple Lamborghini", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "title": "Too Much Sauce", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "PARTYNEXTDOOR Featuring Drake", + "title": "Come And See Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Lil Yachty", + "title": "1 Night", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wale", + "title": "My PYT", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Florida Georgia Line Featuring Tim McGraw", + "title": "May We All", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Drake", + "title": "Childs Play", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jake Owen", + "title": "American Country Love Song", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Nicky Jam", + "title": "With You Tonight / Hasta El Amanecer", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "title": "Wishing", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "title": "Do You Mind", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Rae Sremmurd Featuring Gucci Mane", + "title": "Black Beatles", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "French Montana Featuring Drake", + "title": "No Shopping", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "21 Savage & Metro Boomin Featuring Future", + "title": "X", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Lil Uzi Vert", + "title": "You Was Right", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Grace Featuring G-Eazy", + "title": "You Don't Own Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 36, + "fuzzy_match_count": 3, + "missing_count": 61, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2015 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Fetty Wap Featuring Remy Boyz", + "title": "679", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Drake & Future", + "title": "Jumpman", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Post Malone", + "title": "White Iverson", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tory Lanez", + "title": "Say It", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Fetty Wap", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Fetty Wap Featuring Monty", + "title": "My Way", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Bryson Tiller", + "title": "Exchange", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Drake", + "title": "Back To Back", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Young Thug", + "title": "Best Friend", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 1, + "missing_count": 17, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2015 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Plush", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Uma Thurman", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "f182f5bf-fdc9-f83b-4fc3-8cc8b8fb7156", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Uma Thurman (Karaoke Version).mp4", + "title": "Uma Thurman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Interstate Love Song", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c310d8b-b8ef-2f7a-c9e9-d92289e70168", + "path": "z://MP4\\VocalStarKaraoke\\Stone Temple Pilots - Interstate Love Song.mp4", + "title": "Interstate Love Song" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "James Bay", + "playlist_title": "Let It Go", + "found_song": { + "artist": "James Bay", + "disabled": false, + "favorite": false, + "guid": "22477687-4e1d-d712-226f-bd4804a20576", + "path": "z://MP4\\Sing King Karaoke\\James Bay - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Coldplay", + "playlist_title": "Everglow", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "c0fd55aa-59f1-ccba-69bc-7a319562be9b", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Everglow SING SING KARAOKE (2).mp4", + "title": "Everglow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Emperor's New Clothes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f26dea3c-f8d7-1d91-43f4-21bc960129a9", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Emperor s New Clothes (Karaoke Version).mp4", + "title": "Emperor s New Clothes" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Coleman Hell", + "playlist_title": "2 Heads", + "found_song": { + "artist": "Coleman Hell", + "disabled": false, + "favorite": false, + "guid": "9282dd1b-e31d-a629-ca08-6e73b5d75e1f", + "path": "z://MP4\\KtvEntertainment\\Coleman Hell - 2 Heads Karaoke Lyrics.mp4", + "title": "2 Heads" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Victorious", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "8f9934c9-345b-f590-6972-08e07ad4172f", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Victorious (Karaoke Version).mp4", + "title": "Victorious" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Vance Joy", + "playlist_title": "Fire And The Flood", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "guid": "bed78baa-c635-684e-8e82-373df3d64cca", + "path": "z://MP4\\KtvEntertainment\\Vance Joy - Fire And The Flood Karaoke Lyrics.mp4", + "title": "Fire And The Flood" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Throne", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef1de65-f7e7-95ed-9b6f-838cd0b0e15e", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Throne.mp4", + "title": "Throne" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Disturbed", + "playlist_title": "The Light", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "95293349-45e4-d019-b487-f2a5c3e76acf", + "path": "z://MP4\\KtvEntertainment\\Disturbed - The Light Karaoke Lyrics.mp4", + "title": "The Light" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Creep", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Nathaniel Rateliff & The Night Sweats", + "title": "S.O.B.", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Cage The Elephant", + "title": "Mess Around", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Death Cab For Cutie", + "title": "The Ghosts Of Beverly Drive", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Shinedown", + "title": "Cut The Cord", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 1, + "missing_count": 4, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2015 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Meghan Trainor Featuring John Legend", + "title": "Like I'm Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Chainsmokers Featuring ROZES", + "title": "Roses", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Shawn Mendes & Camila Cabello", + "title": "I Know What You Did Last Summer", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 2, + "missing_count": 3, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2015 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Chris Young", + "playlist_title": "I'm Comin' Over", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "88b4e560-332f-21d8-e422-af643886485c", + "path": "z://MP4\\KtvEntertainment\\Chris Young - I'm Comin' Over Karaoke Lyrics.mp4", + "title": "I'm Comin' Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Tennessee Whiskey", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d709564-c81f-c9d0-98c1-8e840dda4810", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - Tennessee Whiskey (Karaoke Version).mp4", + "title": "Tennessee Whiskey" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eric Church", + "playlist_title": "Mr. Misunderstood", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6299265f-42fd-3d2d-b6d8-8b7db5e32606", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - Mr Misunderstood.mp4", + "title": "Mr. Misunderstood" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Keith Urban", + "playlist_title": "Break On Me.", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1580035c-5e84-7d7c-44c2-92358c41ae49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Break On Me - Keith Urban.mp4", + "title": "Break On Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Blake Shelton", + "title": "Gonna", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jana Kramer", + "title": "I Got The Boy", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tim McGraw", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Randy Houser", + "title": "We Went", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Brad Paisley", + "title": "Country Nation", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kenny Chesney", + "title": "Save It For A Rainy Day", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Emily Ann Roberts", + "title": "9 To 5", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 10, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2015 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Justin Bieber", + "playlist_title": "Love Yourself", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "7a08a1bc-cd76-6cb3-a6c6-e13e0d06dab7", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Love Yourself (Karaoke Version).mp4", + "title": "Love Yourself" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fetty Wap", + "playlist_title": "Trap Queen", + "found_song": { + "artist": "Fetty Wap", + "disabled": false, + "favorite": false, + "guid": "5767dfb9-338f-32b2-d567-3904fc950fde", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap - Trap Queen (Karaoke Version).mp4", + "title": "Trap Queen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "OMI", + "playlist_title": "Cheerleader", + "found_song": { + "artist": "Omi", + "disabled": false, + "favorite": false, + "guid": "c540b934-5f5f-3a71-b7d3-d6e741719be8", + "path": "z://MP4\\King of Karaoke\\Omi - Cheerleader - King of Karaoke.mp4", + "title": "Cheerleader" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Drag Me Down", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "be1e4656-c769-4e82-4855-ce8d4bd255e1", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Drag Me Down (Karaoke Version).mp4", + "title": "Drag Me Down" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Justin Bieber", + "playlist_title": "I'll Show You", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "53f8885e-3935-fceb-f17b-609be590152e", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - I ll Show You (Karaoke Version).mp4", + "title": "I ll Show You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Flo Rida", + "playlist_title": "My House", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "169f563c-d4fc-a25c-ed64-16fb2ca8c960", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - My House (Karaoke Version).mp4", + "title": "My House" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Used To Love You", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "60195f13-45b7-2885-a108-7fd529c1db28", + "path": "z://MP4\\King of Karaoke\\Gwen Stefani - Used To Love You - King of Karaoke.mp4", + "title": "Used To Love You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rachel Platten", + "playlist_title": "Stand By You", + "found_song": { + "artist": "Rachel Platten", + "disabled": false, + "favorite": false, + "guid": "815dbc1d-b6d5-16a9-4869-dd16da4c443c", + "path": "z://MP4\\Sing King Karaoke\\Rachel Platten - Stand By You (Karaoke Version).mp4", + "title": "Stand By You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "DNCE", + "playlist_title": "Cake By The Ocean", + "found_song": { + "artist": "DNCE", + "disabled": false, + "favorite": false, + "guid": "c89e0315-b92a-f48b-71ae-4fbfce369616", + "path": "z://MP4\\Sing King Karaoke\\DNCE - Cake By The Ocean (Karaoke Version).mp4", + "title": "Cake By The Ocean" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Charlie Puth", + "playlist_title": "One Call Away", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "6b486886-19ab-1362-d2f3-a708badcdece", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - One Call Away (Karaoke Version).mp4", + "title": "One Call Away" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Selena Gomez", + "playlist_title": "Hands To Myself", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "efe55fee-38b6-5f30-9f10-771e89ba1963", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Hands To Myself (Karaoke Version).mp4", + "title": "Hands To Myself" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Adele", + "playlist_title": "When We Were Young", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "beef5188-21b8-62c6-1927-ceb10997e319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When We Were Young - Adele.mp4", + "title": "When We Were Young" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Justin Bieber", + "playlist_title": "Purpose", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1cf6aa40-aec6-2ec4-081d-b6ea7371c784", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Purpose (Karaoke Version).mp4", + "title": "Purpose" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Dawin", + "playlist_title": "Dessert", + "found_song": { + "artist": "Dawin", + "disabled": false, + "favorite": false, + "guid": "cbf6cf3b-0bb3-75da-738d-e7e125062236", + "path": "z://MP4\\Sing King Karaoke\\Dawin - Dessert (Karaoke Version).mp4", + "title": "Dessert" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mark My Words", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "f6f92ea6-2e33-f115-fde6-8b7cf08c9f57", + "path": "z://MP4\\Karaoke Sing Sing\\Justin Bieber - Mark My Words (Karaoke Version) (2).mp4", + "title": "Mark My Words" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Justin Bieber", + "playlist_title": "Company", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "93f7481f-6143-ff0c-fdb9-7223e31bf286", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Company (Karaoke Version).mp4", + "title": "Company" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 16, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Silento", + "playlist_title": "Watch Me", + "found_song": { + "artist": "Silento", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "a53f2732-b795-e1ab-3712-e744569aeeee", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF354\\Silento - Watch Me (Whip - SF354 - 13.mp3", + "title": "Watch Me (Whip" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Meghan Trainor Featuring John Legend", + "title": "Like I'm Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Fetty Wap Featuring Remy Boyz", + "title": "679", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake & Future", + "title": "Jumpman", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Major Lazer & DJ Snake Featuring M0", + "title": "Lean On", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jordan Smith", + "title": "Somebody To Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Post Malone", + "title": "White Iverson", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Chainsmokers Featuring ROZES", + "title": "Roses", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Tory Lanez", + "title": "Say It", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "R. City Featuring Adam Levine", + "title": "Locked Away", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Skrillex & Diplo With Justin Bieber", + "title": "Where Are U Now", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Selena Gomez Featuring A$AP Rocky", + "title": "Good For You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Wiz Khalifa Featuring Charlie Puth", + "title": "See You Again", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Fetty Wap", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Shawn Mendes & Camila Cabello", + "title": "I Know What You Did Last Summer", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bryson Tiller", + "title": "Exchange", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blake Shelton", + "title": "Gonna", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Rudimental Featuring Ed Sheeran", + "title": "Lay It All On Me", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Drake", + "title": "Back To Back", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Justin Bieber Featuring Halsey", + "title": "The Feeling", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jana Kramer", + "title": "I Got The Boy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Young Thug", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Tim McGraw", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "title": "Downtown", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Rae Sremmurd", + "title": "Come Get Her", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "title": "Blase", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Halsey", + "title": "New Americana", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "title": "$ave Dat Money", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Drake", + "title": "Right Hand", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "title": "Play No Games", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "G-Eazy", + "title": "Random", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Justin Bieber Featuring Big Sean", + "title": "No Pressure", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rick Ross Featuring Chris Brown", + "title": "Sorry", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "title": "Drifting", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Chris Brown", + "title": "Liquor", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 6, + "missing_count": 45, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2014 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 17, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Drake", + "playlist_title": "0 To 100 / The Catch Up", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "78a49f5e-07ed-ed85-bc4d-b61af9d3a6f3", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - 0 to 100 The Catch Up (Clean) (Karaoke Version) (2).mp4", + "title": "0 to 100 The Catch Up" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "title": "Only", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Big Sean Featuring E-40", + "title": "I Don't F**k With You", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rae Sremmurd", + "title": "No Type", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jeremih Featuring YG", + "title": "Don't Tell 'Em", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Iggy Azalea Featuring Rita Ora", + "title": "Black Widow", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Usher Featuring Juicy J", + "title": "I Don't Mind", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "J. Cole", + "title": "Wet Dreamz", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Weeknd", + "title": "Often", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "August Alsina", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ne-Yo Featuring Juicy J", + "title": "She Knows", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "title": "G.D.F.R.", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 2, + "fuzzy_match_count": 1, + "missing_count": 22, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2014 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Coldplay", + "playlist_title": "A Sky Full Of Stars", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "755b2c44-461f-1bb0-ccf1-14aa07f2c86b", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - A Sky Full Of Stars (Karaoke Version).mp4", + "title": "A Sky Full Of Stars" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Foo Fighters", + "playlist_title": "Something From Nothing", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "02b80c6d-ccc3-34ef-5767-d5aa8b5fe258", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF345\\Foo Fighters - Something From Nothing - SF345 - 03.mp3", + "title": "Something From Nothing" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Immortals", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "876e323d-9bae-203c-53ef-3193d9963db9", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Immortals - From Big Hero 6 (Karaoke Version).mp4", + "title": "Immortals" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "alt-J", + "playlist_title": "Left Hand Free", + "found_song": { + "artist": "Alt-J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8143c16-0c64-a8bd-5550-2383e87cfd99", + "path": "z://MP4\\KaraokeOnVEVO\\alt-J - Left Hand Free.mp4", + "title": "Left Hand Free" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Ezra", + "playlist_title": "Budapest", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "2867108f-d519-272f-0dae-c7dd15c06c9e", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Budapest (Karaoke Version).mp4", + "title": "Budapest" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Cigarette Daydreams", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77b2a0e6-b890-12eb-d6df-28b5f10ffeb5", + "path": "z://MP4\\Sing King Karaoke\\Cage The Elephant - Cigarette Daydreams (Karaoke Version).mp4", + "title": "Cigarette Daydreams" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "MisterWives", + "playlist_title": "Reflections", + "found_song": { + "artist": "MisterWives", + "disabled": false, + "favorite": false, + "guid": "f6b651aa-803f-b72c-03a9-6b00b6e94d8c", + "path": "z://MP4\\Sing King Karaoke\\MisterWives - Reflections (Karaoke Version).mp4", + "title": "Reflections" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Royal Blood", + "playlist_title": "Figure It Out", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa4f9c97-9633-6b76-8138-d61b035e75b1", + "path": "z://CDG\\Mr Entertainer\\MRH121\\Royal Blood - Figure It Out.mp3", + "title": "Figure It Out" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Drown", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "guid": "90b613c1-757f-e002-824e-731a0fc8d057", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Drown (Karaoke Version).mp4", + "title": "Drown" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hozier", + "playlist_title": "Work Song", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2547416-7674-f7b1-bd29-9be6b24453f9", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Work Song (Karaoke Version).mp4", + "title": "Work Song" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Wrong Side Of Heaven", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "ad36a006-2fff-91f7-8bdb-720911a78d6d", + "path": "z://MP4\\KtvEntertainment\\Five Finger Death Punch - Wrong Side Of Heaven Karaoke Lyrics.mp4", + "title": "Wrong Side Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Flaws", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "71b6e7e2-3ad5-1b46-b4b5-d33b961451f7", + "path": "z://MP4\\Bastille - Flaws.mp4", + "title": "Flaws" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Matt McAndrew", + "playlist_title": "I Still Haven't Found What I'm Looking For", + "found_song": { + "artist": "Matt McAndrew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd0c6937-2ff2-c0af-fe0a-37d74cf5c52c", + "path": "z://MP4\\VocalStarKaraoke\\Matt McAndrew - I Still Havent Found What Im Looking For.mp4", + "title": "I Still Havent Found What Im Looking For" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Hozier", + "title": "From Eden", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Matt McAndrew", + "title": "The Blower's Daughter", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Matt McAndrew", + "title": "Take Me To Church", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Vance Joy", + "title": "Mess Is Mine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 19, + "fuzzy_match_count": 1, + "missing_count": 5, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2014 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Calvin Harris Featuring John Newman", + "title": "Blame", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Ariana Grande & The Weeknd", + "title": "Love Me Harder", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alesso Featuring Tove Lo", + "title": "Heroes (We Could Be)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jeremih Featuring YG", + "title": "Don't Tell 'Em", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 2, + "missing_count": 7, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2014 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Hunt", + "playlist_title": "Leave The Night On", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "295e7c57-de8b-5b7d-5a04-3102a209f468", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave The Night On - Sam Hunt.mp4", + "title": "Leave The Night On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Aldean", + "playlist_title": "Burnin' It Down", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "d8631246-1e3d-d905-a39f-4bc522ce8b6b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Burnin' It Down (Karaoke without Vocal).mp4", + "title": "Burnin' It Down" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Dirt", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Chase Bryant", + "playlist_title": "Take It On Back", + "found_song": { + "artist": "Chase Bryant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe12b394-7425-6010-b179-791880923457", + "path": "z://MP4\\KaraokeOnVEVO\\Chase Bryant - Take It On Back.mp4", + "title": "Take It On Back" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Tim McGraw", + "title": "Shotgun Rider", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Carrie Underwood", + "title": "Something In The Water", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Blake Shelton Featuring Ashley Monroe", + "title": "Lonely Tonight", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "RaeLynn", + "title": "God Made Girls", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lee Brice", + "title": "Drinking Class", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Brett Eldredge", + "title": "Mean To Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jason Aldean", + "title": "Just Gettin' Started", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Randy Houser", + "title": "Like A Cowboy", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Darius Rucker", + "title": "Homegrown Honey", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chris Young", + "title": "Lonely Eyes", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 2, + "missing_count": 11, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2014 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Thinking Out Loud", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "f8a54394-79e6-ddc0-5002-27016e44d273", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Thinking Out Loud (Karaoke Version).mp4", + "title": "Thinking Out Loud" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Meghan Trainor", + "playlist_title": "All About That Bass", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "8f68942b-7cae-84f6-4869-7d21f1f35bce", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - All About That Bass (Karaoke Version).mp4", + "title": "All About That Bass" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sam Smith", + "playlist_title": "Stay With Me", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "b11eb09e-0437-5d09-6e4a-1d9929bab6c5", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Stay With Me (Karaoke Version).mp4", + "title": "Stay With Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sia", + "playlist_title": "Chandelier", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "a42f7801-81f3-7f66-da39-26fd858014d5", + "path": "z://MP4\\Sing King Karaoke\\Sia - Chandelier.mp4", + "title": "Chandelier" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Fergie", + "playlist_title": "L.A.LOVE (la la)", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "22eb71fb-8304-0c17-77a8-5e598ad246fd", + "path": "z://MP4\\Sing King Karaoke\\Fergie - L.A. LOVE (la la) (Karaoke Version).mp4", + "title": "L.A. LOVE (la la)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "MAGIC!", + "playlist_title": "Rude", + "found_song": { + "artist": "MAGIC!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "684cc978-b89f-a373-ec6c-7e3b5661539d", + "path": "z://MP4\\Sing King Karaoke\\MAGIC! - Rude.mp4", + "title": "Rude" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Echosmith", + "playlist_title": "Cool Kids", + "found_song": { + "artist": "Echosmith", + "disabled": false, + "favorite": false, + "guid": "1acb8ac0-3c5b-ce75-faf8-d0119a4f4a84", + "path": "z://MP4\\Sing King Karaoke\\Echosmith - Cool Kids.mp4", + "title": "Cool Kids" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Pentatonix", + "playlist_title": "Mary, Did You Know?", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82cb1af2-b3fc-5ec4-f487-7f70764e4175", + "path": "z://MP4\\Sing King Karaoke\\Pentatonix - Mary Did You Know.mp4", + "title": "Mary Did You Know?" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "One Direction", + "playlist_title": "Night Changes", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "99c87e5e-60f4-6083-e4af-5e33c635fed8", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Night Changes (Karaoke Version).mp4", + "title": "Night Changes" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Make It Rain", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "09894667-d370-a18f-8e78-16da9900ae22", + "path": "z://MP4\\Karaoke Sing Sing\\Ed Sheeran - Make It Rain SING SING KARAOKE.mp4", + "title": "Make It Rain" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Ella Henderson", + "playlist_title": "Ghost", + "found_song": { + "artist": "Ella Henderson", + "disabled": false, + "favorite": false, + "guid": "e3eb72ca-acaa-4f52-194c-d99235fdae43", + "path": "z://MP4\\Sing King Karaoke\\Ella Henderson - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "OneRepublic", + "playlist_title": "I Lived", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": true, + "guid": "68397f59-8665-0b1f-4b26-4aa8848e94dc", + "path": "z://MP4\\Karaoke Sing Sing\\One Republic - I Lived (Karaoke Version).mp4", + "title": "I Lived" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "One Direction", + "playlist_title": "Steal My Girl", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "ac1d17ca-1ae1-2a57-5efa-50b8512f80f5", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Steal My Girl (Karaoke Version).mp4", + "title": "Steal My Girl" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Try", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "b627772e-af4b-6f45-edc6-eb5db660bd93", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Try (Karaoke Version).mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sam Smith", + "playlist_title": "Have Yourself A Merry Little Christmas", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "076f16c4-dd02-801d-32c7-f3722cb44972", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have Yourself a Merry Little Christmas - Sam Smith.mp4", + "title": "Have Yourself a Merry Little Christmas" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Charli XCX", + "playlist_title": "Break The Rules", + "found_song": { + "artist": "Charli XCX", + "disabled": false, + "favorite": false, + "guid": "5a4dc2d0-1090-8489-9ce3-cebc7f6e963e", + "path": "z://MP4\\Sing King Karaoke\\Charli XCX - Break The Rules.mp4", + "title": "Break The Rules" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Ariana Grande", + "playlist_title": "Santa Tell Me", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "13d3b934-253a-71d0-f70d-cf517134e12b", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Santa Tell Me (Karaoke Version).mp4", + "title": "Santa Tell Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Taylor Swift", + "playlist_title": "Style", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b218a76-caab-8f88-1c59-92ea2c35d271", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Style (Karaoke Version).mp4", + "title": "Style" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Nico & Vinz", + "playlist_title": "In Your Arms", + "found_song": { + "artist": "Nico And Vinz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e52879fa-4003-e67d-b723-ffbd1d1ef7f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nico And Vinz - In Your Arms.mp4", + "title": "In Your Arms" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ariana Grande & The Weeknd", + "title": "Love Me Harder", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "title": "Only", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Big Sean Featuring E-40", + "title": "I Don't F**k With You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Calvin Harris Featuring John Newman", + "title": "Blame", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rae Sremmurd", + "title": "No Type", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "title": "The Hanging Tree", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jeremih Featuring YG", + "title": "Don't Tell 'Em", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Iggy Azalea Featuring Rita Ora", + "title": "Black Widow", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Alesso Featuring Tove Lo", + "title": "Heroes (We Could Be)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Clean Bandit Featuring Jess Glynne", + "title": "Rather Be", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Usher Featuring Juicy J", + "title": "I Don't Mind", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Carrie Underwood", + "title": "Something In The Water", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tim McGraw", + "title": "Shotgun Rider", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "T.I. Featuring Young Thug", + "title": "About The Money", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blake Shelton Featuring Ashley Monroe", + "title": "Lonely Tonight", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "David Guetta Featuring Sam Martin", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "RaeLynn", + "title": "God Made Girls", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Lee Brice", + "title": "Drinking Class", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "J. Cole", + "title": "Wet Dreamz", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "The Weeknd", + "title": "Often", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "August Alsina", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Lillywood & Robin Schulz", + "title": "Prayer In C", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Matt McAndrew", + "title": "Make It Rain", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brett Eldredge", + "title": "Mean To Me", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jason Aldean", + "title": "Just Gettin' Started", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ne-Yo Featuring Juicy J", + "title": "She Knows", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "title": "G.D.F.R.", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Pitbull Featuring John Ryan", + "title": "Fireball", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Randy Houser", + "title": "Like A Cowboy", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kid Ink Featuring Usher & Tinashe", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Fifth Harmony", + "title": "Sledgehammer", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jessie J Featuring 2 Chainz", + "title": "Burnin' Up", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Darius Rucker", + "title": "Homegrown Honey", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Chris Jamison", + "title": "When I Was Your Man", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 8, + "missing_count": 49, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2013 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 10, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jay Z", + "playlist_title": "Tom Ford", + "found_song": { + "artist": "Jay-Z", + "disabled": false, + "favorite": false, + "guid": "0cabe71d-3fd3-5e55-f7c7-4641d1cb32ac", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-16 - Jay-Z - Tom Ford.mp3", + "title": "Tom Ford" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sage The Gemini", + "playlist_title": "Red Nose", + "found_song": { + "artist": "Sage The Gemini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcf67008-1ab8-3cb8-b030-ec8ea361224e", + "path": "z://MP4\\KaraokeOnVEVO\\Sage The Gemini - Red Nose.mp4", + "title": "Red Nose" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Drake Featuring Majid Jordan", + "title": "Hold On, We're Going Home", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "title": "Blurred Lines", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Jay Z Featuring Justin Timberlake", + "title": "Holy Grail", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Chris Brown Featuring Nicki Minaj", + "title": "Love More", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Justin Bieber Featuring Chance The Rapper", + "title": "Confident", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "B.o.B Featuring 2 Chainz", + "title": "HeadBand", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Drake", + "title": "The Language", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kanye West", + "title": "Bound 2", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "title": "Beware", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Future", + "title": "Honest", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2013 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Fray", + "playlist_title": "Love Don't Die", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "37811064-765b-76a8-8b4e-4b0652b0d6dd", + "path": "z://CDG\\Various\\The Fray - Love Don't Die.mp3", + "title": "Love Don't Die" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lorde", + "playlist_title": "Tennis Court", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7465e20b-513e-5079-3152-e7f8be05a3e0", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Tennis Court.mp4", + "title": "Tennis Court" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "dc91acac-7fc3-8c74-edc5-3d1b13901558", + "path": "z://MP4\\singsongsmusic\\Come a Little Closer - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Come a Little Closer" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ed Sheeran", + "playlist_title": "I See Fire", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f00d40a1-dea9-1742-4463-5329315afe1e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - I See Fire.mp4", + "title": "I See Fire" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Afraid", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78568769-9350-4321-372b-09a79b3015a8", + "path": "z://MP4\\sing2karaoke\\The Neighbourhood - Stargazing.mp4", + "title": "Stargazing" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Fitz And The Tantrums", + "title": "Out Of My League", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Will Champlin", + "title": "Carry On", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Goo Goo Dolls", + "title": "Come To Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Zach Sobiech", + "title": "Clouds", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "John Mayer Featuring Katy Perry", + "title": "Who You Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Pearl Jam", + "title": "Sirens", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "James Wolpert", + "title": "With Or Without You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Panic! At The Disco Featuring Lolo", + "title": "Miss Jackson", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 1, + "missing_count": 8, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2013 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Pitbull Featuring Ke$ha", + "title": "Timber", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Zedd Featuring Hayley Williams", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lady Gaga Featuring R. Kelly", + "title": "Do What U Want", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Drake Featuring Majid Jordan", + "title": "Hold On, We're Going Home", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 0, + "missing_count": 6, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2013 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3195824-889c-f526-d404-1de6ef07685d", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Girl.mp4", + "title": "Southern Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eric Church", + "playlist_title": "The Outsiders", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c0b6326-f05e-88d1-3c0d-bc5dee871bf6", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - The Outsiders.mp4", + "title": "The Outsiders" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Keith Urban And Miranda Lambert", + "title": "We Were Us", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Band Perry", + "title": "Don't Let Me Be Lonely", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jason Aldean", + "title": "When She Says Baby", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Eric Paslay", + "title": "Friday Night", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Darius Rucker", + "title": "Radio", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jon Pardi", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lady Antebellum", + "title": "Compass", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Hunter Hayes Featuring Jason Mraz", + "title": "Everybody's Got Somebody But Me", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Scotty McCreery", + "title": "See You Tonight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Danielle Bradbery", + "title": "The Heart Of Dixie", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dierks Bentley", + "title": "I Hold On", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dan + Shay", + "title": "19 You + Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 14, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2013 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Brave", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "caa0c3a8-b02d-9c1d-2304-32142a03284c", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Brave (Karaoke Version).mp4", + "title": "Brave" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Pentatonix", + "playlist_title": "Little Drummer Boy", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "guid": "4938c900-9ef0-3af2-a628-8fe23397b25d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Drummer Boy - Pentatonix.mp4", + "title": "Little Drummer Boy" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Idina Menzel", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Idina Menzel", + "disabled": false, + "favorite": false, + "guid": "56334839-05ed-7454-0b90-c53a93a24c12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Go - Idina Menzel.mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Demi Lovato", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "7b157570-ca27-c77e-5ad3-807e270c40fa", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Avicii", + "playlist_title": "Hey Brother", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "38af0fa3-dc87-49dd-9932-d3162451a8c6", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Hey Brother (Karaoke Version).mp4", + "title": "Hey Brother" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Zendaya", + "playlist_title": "Replay", + "found_song": { + "artist": "Zendaya", + "disabled": false, + "favorite": false, + "guid": "f6f3f2e7-3e70-4b94-35c5-7e4c21a29e08", + "path": "z://MP4\\Sing King Karaoke\\Zendaya - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "John Newman", + "playlist_title": "Love Me Again", + "found_song": { + "artist": "John Newman", + "disabled": false, + "favorite": false, + "guid": "eb3bfb04-cf4a-8c1c-fabe-401813d0a6ed", + "path": "z://MP4\\Sing King Karaoke\\John Newman - Love Me Again (Karaoke Version).mp4", + "title": "Love Me Again" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lea Michele", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Lea Michele", + "disabled": false, + "favorite": false, + "guid": "b4f39356-c89a-127e-3dc4-e986b4966f10", + "path": "z://MP4\\Sing King Karaoke\\Lea Michele - Cannonball (Karaoke Version).mp4", + "title": "Cannonball" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Britney Spears", + "playlist_title": "Perfume", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "a157836c-15f8-b100-11a4-1c1ec599cb3d", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Perfume (Karaoke Version).mp4", + "title": "Perfume" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Justin Bieber", + "playlist_title": "All That Matters", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "fb4e9b2f-3940-a799-b134-4ecbfcdc68a4", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - All That Matters (Karaoke Version).mp4", + "title": "All That Matters" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Aloe Blacc", + "playlist_title": "The Man", + "found_song": { + "artist": "Aloe Blacc", + "disabled": false, + "favorite": false, + "guid": "b57f2ee6-ff91-84dc-66b2-a8ee607c49cf", + "path": "z://MP4\\Sing King Karaoke\\Aloe Blacc - The Man (Karaoke Version).mp4", + "title": "The Man" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ylvis", + "playlist_title": "The Fox", + "found_song": { + "artist": "Ylvis", + "disabled": false, + "favorite": false, + "guid": "1adc96dd-f351-3632-3d76-191986cf9ac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Fox - Ylvis.mp4", + "title": "The Fox" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rihanna", + "playlist_title": "What Now", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "bcb54a88-9046-2923-e3c8-a9c45ebfe3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Now - Rihanna.mp4", + "title": "What Now" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "One Direction", + "playlist_title": "Best Song Ever", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "94fc2667-cc35-d3da-6be9-0538dfeb2c79", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Best Song Ever (Karaoke Version).mp4", + "title": "Best Song Ever" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Eminem", + "playlist_title": "Survival", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "86dfcb4f-eb1b-694d-35a1-0a9215f0f9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Survival (Karaoke).mp4", + "title": "Survival" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 47, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Lana Del Rey & Cedric Gervais", + "playlist_title": "Summertime Sadness", + "found_song": { + "artist": "Lana Del Rey vs Cedric Gervais", + "disabled": false, + "favorite": false, + "guid": "4582e68f-8326-86aa-ffb8-b5ba9e987e94", + "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey vs Cedric Gervais - Summertime Sadness (Karaoke Version).mp4", + "title": "Summertime Sadness" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Childish Gambino", + "playlist_title": "V. 3005", + "found_song": { + "artist": "Childish Gambino", + "disabled": false, + "favorite": false, + "guid": "71dbca8a-2d8d-1bc3-e214-b1c926111f68", + "path": "z://MP4\\KtvEntertainment\\Childish Gambino - 3005 Karaoke Lyrics.mp4", + "title": "3005" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Pitbull Featuring Ke$ha", + "title": "Timber", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "A Great Big World & Christina Aguilera", + "title": "Say Something", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Majid Jordan", + "title": "Hold On, We're Going Home", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lady Gaga Featuring R. Kelly", + "title": "Do What U Want", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Zedd Featuring Hayley Williams", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Katy Perry Featuring Juicy J", + "title": "Dark Horse", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "title": "Blurred Lines", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jay Z Featuring Justin Timberlake", + "title": "Holy Grail", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Chris Brown Featuring Nicki Minaj", + "title": "Love More", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Justin Bieber Featuring Chance The Rapper", + "title": "Confident", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Rebecca Black & Dave Days", + "title": "Saturday", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Martin Garrix", + "title": "Animals", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Keith Urban And Miranda Lambert", + "title": "We Were Us", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Band Perry", + "title": "Don't Let Me Be Lonely", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jason Aldean", + "title": "When She Says Baby", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Eric Paslay", + "title": "Friday Night", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Tessanne Chin", + "title": "Bridge Over Troubled Water", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Darius Rucker", + "title": "Radio", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Joe Nichols", + "title": "Sunny And 75", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "B.o.B Featuring 2 Chainz", + "title": "HeadBand", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Drake", + "title": "The Language", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jon Pardi", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Lady Antebellum", + "title": "Compass", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Kanye West", + "title": "Bound 2", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Hunter Hayes Featuring Jason Mraz", + "title": "Everybody's Got Somebody But Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Future", + "title": "Honest", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "T-Pain Featuring B.o.B", + "title": "Up Down (Do This All Day)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Scotty McCreery", + "title": "See You Tonight", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jacquie Lee", + "title": "Angel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "R. Kelly Featuring 2 Chainz", + "title": "My Story", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Juicy J Featuring Wale & Trey Songz", + "title": "Bounce It", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "title": "Old School Love", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Danielle Bradbery", + "title": "The Heart Of Dixie", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Drake Featuring Jay Z", + "title": "Pound Cake / Paris Morton Music 2", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ariana Grande Featuring Big Sean", + "title": "Right There", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 51, + "fuzzy_match_count": 3, + "missing_count": 46, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2012 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "title": "Thrift Shop", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Alicia Keys Featuring Nicki Minaj", + "title": "Girl On Fire", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "title": "Pop That", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "2 Chainz Featuring Kanye West", + "title": "Birthday Song", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "title": "Mercy", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "2 Chainz Featuring Drake", + "title": "No Lie", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kendrick Lamar Featuring Drake", + "title": "Poetic Justice", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 1, + "missing_count": 16, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2012 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "fun.", + "playlist_title": "Carry On", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "82fe920e-86df-5765-9667-681ccca2efcd", + "path": "z://MP4\\KtvEntertainment\\Fun - Carry On (Karaoke without Vocal).mp4", + "title": "Carry On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Mountain Sound", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "5d25f1d3-9d70-84c1-0ca5-047b69d30b30", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Mountain Sound (Karaoke Version).mp4", + "title": "Mountain Sound" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Lumineers", + "playlist_title": "Flowers In Your Hair", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13e77c93-a65f-401c-1d01-255a56fc7a3b", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Flowers In Your Hair.mp4", + "title": "Flowers In Your Hair" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Imagine Dragons", + "playlist_title": "On Top Of The World", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "5c49e1f8-a89a-dee4-88f4-e0a7cb3bb1a5", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - On Top Of The World (Karaoke Version).mp4", + "title": "On Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Gone, Gone, Gone", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "30682282-2d72-cc83-fc80-16caf97be392", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Gone Gone Gone Karaoke Lyrics.mp4", + "title": "Gone Gone Gone" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Lumineers", + "playlist_title": "Slow It Down", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "5aeb2093-8a76-6e29-495e-3cbca514cf7e", + "path": "z://MP4\\singsongsmusic\\Slow it Down - Karaoke HD (In the style of The Lumineers).mp4", + "title": "Slow it Down" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Give Me Love", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "eca5239c-2e07-ae99-2f14-d6a93a3d056d", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Give Me Love (Karaoke Version).mp4", + "title": "Give Me Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "The Black Keys", + "playlist_title": "Little Black Submarines", + "found_song": { + "artist": "Black Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ba586-f058-c250-ab83-5e504592148f", + "path": "z://CDG\\SBI\\SBI-02\\SBI25976 - Black Keys - Little Black Submarines.mp3", + "title": "Little Black Submarines" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mumford & Sons", + "title": "Babel", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Atlas Genius", + "title": "Trojans", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Three Days Grace", + "title": "Chalk Outline", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2012 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 13, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Justin Bieber Featuring Nicki Minaj", + "title": "Beauty And A Beat", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Swedish House Mafia Featuring John Martin", + "title": "Don't You Worry Child", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Pitbull Featuring TJR", + "title": "Don't Stop The Party", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Script Featuring will.i.am", + "title": "Hall Of Fame", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 2, + "missing_count": 4, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2012 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Blown Away", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "e26d8f42-acc8-c8e9-9985-ca1569bdaa63", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Blown Away (Karaoke).mp4", + "title": "Blown Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Lee Brice", + "playlist_title": "Hard To Love", + "found_song": { + "artist": "Brice, Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "111218e0-f57b-585e-7899-94124086260c", + "path": "z://CDG\\SBI\\SBI-03\\SB25837 - Lee Brice - Hard To Love.mp3", + "title": "Hard To Love" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "The Band Perry", + "title": "Better Dig Two", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Gary Allan", + "title": "Every Storm (Runs Out Of Rain)", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Eric Church", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dierks Bentley", + "title": "Tip It On Back", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 4, + "missing_count": 10, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2012 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "PSY", + "playlist_title": "Gangnam Style", + "found_song": { + "artist": "PSY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2a8ca1-50f5-17eb-8a9d-a752d85e186a", + "path": "z://MP4\\KaraokeOnVEVO\\PSY - Gangnam Style.mp4", + "title": "Gangnam Style" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Wake Me Up", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "705fa6d8-1880-71e3-6875-b69b4e0c87e3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Don t Wake Me Up (Karaoke Version).mp4", + "title": "Don t Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Lights", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "b02900ba-259f-2b46-4b8b-b3e18c0bea92", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Lights (Karaoke Version).mp4", + "title": "Lights" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "P!nk", + "playlist_title": "Blow Me (One Last Kiss)", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01062027-80b0-9e8e-3b4d-8ae931557032", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Blow Me (One Last Kiss.mp4", + "title": "Blow Me (One Last Kiss)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Carly Rae Jepsen", + "playlist_title": "Call Me Maybe", + "found_song": { + "artist": "Carly Rae Jepsen", + "disabled": false, + "favorite": false, + "guid": "5822149a-b88d-3786-04c8-fb1f9ba39e08", + "path": "z://MP4\\Sing King Karaoke\\Carly Rae Jepsen - Call Me Maybe (Karaoke Version).mp4", + "title": "Call Me Maybe" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Anything Could Happen", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f5d14a1-48ee-f66b-b98a-0a023f02e340", + "path": "z://MP4\\KaraokeOnVEVO\\Ellie Goulding - Anything Could Happen.mp4", + "title": "Anything Could Happen" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Maroon 5", + "playlist_title": "Daylight", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "12d6183b-ae99-e725-9b80-81743f4da88f", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Daylight (Karaoke Version).mp4", + "title": "Daylight" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Adele", + "playlist_title": "Skyfall", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a43094f9-69b0-d016-8c33-06679647fa10", + "path": "z://MP4\\Sing King Karaoke\\Adele - Skyfall.mp4", + "title": "Skyfall" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "One Direction", + "playlist_title": "Live While We're Young", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "4dc95ef7-f7c0-a9f9-6692-b8e76a1b3767", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Live While We re Young (Karaoke Version).mp4", + "title": "Live While We re Young" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Bridgit Mendler", + "playlist_title": "Ready Or Not", + "found_song": { + "artist": "Bridgit Mendler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c9d31d8-a873-2675-fbaf-22b105dfd970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bridgit Mendler - Ready Or Not.mp4", + "title": "Ready Or Not" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Two Black Cadillacs", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "f6e06bc3-c52b-f77b-8318-11090cdd0236", + "path": "z://MP4\\TheKARAOKEChannel\\Two Black Cadillacs in the style of Carrie Underwood Karaoke with Lyrics.mp4", + "title": "Two Black Cadillacs" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Beyonce", + "playlist_title": "Dance For You", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9989e791-e729-5fb9-7d4c-1547637cf548", + "path": "z://CDG\\SBI\\SBI-03\\SB27080 - Beyonce - Dance For You.mp3", + "title": "Dance For You" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Tamar Braxton", + "playlist_title": "Love And War", + "found_song": { + "artist": "Tamar Braxton", + "disabled": false, + "favorite": false, + "guid": "a0168353-c8de-aadc-a96a-85334c45ca74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love And War - Tamar Braxton.mp4", + "title": "Love And War" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Justin Bieber Featuring Nicki Minaj", + "title": "Beauty And A Beat", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Swedish House Mafia Featuring John Martin", + "title": "Don't You Worry Child", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "title": "Thrift Shop", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "will.i.am Featuring Britney Spears", + "title": "Scream & Shout", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alicia Keys Featuring Nicki Minaj", + "title": "Girl On Fire", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Justin Bieber Featuring Big Sean", + "title": "As Long As You Love Me", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull Featuring TJR", + "title": "Don't Stop The Party", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Calvin Harris Featuring Florence Welch", + "title": "Sweet Nothing", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Script Featuring will.i.am", + "title": "Hall Of Fame", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "The Band Perry", + "title": "Better Dig Two", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gotye Featuring Kimbra", + "title": "Somebody That I Used To Know", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "OneRepublic", + "title": "Feel Again", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Gary Allan", + "title": "Every Storm (Runs Out Of Rain)", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Eric Church", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "2 Chainz Featuring Kanye West", + "title": "Birthday Song", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Kendrick Lamar Featuring Drake", + "title": "Poetic Justice", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ludacris Featuring Usher & David Guetta", + "title": "Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Dierks Bentley", + "title": "Tip It On Back", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Future", + "title": "Neva End", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Meek Mill Featuring Kirko Bangz", + "title": "Young & Gettin' It", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jonn Hart Featuring iamSU", + "title": "Who Booty", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Kelly Rowland Featuring Lil Wayne", + "title": "Ice", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trinidad James", + "title": "All Gold Everything", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ludacris Featuring Kelly Rowland", + "title": "Representin'", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "50 Cent Featuring Eminem & Adam Levine", + "title": "My Life", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Enrique Iglesias Featuring Sammy Adams", + "title": "Finally Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 51, + "fuzzy_match_count": 6, + "missing_count": 43, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2011 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Foo Fighters", + "playlist_title": "Walk", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4dce7d7e-8e47-35db-78fd-ff93e2d366a2", + "path": "z://CDG\\Big Hits Karaoke\\BHK019\\BHK019-07 - Foo Fighters - Walk.mp3", + "title": "Walk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Monarchy Of Roses", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "253830f4-2393-35be-2ddc-067ed16012db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Monarchy Of Roses - Red Hot Chili Peppers.mp4", + "title": "Monarchy Of Roses" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Evanescence", + "playlist_title": "What You Want", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "guid": "e064a100-c44a-b603-2d13-76431126c6d6", + "path": "z://CDG\\Big Hits Karaoke\\BHK023\\BHK023-05 - Evanescence - What You Want.mp3", + "title": "What You Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Foo Fighters", + "playlist_title": "Rope", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4be85a29-144c-b6b7-f8cc-6b428b3562fb", + "path": "z://MP4\\Sing King Karaoke\\Foo Fighters - Rope (Karaoke Version).mp4", + "title": "Rope" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Adventures Of Rain Dance Maggie", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "f293144c-b9b5-b5a0-10bb-f0005a7f9480", + "path": "z://CDG\\Big Hits Karaoke\\BHK021\\BHK021-06 - Red Hot Chili Peppers - Adventures Of Rain Dance Maggie, The.mp3", + "title": "Adventures Of Rain Dance Maggie, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Bush", + "title": "The Sound Of Winter", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Chevelle", + "title": "Face To The Floor", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Foo Fighters", + "title": "These Days", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Seether", + "title": "Tonight", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Avenged Sevenfold", + "title": "Buried Alive", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Nickelback", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Staind", + "title": "Not Again", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young The Giant", + "title": "Cough Syrup", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Switchfoot", + "title": "Dark Horses", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Korn Featuring Skrillex & Kill The Noise", + "title": "Narcissistic Cannibal", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Adelitas Way", + "title": "The Collapse", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Foster The People", + "title": "Helena Beat", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Volbeat", + "title": "A Warrior's Call", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Blink-182", + "title": "After Midnight", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster The People", + "title": "Don't Stop (Color On The Walls)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Cage The Elephant", + "title": "Aberdeen", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 1, + "missing_count": 16, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2011 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Rihanna Featuring Calvin Harris", + "title": "We Found Love", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "David Guetta Featuring Usher", + "title": "Without You", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Gym Class Heroes Featuring Adam Levine", + "title": "Stereo Hearts", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Maroon 5 Featuring Christina Aguilera", + "title": "Moves Like Jagger", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Cobra Starship Featuring Sabi", + "title": "You Make Me Feel...", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Drake", + "title": "Headlines", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 1, + "missing_count": 7, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2011 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "641fd516-918a-d489-27ac-5dfc5cec1d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Where I Come From.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jason Aldean", + "title": "Tattoos On This Town", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "David Nail", + "title": "Let It Rain", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Chris Young", + "title": "You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Band Perry", + "title": "All Your Life", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kenny Chesney", + "title": "Reality", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brad Paisley", + "title": "Camouflage", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Hunter Hayes", + "title": "Storm Warning", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "George Strait", + "title": "Love's Gonna Make It Alright", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jake Owen", + "title": "Alone With You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sara Evans", + "title": "My Heart Can't Tell You No", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "James Wesley", + "title": "Didn't I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 2, + "missing_count": 14, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2011 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Just A Kiss", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "a81c933d-a6cf-6ed1-5df2-da0f4e8f831c", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Just A Kiss (Karaoke Version).mp4", + "title": "Just A Kiss" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mistletoe", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "14f98985-95a4-5b33-156a-61c2d2ae1fca", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Mistletoe (Karaoke Version).mp4", + "title": "Mistletoe" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Bass", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "2f417a85-4982-f23b-1694-1d983e5b3795", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Bass (Karaoke Version).mp4", + "title": "Super Bass" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Blake Shelton", + "playlist_title": "God Gave Me You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "5e6c1262-d330-6e28-d8b2-7563f3f4439c", + "path": "z://MP4\\KtvEntertainment\\Blake Shelton - God Gave Me You (Karaoke without Vocal).mp4", + "title": "God Gave Me You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Breathe Carolina", + "playlist_title": "Blackout", + "found_song": { + "artist": "Breathe Carolina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a76b4f39-46ad-6a1e-68a0-71598605d86b", + "path": "z://CDG\\SBI\\SBI-03\\SB25502 - Breathe Carolina - Blackout.mp3", + "title": "Blackout" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Jason Derulo", + "playlist_title": "It Girl", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "9305880d-ee07-8743-8bc0-1c03303ce8df", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - It Girl (Karaoke Version).mp4", + "title": "It Girl" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Tyga", + "playlist_title": "Rack City", + "found_song": { + "artist": "Tyga", + "disabled": false, + "favorite": false, + "guid": "7c7c8fe1-8f6d-95b6-8554-9b18d2721c55", + "path": "z://MP4\\singsongsmusic\\Rack City - Karaoke HD (In the style of Tyga).mp4", + "title": "Rack City" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Christina Perri", + "playlist_title": "A Thousand Years", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": true, + "guid": "f8282f88-3279-79ed-1350-5067b9c60067", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - A Thousand Years (Karaoke Version).mp4", + "title": "A Thousand Years" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Outasight", + "playlist_title": "Tonight Is The Night", + "found_song": { + "artist": "Outasight", + "disabled": false, + "favorite": false, + "guid": "52edc9ce-31cb-afba-0100-27d7b1c0b541", + "path": "z://CDG\\Big Hits Karaoke\\BHK031\\BHK031-03 - Outasight - Tonight Is The Night.mp3", + "title": "Tonight Is The Night" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Lady Gaga", + "playlist_title": "You And I", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "17481e56-95ec-7442-5a61-ab87dbb0aa20", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - You And I (Karaoke Version).mp4", + "title": "You And I" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Fray", + "playlist_title": "Heartbeat", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "fe155f91-fd8a-64fa-d152-ff237a71eb26", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbeat - The Fray.mp4", + "title": "Heartbeat" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Nickelback", + "playlist_title": "When We Stand Together", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "64215bb4-4f50-91eb-9a1c-4d34f1038070", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-08 - Nickelback - When We Stand Together.mp3", + "title": "When We Stand Together" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Avicii", + "playlist_title": "Levels", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "c4048f7e-f544-e6f6-9b4c-fd338a8fa798", + "path": "z://MP4\\singsongsmusic\\Levels - Karaoke HD (In the style of Avicii).mp4", + "title": "Levels" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Beyonce", + "playlist_title": "Countdown", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7438575d-1f0d-a020-c832-1f04331e37fb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Countdown.mp4", + "title": "Countdown" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Grouplove", + "playlist_title": "Tongue Tied", + "found_song": { + "artist": "Grouplove", + "disabled": false, + "favorite": false, + "guid": "7c507d6f-1aad-9a95-a34e-a82c04af7924", + "path": "z://MP4\\Sing King Karaoke\\Grouplove - Tongue Tied (Karaoke Version).mp4", + "title": "Tongue Tied" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Beyonce", + "playlist_title": "Love On Top", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "bf0a1046-a83e-bba1-1679-b311d4cab5b6", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Love On Top (Karaoke Version).mp4", + "title": "Love On Top" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Thompson Square", + "playlist_title": "I Got You", + "found_song": { + "artist": "Thompson Square", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1e5d09-7a9b-517b-5a5f-da7aca77708e", + "path": "z://MP4\\KaraokeOnVEVO\\Thompson Square - I Got You.mp4", + "title": "I Got You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 26, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Baggage Claim", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ae06a979-9a9d-3fcf-53d5-4dd71f35eb2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baggage Claim - Miranda Lambert.mp4", + "title": "Baggage Claim" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Lavigne, Avril", + "disabled": false, + "favorite": false, + "guid": "a1f90a2c-477d-435e-a5ce-0ae5cfb4149b", + "path": "z://CDG\\Big Hits Karaoke\\BHK024\\BHK024-04 - Lavigne, Avril - Wish You Were Here.mp3", + "title": "Wish You Were Here" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Script", + "playlist_title": "Nothing", + "found_song": { + "artist": "Script", + "disabled": false, + "favorite": false, + "guid": "1cf5a6ef-3117-3984-a7b8-2a2ba8cc6162", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF298\\Script - Nothing - SF298 - 07.mp3", + "title": "Nothing" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Glee Cast", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78e4e993-272c-c615-986a-e472fd11a995", + "path": "z://MP4\\Sing King Karaoke\\Band Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Michael Buble", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "2a03aa86-69b8-2125-b363-88b9e88ead0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All I Want For Christmas Is You - Michael Bublé.mp4", + "title": "All I Want For Christmas Is You" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Rihanna Featuring Calvin Harris", + "title": "We Found Love", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jay Z Kanye West", + "title": "Ni**as in Paris", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "David Guetta Featuring Usher", + "title": "Without You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Maroon 5 Featuring Christina Aguilera", + "title": "Moves Like Jagger", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Gym Class Heroes Featuring Adam Levine", + "title": "Stereo Hearts", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Big Sean Featuring Nicki Minaj", + "title": "Dance (A$$)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "J. Cole", + "title": "Work Out", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "title": "Party Rock Anthem", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake", + "title": "Headlines", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "title": "Young, Wild & Free", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cobra Starship Featuring Sabi", + "title": "You Make Me Feel...", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Drake Featuring Nicki Minaj", + "title": "Make Me Proud", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "title": "Give Me Everything", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Drake Featuring Lil Wayne", + "title": "The Motto", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull Featuring Chris Brown", + "title": "International Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Wayne Featuring Drake", + "title": "She Will", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "title": "Sleazy Remix 2.0 Get Sleazier", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Wale Featuring Miguel", + "title": "Lotus Flower Bomb", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Jason Aldean", + "title": "Tattoos On This Town", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Hot Chelle Rae Featuring New Boyz", + "title": "I Like It Like That", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Nicki Minaj Featuring Rihanna", + "title": "Fly", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "David Nail", + "title": "Let It Rain", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Young", + "title": "You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Band Perry", + "title": "All Your Life", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.o.B Featuring Lil Wayne", + "title": "Strange Clouds", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Beyonce Featuring Andre 3000", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Drake Featuring Rihanna", + "title": "Take Care", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Glee Cast", + "title": "We Are Young", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Colbie Caillat", + "title": "Brighter Than The Sun", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "J. Cole Featuring Trey Songz", + "title": "Can't Get Enough", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rick Ross Featuring Nicki Minaj", + "title": "You The Boss", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "David Guetta Featuring Nicki Minaj", + "title": "Turn Me On", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Jake Owen", + "title": "Alone With You", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Wale Featuring Jeremih & Rick Ross", + "title": "That Way", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Bang Bang Pow Pow", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Kenny Chesney", + "title": "Reality", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Fun. Featuring Janelle Monae", + "title": "We Are Young", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Tim McGraw", + "title": "Better Than I Used To Be", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Hunter Hayes", + "title": "Storm Warning", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Waka Flocka Flame Featuring Drake", + "title": "Round Of Applause", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Brad Paisley", + "title": "Camouflage", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lee Brice", + "title": "A Woman Like You", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Romeo Santos Featuring Usher", + "title": "Promise", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Roscoe Dash", + "title": "Good Good Night", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Gym Class Heroes Featuring Neon Hitch", + "title": "Ass Back Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 8, + "missing_count": 49, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2010 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 9, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "R. Kelly", + "playlist_title": "When A Woman Loves", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "090ea035-9580-039d-0b17-295f18e82874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Woman Loves - R. Kelly.mp4", + "title": "When A Woman Loves" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Usher", + "playlist_title": "There Goes My Baby", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "5af23df0-2293-5d64-4ab9-372b1461f50d", + "path": "z://MP4\\KtvEntertainment\\Usher - There Goes My Baby (Karaoke without Vocal).mp4", + "title": "There Goes My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Trey Songz", + "title": "Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nicki Minaj", + "title": "Right Thru Me", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Fantasia", + "title": "I'm Doing Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Charlie Wilson", + "title": "You Are", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Eric Benet", + "title": "Sometimes I Cry", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Diddy - Dirty Money Featuring Drake", + "title": "Loving You No More", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jazmine Sullivan", + "title": "10 Seconds", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jazmine Sullivan", + "title": "Holding You Down (Goin In Circles)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 0, + "missing_count": 18, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2010 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "e84999e7-a485-8964-f2c4-36a95a2640a0", + "path": "z://CDG\\Big Hits Karaoke\\BHK013\\BHK013-08 - Kings Of Leon - Radioactive.mp3", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Undisclosed Desires", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "15b73041-f109-ac0e-80da-084107c98e3a", + "path": "z://CDG\\Big Hits Karaoke\\BHK004\\BHK004-07 - Muse - Undisclosed Desires.mp3", + "title": "Undisclosed Desires" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Shake Me Down", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "98ce324e-07f5-e067-7250-fe27c3f1ead2", + "path": "z://MP4\\singsongsmusic\\Shake me Down - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Shake me Down" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Sing", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "530d4d52-cc02-fb34-da25-cba1201b9e8d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sing - My Chemical Romance.mp4", + "title": "Sing" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hinder", + "playlist_title": "All American Nightmare", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "guid": "1052f65c-6251-025e-4f12-d00f1f74f882", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-033 - Hinder - All American Nightmare (Karaoke).mp4", + "title": "All American Nightmare" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Far From Home", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "402467c9-830a-24e3-94e5-a2521e4b1cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Far From Home - Five Finger Death Punch.mp4", + "title": "Far From Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Closer To The Edge", + "found_song": { + "artist": "30 Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "cbeecb81-944f-558e-cd04-8303a882ff54", + "path": "z://CDG\\Big Hits Karaoke\\BHK012\\BHK012-02 - 30 Seconds To Mars - Closer To The Edge.mp3", + "title": "Closer To The Edge" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Black Keys", + "title": "Tighten Up", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Linkin Park", + "title": "Waiting For The End", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Stone Sour", + "title": "Say You'll Haunt Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Three Days Grace", + "title": "World So Cold", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "My Darkest Days Featuring Zakk Wylde", + "title": "Porn Star Dancing", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Godsmack", + "title": "Love-Hate-Sex-Pain", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Saving Abel", + "title": "The Sex Is Good", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Cake", + "title": "Sick Of You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Disturbed", + "title": "The Animal", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Dirty Heads Featuring Rome", + "title": "Lay Me Down", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Phoenix", + "title": "Lisztomania", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Alter Bridge", + "title": "Isolation", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Avenged Sevenfold", + "title": "Welcome To The Family", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "10 Years", + "title": "Shoot It Out", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2010 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 7, + "artist": "Far*East Movement Featuring Cataracs & Dev", + "title": "Like A G6", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Usher Featuring Pitbull", + "title": "DJ Got Us Fallin' In Love", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Edward Maya & Vika Jigulina", + "title": "Stereo Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "title": "Tonight (I'm Lovin' You)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 7, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2010 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Brad Paisley", + "playlist_title": "This Is Country Music", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e42d07-74dc-9d0e-9a92-10287b97963d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - This Is Country Music.mp4", + "title": "This Is Country Music" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba", + "title": "Turn On The Radio", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Carrie Underwood", + "title": "Mama's Song", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Tim McGraw", + "title": "Felt Good On My Lips", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Zac Brown Band Featuring Alan Jackson", + "title": "As She's Walking Away", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kenny Chesney", + "title": "Somewhere With You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "George Strait", + "title": "The Breath You Take", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Band Perry", + "title": "If I Die Young", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Keith Urban", + "title": "Put You In A Song", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Toby Keith", + "title": "Bullets In The Gun", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Billy Currington", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Sunny Sweeney", + "title": "From A Table Away", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The JaneDear Girls", + "title": "Wildflower", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Joe Nichols", + "title": "The Shape I'm In", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jerrod Niemann", + "title": "What Do You Want", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jason Aldean With Kelly Clarkson", + "title": "Don't You Wanna Stay", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2010 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "OneRepublic", + "playlist_title": "Secrets", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "0659bf0a-7b36-981e-a88c-0f2f83583d80", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Secrets (Karaoke Version).mp4", + "title": "Secrets" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Christina Perri", + "playlist_title": "Jar Of Hearts", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": false, + "guid": "819790b5-eac8-1127-8078-d8703ca887a6", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - Jar Of Hearts (Karaoke Version).mp4", + "title": "Jar Of Hearts" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Plain White T's", + "playlist_title": "Rhythm of Love", + "found_song": { + "artist": "Plain White T's", + "disabled": false, + "favorite": false, + "guid": "74cf8c8e-86ef-569e-d337-e78bd78edcfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rhythm Of Love - Plain White T s.mp4", + "title": "Rhythm Of Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Akon", + "playlist_title": "Angel", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "guid": "c0ee5fff-3632-1ef8-e5f4-2487efafd14b", + "path": "z://MP4\\KtvEntertainment\\Akon - Angel (Karaoke without Vocal).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Train", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68cf19d8-3308-9a5c-9e8b-e813216a7e0c", + "path": "z://MP4\\Sing King Karaoke\\Train - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Strip Me", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "385488b2-1161-d46a-0dc3-a977df0e1a46", + "path": "z://MP4\\KaraokeOnVEVO\\Natasha Bedingfield - Strip Me.mp4", + "title": "Strip Me" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Daughtry", + "playlist_title": "September", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb9a51ee-833a-7f98-9a6e-a4be6e365b50", + "path": "z://MP4\\KaraokeOnVEVO\\Daughtry - September.mp4", + "title": "September" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 24, + "playlist_artist": "Diddy - Dirty Money Featuring Skylar Grey", + "playlist_title": "Coming Home", + "found_song": { + "artist": "Diddy", + "disabled": false, + "favorite": false, + "guid": "729536e9-1527-ca18-bbd6-2eed4c560612", + "path": "z://MP4\\TheKARAOKEChannel\\Diddy - Dirty Money feat. Skylar Grey - Coming Home.mp4", + "title": "Dirty Money feat. Skylar Grey - Coming Home" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Sugarland", + "playlist_title": "Stuck Like Glue", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "2d6eb405-f7d9-2468-9756-a52d43119497", + "path": "z://MP4\\singsongsmusic\\Stuck Like Glue - Karaoke HD (In the style of Sugarland).mp4", + "title": "Stuck Like Glue" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Mine", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb273be-068e-64d2-bb99-37700be02b36", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Mine.mp4", + "title": "Mine" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Glee Cast", + "playlist_title": "Baby, It's Cold Outside", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "d846ccbb-5dbb-4803-37ec-22ba726b146a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s Cold Outside - Glee.mp4", + "title": "Baby It s Cold Outside" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Far*East Movement Featuring Cataracs & Dev", + "title": "Like A G6", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Usher Featuring Pitbull", + "title": "DJ Got Us Fallin' In Love", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "title": "Tonight (I'm Lovin' You)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T.I. Featuring Eminem", + "title": "That's All She Wrote", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Edward Maya & Vika Jigulina", + "title": "Stereo Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Cee Lo Green", + "title": "F**k You (Forget You)", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Nicki Minaj", + "title": "Right Thru Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Band Perry", + "title": "If I Die Young", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Flo Rida Featuring David Guetta", + "title": "Club Can't Handle Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Enrique Iglesias Featuring Pitbull", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Pitbull Featuring T-Pain", + "title": "Hey Baby (Drop It To The Floor)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kenny Chesney", + "title": "Somewhere With You", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Eminem Featuring Lil Wayne", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Eminem Featuring Rihanna", + "title": "Love The Way You Lie", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tim McGraw", + "title": "Felt Good On My Lips", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Trey Songz", + "title": "Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "David Guetta Featuring Kid Cudi", + "title": "Memories", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Zac Brown Band Featuring Alan Jackson", + "title": "As She's Walking Away", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Yolanda Be Cool & Dcup", + "title": "We No Speak Americano", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "title": "Kush", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Reba", + "title": "Turn On The Radio", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Carrie Underwood", + "title": "Mama's Song", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Glee Cast", + "title": "Welcome Christmas", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Far*East Movement Featuring Ryan Tedder", + "title": "Rocketeer", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Keith Urban", + "title": "Put You In A Song", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jeremih Featuring 50 Cent", + "title": "Down On Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Michael Jackson Duet With Akon", + "title": "Hold My Hand", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "George Strait", + "title": "The Breath You Take", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Flo Rida Featuring Akon", + "title": "Who Dat Girl", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Jason Aldean With Kelly Clarkson", + "title": "Don't You Wanna Stay", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Billy Currington", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Brad Paisley", + "title": "Anything Like Me", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Kanye West Featuring Pusha T", + "title": "Runaway", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Linkin Park", + "title": "Waiting For The End", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Drake Featuring T.I. & Swizz Beatz", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Birdman Featuring Lil Wayne", + "title": "Fire Flame", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Toby Keith", + "title": "Bullets In The Gun", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Sean Kingston Featuring Nicki Minaj", + "title": "Letting Go (Dutty Love)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Jesse McCartney", + "title": "Shake", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "title": "Loca", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "title": "Forget You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Dev Featuring The Cataracs", + "title": "Bass Down Low", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "My Darkest Days Featuring Zakk Wylde", + "title": "Porn Star Dancing", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Pitbull", + "title": "Bon, Bon", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 36, + "fuzzy_match_count": 7, + "missing_count": 57, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2009 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 10, + "playlist_artist": "Maxwell", + "playlist_title": "Pretty Wings", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "918e2644-6132-b1ba-27db-880ecc759c39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Wings - Maxwell.mp4", + "title": "Pretty Wings" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Whitney Houston", + "playlist_title": "Million Dollar Bill", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "04c9217f-b7ae-043f-9d46-a6f7736665aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Million Dollar Bill - Whitney Houston.mp4", + "title": "Million Dollar Bill" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sade", + "playlist_title": "Soldier Of Love", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "guid": "4307d99f-cfee-ccfe-5501-f4529a9ec036", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Sade - Soldier Of Love - SF290 - 15.mp3", + "title": "Soldier Of Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher", + "title": "Papers", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "50 Cent Featuring Ne-Yo", + "title": "Baby By Me", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Young Money Featuring Lloyd", + "title": "Bedrock", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "title": "God In Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jaheim", + "title": "Ain't Leavin Without You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mary J. Blige", + "title": "I Am", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LeToya Featuring Ludacris", + "title": "Regret", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 1, + "missing_count": 19, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2009 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Foo Fighters", + "playlist_title": "Wheels", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "1067951e-0a89-9a85-95bd-c7899b18d818", + "path": "z://CDG\\Big Hits Karaoke\\BHK002\\BHK002-04 - Foo Fighters - Wheels.mp3", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alice In Chains", + "playlist_title": "Check My Brain", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d20b1c2b-9936-05e6-f7d4-c0ca2c4edff4", + "path": "z://CDG\\SBI\\SBI-03\\SB23034 - Alice In Chains - Check My Brain.mp3", + "title": "Check My Brain" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rise Against", + "playlist_title": "Savior", + "found_song": { + "artist": "Rise Against", + "disabled": false, + "favorite": false, + "guid": "ea6b7194-6ccd-6de8-428e-4b625eff7582", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Rise Against - Savior - SF290 - 06.mp3", + "title": "Savior" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Pearl Jam", + "playlist_title": "The Fixer", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25418865-e16d-9fd4-ba8e-90f1482df698", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - The Fixer.mp4", + "title": "The Fixer" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Linkin Park", + "playlist_title": "New Divide", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "e5801f1a-7a1a-fd9e-2e5e-8cf570df270a", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - New Divide (Karaoke Version).mp4", + "title": "New Divide" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Slipknot", + "playlist_title": "Snuff", + "found_song": { + "artist": "Slipknot", + "disabled": false, + "favorite": false, + "guid": "34337aeb-b14a-dfda-0942-ed0093d566ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Snuff - Slipknot.mp4", + "title": "Snuff" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alice In Chains", + "playlist_title": "Your Decision", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef239797-06bf-37ed-5ade-63e6e3923341", + "path": "z://MP4\\KaraokeOnVEVO\\Alice In Chains - Your Decision.mp4", + "title": "Your Decision" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 5, + "artist": "Weezer", + "title": "(If You're Wondering If I Want You To) I Want You To", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Thirty Seconds To Mars", + "title": "Kings And Queens", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Sick Puppies", + "title": "You're Going Down", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Chevelle", + "title": "Jars", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Them Crooked Vultures", + "title": "New Fang", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Cage The Elephant", + "title": "Back Against The Wall", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Death Cab For Cutie", + "title": "Meet Me On The Equinox", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Creed", + "title": "Overcome", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Puddle Of Mudd", + "title": "Spaceship", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Flyleaf", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Adelitas Way", + "title": "Invincible", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 12, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2009 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "title": "Do You Remember", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Boys Like Girls Featuring Taylor Swift", + "title": "Two Is Better Than One", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 3, + "missing_count": 4, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2009 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Hurry Home", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "guid": "02576a56-714c-b2bc-bc23-a37642231a3f", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Hurry Home (Karaoke).mp4", + "title": "Hurry Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "'Til Summer Comes Around", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e97e0a87-9d43-d452-a51a-c58a320d672a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til Summer Comes Around - Keith Urban.mp4", + "title": "Til Summer Comes Around" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Easton Corbin", + "playlist_title": "A Little More Country Than That", + "found_song": { + "artist": "Easton Corbin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15aade79-f2fd-0832-72f7-0739b73f9fee", + "path": "z://MP4\\KaraokeOnVEVO\\Easton Corbin - A Little More Country Than That.mp4", + "title": "A Little More Country Than That" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Didn't You Know How Much I Loved You", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "317d47c6-ec7b-b8c4-cf87-4036803ead56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Didn t You Know How Much I Loved You - Kellie Pickler.mp4", + "title": "Didn t You Know How Much I Loved You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba", + "title": "Consider Me Gone", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Craig Morgan", + "title": "Bonfire", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jason Aldean", + "title": "The Truth", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Blake Shelton Featuring Trace Adkins", + "title": "Hillbilly Bone", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Gary Allan", + "title": "Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Josh Thompson", + "title": "Beer On The Table", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Steel Magnolia", + "title": "Keep On Lovin' You", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Sarah Buxton", + "title": "Outside My Window", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 1, + "missing_count": 9, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2009 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Cowboy Casanova", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "7bdc0c1f-ba57-bf4e-f8fe-7f6ccb248ca8", + "path": "z://MP4\\Let's Sing Karaoke\\Carrie Underwood - Cowboy Casanova (Karaoke & Lyrics).mp4", + "title": "Cowboy Casanova" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Kris Allen", + "playlist_title": "Live Like We're Dying", + "found_song": { + "artist": "Kris Allen", + "disabled": false, + "favorite": false, + "guid": "393e6eef-77fe-3c5a-41bf-28da670c0cea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Live Like We re Dying - Kris Allen.mp4", + "title": "Live Like We re Dying" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Fallin' For You", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "92120dbe-1482-c05b-3387-23d199071e50", + "path": "z://MP4\\KaraFun Karaoke\\Fallin' For You - Colbie Caillat Karaoke Version KaraFun.mp4", + "title": "Fallin' For You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Time", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72e7ea74-55d2-4e8b-8c3d-56214835bcbf", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - One Time.mp4", + "title": "One Time" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rihanna", + "playlist_title": "Russian Roulette", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "e2d82a36-0231-e12d-eac2-d80778e1e85e", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Russian Roulette (Karaoke Version).mp4", + "title": "Russian Roulette" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Train", + "playlist_title": "Hey, Soul Sister", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "85bb5db2-e340-c77a-5f3c-5f7cdf1df3eb", + "path": "z://MP4\\Sing King Karaoke\\Train - Hey, Soul Sister (Karaoke Version).mp4", + "title": "Hey, Soul Sister" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Uncle Kracker", + "playlist_title": "Smile", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "671bb63a-db8d-3e83-15c4-91637841df52", + "path": "z://CDG\\Big Hits Karaoke\\BHK010\\BHK010-03 - Uncle Kracker - Smile.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Chris Brown", + "playlist_title": "Crawl", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7caf5622-e447-206e-01dc-98d00135c590", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Crawl.mp4", + "title": "Crawl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jason Derulo", + "playlist_title": "In My Head", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "60d9ae9a-034e-59ed-1a6c-ada712075acd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Head - Jason Derulo.mp4", + "title": "In My Head" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Less Lonely Girl", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8a4960a9-bf2e-3316-46da-c39364fc7ae9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Less Lonely Girl - Justin Bieber.mp4", + "title": "One Less Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "OneRepublic", + "playlist_title": "All The Right Moves", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "4d2d9dae-4974-73d6-f6ee-2a9751ddbae3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Right Moves - OneRepublic.mp4", + "title": "All The Right Moves" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Chris Young", + "playlist_title": "Gettin' You Home (The Black Dress Song)", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "3ba0dc43-3604-e250-ed2f-9890042f7a48", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gettin You Home (The Black Dress Song) - Chris Young.mp4", + "title": "Gettin You Home (The Black Dress Song)" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Script", + "playlist_title": "Breakeven", + "found_song": { + "artist": "The Script", + "disabled": false, + "favorite": false, + "guid": "980c95dd-c486-ac6e-e63a-91e5d1485b40", + "path": "z://MP4\\KtvEntertainment\\The Script - Breakeven (Karaoke without Vocal).mp4", + "title": "Breakeven" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Beyonce", + "playlist_title": "Video Phone", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "29e10df2-f2f1-4246-0f59-9f2876b0f0b5", + "path": "z://MP4\\KtvEntertainment\\Beyonce - Video Phone Karaoke Lyrics.mp4", + "title": "Video Phone" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Lifehouse", + "playlist_title": "Halfway Gone", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "fb57a1c0-3d32-57c5-bb78-5bfbefad639f", + "path": "z://CDG\\Big Hits Karaoke\\BHK007\\BHK007-08 - Lifehouse - Halfway Gone.mp3", + "title": "Halfway Gone" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "I Gotta Feeling", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "45dba26f-312e-273f-21ff-01d2730f5c19", + "path": "z://MP4\\Sing King Karaoke\\Black Eyed Peas - I Gotta Feeling (Karaoke Version).mp4", + "title": "I Gotta Feeling" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Lady Gaga Featuring Beyonce", + "playlist_title": "Telephone", + "found_song": { + "artist": "Lady Gaga And Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d72b5f37-97eb-7206-1d16-d3123f91f95b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lady Gaga And Beyonce - Telephone.mp4", + "title": "Telephone" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Orianthi", + "playlist_title": "According To You", + "found_song": { + "artist": "Orianthi", + "disabled": false, + "favorite": false, + "guid": "cc1f3c5d-cebd-ef23-e07d-2de8d56f9eba", + "path": "z://CDG\\Big Hits Karaoke\\BHK003\\BHK003-02 - Orianthi - According To U.mp3", + "title": "According To U" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Michael Buble", + "playlist_title": "Haven't Met You Yet", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "a8029f1d-6e17-2260-d0ec-3e57ad0cf21f", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - Haven't Met You Yet.mp4", + "title": "Haven't Met You Yet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Glee Cast", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "2a10be40-8ef9-2dce-9350-3a525fe84a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Christmas - Glee.mp4", + "title": "Last Christmas" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "title": "Do You Remember", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Young Money Featuring Lloyd", + "title": "Bedrock", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Boys Like Girls Featuring Taylor Swift", + "title": "Two Is Better Than One", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "50 Cent Featuring Ne-Yo", + "title": "Baby By Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Timbaland Featuring Justin Timberlake", + "title": "Carry Out", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jay-Z, Rihanna & Kanye West", + "title": "Run This Town", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "New Boyz Feat. Ray J", + "title": "Tie Me Down", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Shakira Featuring Lil Wayne", + "title": "Give It Up To Me", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Reba", + "title": "Consider Me Gone", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Jason Aldean", + "title": "The Truth", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "title": "My Life Would Suck Without You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Glee Cast Featuring Lea Michele", + "title": "Don't Rain On My Parade", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Usher", + "title": "Papers", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Nickelback", + "title": "Never Gonna Be Alone", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Lil Wayne", + "title": "On Fire", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Daughtry", + "title": "Life After You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Craig Morgan", + "title": "Bonfire", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Mary J. Blige", + "title": "I Am", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jesse McCartney Featuring T-Pain", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "title": "You Can't Always Get What You Want", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Thirty Seconds To Mars", + "title": "This Is War", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rob Thomas", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Snoop Dogg", + "title": "I Wanna Rock", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Thirty Seconds To Mars", + "title": "Kings And Queens", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Akon", + "title": "Shut It Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Chris Brown Featuring Plies", + "title": "What I Do", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Glee Cast Featuring Amber Riley", + "title": "And I Am Telling You I'm Not Going", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Weezer", + "title": "(If You're Wondering If I Want You To) I Want You To", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "title": "I'm Going In", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ester Dean Featuring Chris Brown", + "title": "Drop It Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 9, + "missing_count": 46, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2008 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Keyshia Cole", + "playlist_title": "Heaven Sent", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "guid": "fc6015e5-9b3b-682c-3935-9c014e74104c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Sent - Keyshia Cole.mp4", + "title": "Heaven Sent" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "T.I. Featuring Rihanna", + "title": "Live Your Life", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jazmine Sullivan", + "title": "Need U Bad", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Usher", + "title": "Here I Stand", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2008 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "T.I. Featuring Rihanna", + "title": "Live Your Life", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Lady GaGa Featuring Colby O'Donis", + "title": "Just Dance", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Saving Abel", + "title": "Addicted", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Nickelback", + "title": "Gotta Be Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 2, + "missing_count": 6, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2008 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jake Owen", + "playlist_title": "Don't Think I Can't Love You", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1ccc605-62ba-23d3-e57f-afb1528816e9", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - Dont Think I Cant Love You.mp4", + "title": "Don't Think I Can't Love You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Last Call", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "1b35cc99-ce09-c30a-71ec-190d1f8ee709", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Last Call (Karaoke).mp4", + "title": "Last Call" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "Ride", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0954a8d-3021-6534-3efc-ae8c4312a92a", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Sugarland", + "title": "Already Gone", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Tim McGraw", + "title": "Let It Go", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Billy Currington", + "title": "Don't", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lady Antebellum", + "title": "Lookin' For A Good Time", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Toby Keith", + "title": "God Love Her", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Pat Green", + "title": "Let Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Darius Rucker", + "title": "It Won't Be Like This For Long", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jack Ingram", + "title": "That's A Man", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 3, + "missing_count": 11, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2008 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Britney Spears", + "playlist_title": "Circus", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "390e5a9a-751b-0c64-6288-10790f9ced70", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Circus.mp4", + "title": "Circus" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Fray", + "playlist_title": "You Found Me", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "f388ba54-073b-360e-f9d0-1cad21f9f7dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Found Me - The Fray.mp4", + "title": "You Found Me" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Coldplay", + "playlist_title": "Viva La Vida", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8931e443-78aa-fbf3-6319-397dd7c15674", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Viva La Vida (Karaoke Version).mp4", + "title": "Viva La Vida" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Gives You Hell", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "7dad4fb1-61a6-823b-1256-ee11db25784b", + "path": "z://MP4\\KaraFun Karaoke\\Gives You Hell - The All-American Rejects Karaoke Version KaraFun.mp4", + "title": "Gives You Hell" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Ne-Yo", + "playlist_title": "Closer", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47c15e29-f081-0b01-0dab-c81cc43909a4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Killers", + "playlist_title": "Human", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4bad50ad-2e02-e1f5-5c4d-4e20e68542f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Human.mp4", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Archuleta", + "playlist_title": "Crush", + "found_song": { + "artist": "David Archuleta", + "disabled": false, + "favorite": false, + "guid": "cc8a9d3e-6dff-62bc-4b89-d899016f4c75", + "path": "z://MP4\\Sing King Karaoke\\David Archuleta - Crush (Karaoke Version).mp4", + "title": "Crush" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Paramore", + "playlist_title": "Decode", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da54df3f-9093-5bea-ceac-0af75c8f0e31", + "path": "z://CDG\\SBI\\SBI-03\\SB21499 - Paramore - Decode.mp3", + "title": "Decode" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Fall Out Boy", + "playlist_title": "I Don't Care", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7af6b14-97ab-8dc1-3e65-816c87a47d4d", + "path": "z://MP4\\KaraokeOnVEVO\\Fall Out Boy - I Dont Care.mp4", + "title": "I Don't Care" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Sex On Fire", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "9ba89680-0a2a-647f-c52f-9992542724ca", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Sex On Fire (Karaoke Version).mp4", + "title": "Sex On Fire" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shinedown", + "playlist_title": "Second Chance", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "guid": "6e146379-b762-bd04-8c9e-3af5e0690ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Second Chance - Shinedown.mp4", + "title": "Second Chance" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Ne-Yo", + "playlist_title": "Mad", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b8aa97b-6416-a0d0-8cf9-6c8ad98d46ec", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Mad.mp4", + "title": "Mad" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shontelle", + "playlist_title": "T-Shirt", + "found_song": { + "artist": "Shontelle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8fcc5c9-71e5-6cff-53da-45ac9381e738", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF277\\Shontelle - T-shirt - SF277 - 08.mp3", + "title": "T-shirt" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Matt Nathanson", + "playlist_title": "Come On Get Higher", + "found_song": { + "artist": "Matt Nathanson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "365329e3-cd5c-c2c0-23f7-6b28a86d7fb9", + "path": "z://MP4\\KaraokeOnVEVO\\Matt Nathanson - Come On Get Higher.mp4", + "title": "Come On Get Higher" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Daughtry", + "playlist_title": "What About Now", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "ecb3db8c-6add-3ac2-e663-930389ce59c0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF285\\Daughtry - What About Now - SF285 - 08.mp3", + "title": "What About Now" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Lifehouse", + "playlist_title": "Broken", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f8369fb1-eaa2-55d7-7a30-9692ac3dfcc5", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Broken.mp4", + "title": "Broken" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Hinder", + "playlist_title": "Without You", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46c2eef0-5023-eb68-2fab-eff9ec13fd7d", + "path": "z://MP4\\KaraokeOnVEVO\\Hinder - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Bad Girlfriend", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "15ab937f-8dd7-7ac3-93a1-454308296744", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bad Girlfriend - Theory Of A Deadman.mp4", + "title": "Bad Girlfriend" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Adele", + "playlist_title": "Chasing Pavements", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9f0273d-5e88-7c75-0dbb-71ebff558acb", + "path": "z://MP4\\Sing King Karaoke\\Adele - Chasing Pavements.mp4", + "title": "Chasing Pavements" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Veronicas", + "playlist_title": "Untouched", + "found_song": { + "artist": "Veronicas", + "disabled": false, + "favorite": false, + "guid": "8bba1b5f-d320-d76b-f650-be614707844d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF280\\Veronicas - Untouched - SF280 - 10.mp3", + "title": "Untouched" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Pink", + "playlist_title": "Sober", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "8deeec0f-944f-356a-23f7-079c9db1503e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pink - Sober - SF275 - 16.mp3", + "title": "Sober" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "I Hate This Part", + "found_song": { + "artist": "Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "aeda22a1-ef5c-57df-0366-231aa42ab5f8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pussycat Dolls - I Hate This Part - SF275 - 08.mp3", + "title": "I Hate This Part" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Keeps Gettin' Better", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "b63ab5f1-a7a2-6e35-8549-a00ac0de61b6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF274\\Christina Aguilera - Keeps Getting Better - SF274 - 13.mp3", + "title": "Keeps Getting Better" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "T.I. Featuring Rihanna", + "title": "Live Your Life", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Lady GaGa Featuring Colby O'Donis", + "title": "Just Dance", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Nickelback", + "title": "Gotta Be Somebody", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Saving Abel", + "title": "Addicted", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "title": "I'm So Paid", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brandy", + "title": "Right Here (Departed)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "O.A.R.", + "title": "Shattered (Turn The Car Around)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Sugarland", + "title": "Already Gone", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Secondhand Serenade", + "title": "Fall For You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "David Cook", + "title": "Light On", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Carrie Underwood", + "title": "Just A Dream", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Billy Currington", + "title": "Don't", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Game Featuring Lil Wayne", + "title": "My Life", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Toby Keith", + "title": "God Love Her", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Tim McGraw", + "title": "Let It Go", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Savage Featuring Soulja Boy Tell'em", + "title": "Swing", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lady Antebellum", + "title": "Lookin' For A Good Time", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Common Featuring Pharrell", + "title": "Universal Mind Control", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Offspring", + "title": "You're Gonna Go Far, Kid", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Metro Station", + "title": "Seventeen Forever", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Lil Jon", + "title": "Krazy", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Apocalyptica Featuring Adam Gontier", + "title": "I Don't Care", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Busta Rhymes", + "title": "Arab Money", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Chesney With The Wailers", + "title": "Everybody Wants To Go To Heaven", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "50 Cent", + "title": "Get Up", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Craig Morgan", + "title": "Love Remembers", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kanye West Featuring Lil Wayne", + "title": "See You In My Nightmares", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "T.I. Featuring Justin Timberlake", + "title": "Dead And Gone", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Luis Fonsi", + "title": "No Me Doy Por Vencido", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 9, + "missing_count": 48, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2007 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Timbaland Featuring OneRepublic", + "title": "Apologize", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Fergie", + "title": "Clumsy", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rihanna Featuring Ne-Yo", + "title": "Hate That I Love You", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Brown Featuring T-Pain", + "title": "Kiss Kiss", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Flo Rida Featuring T-Pain", + "title": "Low", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Timbaland Featuring Keri Hilson", + "title": "The Way I Are", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Paramore", + "title": "Misery Business", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sean Kingston", + "title": "Take You There", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 2, + "missing_count": 13, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2007 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Alan Jackson", + "playlist_title": "Small Town Southern Man", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ce7b0be-b9ba-a551-4ccd-2120473ea9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Small Town Southern Man.mp4", + "title": "Small Town Southern Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Blake Shelton", + "playlist_title": "The More I Drink", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "20d51adc-8017-3854-44fd-b62770c8aece", + "path": "z://MP4\\TheKARAOKEChannel\\The More I Drink in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "The More I Drink" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Cagle", + "playlist_title": "What Kinda Gone", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6474876-0f49-bd73-25e6-7900c3a41139", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - What Kinda Gone.mp4", + "title": "What Kinda Gone" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Suspicions", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67eb60a7-2bad-5621-18a8-784e1fd3204f", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Suspicions.mp4", + "title": "Suspicions" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eagles", + "playlist_title": "How Long", + "found_song": { + "artist": "Eagles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d577c63c-d280-cfa8-3bc3-1bb5e91d8677", + "path": "z://CDG\\SBI\\SBI-01\\SB02414 - The Eagles - How Long.mp3", + "title": "How Long" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "God Must Be Busy", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "96e031db-78d6-f97f-4554-c571ed8f56e9", + "path": "z://MP4\\KaraFun Karaoke\\God Must Be Busy - Brooks & Dunn Karaoke Version KaraFun.mp4", + "title": "God Must Be Busy" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Toby Keith", + "title": "Get My Drink On", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jason Aldean", + "title": "Laughed Until We Cried", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kenny Chesney", + "title": "Shiftwork", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 3, + "missing_count": 4, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2007 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alicia Keys", + "playlist_title": "Like You'll Never See Me Again", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "78376b2e-5369-5505-3d1c-0a332e11ea10", + "path": "z://MP4\\Stingray Karaoke\\Like You'll Never See Me Again in the style of Alicia Keys karaoke version with lyrics.mp4", + "title": "Like You'll Never See Me Again" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Love Song", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "3b2cb5a0-e4d5-90d1-5b46-a5326e1231d5", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Love Song (Karaoke Version).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Just Fine", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "abf774d6-7e51-7fa4-bf53-eb90eeda6e44", + "path": "z://MP4\\KaraFun Karaoke\\Just Fine - Mary J. Blige Karaoke Version KaraFun.mp4", + "title": "Just Fine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Linkin Park", + "playlist_title": "Shadow Of The Day", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "8b4ddd08-2881-f0bb-b835-b505aca61751", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Shadow Of The Day (Karaoke Version).mp4", + "title": "Shadow Of The Day" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Fergie", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "c1c3630f-f208-ee8a-7c9f-d54265a3b077", + "path": "z://MP4\\Sing King Karaoke\\Fergie - Big Girls Don't Cry (Personal) (Karaoke Version).mp4", + "title": "Big Girls Don't Cry" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Maroon 5", + "playlist_title": "Wake Up Call", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1c6d8f76-7c06-609c-e907-4ad2aacfe2bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Up Call - Maroon 5.mp4", + "title": "Wake Up Call" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Britney Spears", + "playlist_title": "Piece Of Me", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "87cd88ce-3db0-8d5b-2c7e-674a12d36894", + "path": "z://MP4\\Stingray Karaoke\\Piece Of Me Britney Spears Karaoke with Lyrics.mp4", + "title": "Piece Of Me" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Rihanna", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "19f7b772-493f-6b3c-7cfb-c659a562a5be", + "path": "z://MP4\\KaraFun Karaoke\\Don’t Stop The Music - Rihanna Karaoke Version KaraFun.mp4", + "title": "Don’t Stop The Music" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Foo Fighters", + "playlist_title": "The Pretender", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "5f7e8bdf-3b22-92c9-1f7f-39c0e3c9cf35", + "path": "z://MP4\\KaraFun Karaoke\\The Pretender - Foo Fighters Karaoke Version KaraFun.mp4", + "title": "The Pretender" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Seether", + "playlist_title": "Fake It", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d53f6990-fd19-621a-1768-b76a28c4e664", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Fake It.mp4", + "title": "Fake It" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jack Johnson", + "playlist_title": "If I Had Eyes", + "found_song": { + "artist": "Jack Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f18acbd-6ff9-50e3-1301-de5a6b2716cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Jack Johnson - If I Had Eyes - SF264 - 15.mp3", + "title": "If I Had Eyes" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Britney Spears", + "playlist_title": "Gimme More", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "904aa4c6-ecc7-fd42-904b-dd47567bb659", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Gimme More.mp4", + "title": "Gimme More" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Feist", + "playlist_title": "1234", + "found_song": { + "artist": "Feist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce51464a-c798-d73f-2b03-64871ac4437b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Feist - 1234.mp4", + "title": "1234" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Three Days Grace", + "playlist_title": "Never Too Late", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "93f41381-7a43-06c0-b3b6-297a57cd6d84", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Late - Three Days Grace.mp4", + "title": "Never Too Late" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Chris Brown", + "playlist_title": "This Christmas", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "851593b2-ddff-d000-b2a2-6a8e23ced309", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Christmas - Chris Brown.mp4", + "title": "This Christmas" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Miley Cyrus", + "playlist_title": "See You Again", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "96e4ce80-ed7c-f6a1-43b7-5a9aa27b27b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke See You Again - Miley Cyrus.mp4", + "title": "See You Again" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Boys Like Girls", + "playlist_title": "Hero/Heroine", + "found_song": { + "artist": "Boys Like Girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5428a78f-2dc5-e1ae-a185-e1634c82b4b4", + "path": "z://MP4\\KaraokeOnVEVO\\Boys Like Girls - HeroHeroine.mp4", + "title": "Hero/Heroine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Keyshia Cole", + "playlist_title": "I Remember", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a03be123-ace2-4beb-4f57-a4901c62fddb", + "path": "z://MP4\\KaraokeOnVEVO\\Keyshia Cole - I Remember.mp4", + "title": "I Remember" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Linkin Park", + "playlist_title": "Bleed It Out", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "d47f94e2-42a9-c025-1c4e-0522d279e454", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park - Bleed It Out (clean) (Karaoke Version).mp4", + "title": "Bleed It Out" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Maroon 5", + "playlist_title": "Won't Go Home Without You", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "680af3d0-df8b-4c1c-acbc-22f7cc8f071d", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Wont Go Home Without You.mp4", + "title": "Won't Go Home Without You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin' Better To Do", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef417a0e-0e17-1ab5-27e1-90d683e37b29", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Better To Do.mp4", + "title": "Nothin' Better To Do" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Ingrid Michaelson", + "playlist_title": "The Way I Am", + "found_song": { + "artist": "Ingrid Michaelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63ecba86-bc51-ae6d-28d2-b2e5cf5198ec", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Michaelson - The Way I Am.mp4", + "title": "The Way I Am" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jonas Brothers", + "playlist_title": "S.O.S.", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e186ad93-8311-fb96-e9d3-9ecb627e9123", + "path": "z://MP4\\KaraokeOnVEVO\\Jonas Brothers - SOS.mp4", + "title": "S.O.S." + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Livin' Our Love Song", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5de04b41-deef-f62b-343b-8f58d54b330e", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Livin Our Love Song.mp4", + "title": "Livin' Our Love Song" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Free And Easy (Down The Road I Go)", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b438180-6926-b78f-7559-6c921a75af62", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Free And Easy (Down The Road I Go.mp4", + "title": "Free And Easy (Down The Road I Go)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "OneRepublic", + "playlist_title": "Stop And Stare", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03289aaa-526b-9953-f130-bc5f223b1c03", + "path": "z://MP4\\Sing King Karaoke\\One Republic - Stop And Stare.mp4", + "title": "Stop And Stare" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Work That", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc727fb1-7390-5af3-e50e-129c167c4ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Work That.mp4", + "title": "Work That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The-Dream", + "playlist_title": "Shawty Is A 10", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82d2ec44-3390-25c2-a174-36e3d6bc0d86", + "path": "z://CDG\\SBI\\SBI-04\\SB16677 - Dream - Shawty Is A 10.mp3", + "title": "Shawty Is A 10" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Pink", + "playlist_title": "Who Knew", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "438c631d-2f7c-146c-9179-077bdda041d2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Who Knew (Karaoke Version).mp4", + "title": "Who Knew" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paramore", + "playlist_title": "Crushcrushcrush", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "guid": "44db5b5e-5e9b-fa1e-09b7-3aa36ee745cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF262\\Paramore - Crush Crush Crush - SF262 - 08.mp3", + "title": "Crush Crush Crush" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Flo Rida Featuring T-Pain", + "title": "Low", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Timbaland Featuring OneRepublic", + "title": "Apologize", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Chris Brown Featuring T-Pain", + "title": "Kiss Kiss", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Fergie", + "title": "Clumsy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Rihanna Featuring Ne-Yo", + "title": "Hate That I Love You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Soulja Boy Tell'em", + "title": "Crank That (Soulja Boy)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Plies Featuring Akon", + "title": "Hypnotized", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz", + "title": "Can't Help But Wait", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Sean Kingston", + "title": "Take You There", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Timbaland Featuring Keri Hilson", + "title": "The Way I Are", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Playaz Circle Featuring Lil Wayne", + "title": "Duffle Bag Boy", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "title": "Sweetest Girl (Dollar Bill)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Chris Brown", + "title": "With You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "title": "I'm So Hood", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Santana Featuring Chad Kroeger", + "title": "Into The Night", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Bow Wow & Omarion", + "title": "Girlfriend", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Paramore", + "title": "Misery Business", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Snoop Dogg", + "title": "Sensual Seduction", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Justin Timberlake Duet With Beyonce", + "title": "Until The End Of Time", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kanye West Featuring Dwele", + "title": "Flashing Lights", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "J. Holiday", + "title": "Suffocate", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "J. Holiday", + "title": "Bed", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Birdman Featuring Lil Wayne", + "title": "Pop Bottles", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Keyshia Cole Introducing Amina", + "title": "Shoulda Let You Go", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "title": "Get Buck In Here", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Soulja Boy Tell'em Featuring I-15", + "title": "Soulja Girl", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "title": "Ayo Technology", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cassidy Featuring Swizz Beatz", + "title": "My Drink N' My 2 Step", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Buckcherry", + "title": "Sorry", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "title": "Independent", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Fabolous Featuring Jermaine Dupri", + "title": "Baby Don't Go", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Enur Featuring Natasja", + "title": "Calabria 2008", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Mario", + "title": "Crying Out For Me", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Lupe Fiasco Featuring Matthew Santos", + "title": "Superstar", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Gucci Mane", + "title": "Freaky Gurl", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Clay Walker", + "title": "Fall", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Last Goodnight", + "title": "Pictures Of You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Jay-Z", + "title": "Roc Boys (And The Winner Is)...", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Sara Evans", + "title": "As If", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Juanes", + "title": "Me Enamora", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Colbie Caillat", + "title": "Mistletoe", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 7, + "missing_count": 47, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2006 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Justin Timberlake Featuring T.I.", + "title": "My Love", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Akon Featuring Eminem", + "title": "Smack That", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Akon Featuring Snoop Dogg", + "title": "I Wanna Love You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Rihanna & Sean Paul", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Vanessa Hudgens", + "title": "Come Back To Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2006 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Alyssa Lies", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a543310-a878-003b-c6f0-e5ea2d5fc507", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Alyssa Lies.mp4", + "title": "Alyssa Lies" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Martina McBride", + "playlist_title": "Anyway", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "b7e5bea2-54ed-7cb3-7d90-d5c53340bd2b", + "path": "z://CDG\\Various\\Martina McBride - Anyway.mp3", + "title": "Anyway" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Joe Nichols", + "playlist_title": "I'll Wait For you", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8cbf81-9a83-081f-0b31-95adf822cb8a", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Nichols - Ill Wait For you.mp4", + "title": "I'll Wait For you" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Sara Evans", + "playlist_title": "You'll Always Be My Baby", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8300b37-e4ca-bf00-c53c-3558fd753824", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Youll Always Be My Baby.mp4", + "title": "You'll Always Be My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Wreckers", + "playlist_title": "My, Oh My", + "found_song": { + "artist": "Wreckers", + "disabled": false, + "favorite": false, + "guid": "be2efa61-f0d7-0fb9-aac4-213b734fa74a", + "path": "z://CDG\\Various\\Wreckers - My, Oh My.mp3", + "title": "My, Oh My" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Brad Paisley", + "title": "She's Everything", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Montgomery Gentry", + "title": "Some People Change", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Phil Vassar", + "title": "The Woman In My Life", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Darryl Worley", + "title": "I Just Came Back From A War", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Little Big Town", + "title": "Good As Gone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gary Allan", + "title": "A Feelin' Like That", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 8, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2006 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ciara", + "playlist_title": "Promise", + "found_song": { + "artist": "Ciara", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ab5e084-48f3-f0cb-67e1-ad955b369bfb", + "path": "z://MP4\\KaraokeOnVEVO\\Ciara - Promise.mp4", + "title": "Promise" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Wind It Up", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "63203cfd-2f78-aef1-c72f-2c9ec5bf542b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF251\\Gwen Stefani - Wind It Up - SF251 - 03.mp3", + "title": "Wind It Up" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Keep Holding On", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4331b8d1-ac13-c9c9-7331-09eca3a72f98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Avril Lavigne - Keep Holding On.mp4", + "title": "Keep Holding On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Welcome To The Black Parade", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "06fcd40d-01c7-a8fd-c31f-a8b0c7ed5ddb", + "path": "z://MP4\\Sing King Karaoke\\My Chemical Romance - Welcome To The Black Parade (Karaoke Version).mp4", + "title": "Welcome To The Black Parade" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Chris Brown", + "playlist_title": "Say Goodbye", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "5c5f5ee1-ca20-46a0-aa0a-aab320a52189", + "path": "z://CDG\\Various\\Chris Brown - Say Goodbye.mp3", + "title": "Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Justin Timberlake", + "playlist_title": "What Goes Around...", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7242a2-5adc-f364-bdc7-0cfbd17b6598", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - What Goes Around....mp4", + "title": "What Goes Around..." + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Daughtry", + "playlist_title": "It's Not Over", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "6d91d8a1-26f0-927d-753b-ef120ec394cf", + "path": "z://CDG\\Various\\Daughtry - It's Not Over.mp3", + "title": "It's Not Over" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Rascal Flatts", + "playlist_title": "What Hurts The Most", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "41f639fe-5fc3-528b-64dd-2c55467ec433", + "path": "z://MP4\\Stingray Karaoke\\What Hurts The Most Rascal Flatts Karaoke with Lyrics.mp4", + "title": "What Hurts The Most" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Snow ((Hey Oh))", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "888cdcf5-b499-983f-dbda-b041f37727b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Red Hot Chili Peppers - Snow (hey Oh) - SF250 - 07.mp3", + "title": "Snow (hey Oh)" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Weird Al Yankovic", + "playlist_title": "White & Nerdy", + "found_song": { + "artist": "Weird Al Yankovic", + "disabled": false, + "favorite": false, + "guid": "147d524b-8a4e-2756-96aa-9edebcec8e88", + "path": "z://MP4\\KtvEntertainment\\Weird Al Yankovic - White & Nerdy (Karaoke without Vocal).mp4", + "title": "White & Nerdy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Killers", + "playlist_title": "When You Were Young", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "5c1bb851-d920-6b95-042d-6e006c5422be", + "path": "z://MP4\\TheKARAOKEChannel\\The Killers - When You Were Young.mp4", + "title": "When You Were Young" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Maneater", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "782ed721-e722-e711-f45d-d4ba5cdc8525", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nelly Furtado - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "OK Go", + "playlist_title": "Here It Goes Again", + "found_song": { + "artist": "OK Go", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce63d670-b8a2-3500-ba04-90c695679586", + "path": "z://MP4\\KaraokeOnVEVO\\OK Go - Here It Goes Again.mp4", + "title": "Here It Goes Again" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Hellogoodbye", + "playlist_title": "Here (In Your Arms)", + "found_song": { + "artist": "Hellogoodbye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de899fa7-7b0b-5914-00fe-9b874f3922dc", + "path": "z://MP4\\KaraokeOnVEVO\\Hellogoodbye - Here (In Your Arms.mp4", + "title": "Here (In Your Arms)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Rob Thomas", + "playlist_title": "Streetcorner Symphony", + "found_song": { + "artist": "Rob Thomas", + "disabled": false, + "favorite": false, + "guid": "317c7d7a-84ef-4892-7296-a7cfa221bfc1", + "path": "z://CDG\\Various\\Rob Thomas - Streetcorner Symphony.mp3", + "title": "Streetcorner Symphony" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "ee857071-16f1-7b56-37ef-30eba74c4c5c", + "path": "z://CDG\\Various\\Mary J. Blige - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Regina Spektor", + "playlist_title": "Fidelity", + "found_song": { + "artist": "Regina Spektor", + "disabled": false, + "favorite": false, + "guid": "5145e72a-3d70-51f5-6e2c-7cd4116561e0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fidelity - Regina Spektor.mp4", + "title": "Fidelity" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 39, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "River", + "found_song": { + "artist": "Josh Groban & Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "24976346-8ae3-676f-7f27-311972e7e953", + "path": "z://MP4\\KaraFun Karaoke\\Run - Josh Groban & Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Run" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Three Days Grace", + "playlist_title": "Pain", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Heartland", + "playlist_title": "I Loved Her First", + "found_song": { + "artist": "Heartland", + "disabled": false, + "favorite": false, + "guid": "ef53ba78-c69d-1692-5849-023627471fea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Loved Her First - Heartland.mp4", + "title": "I Loved Her First" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Josh Groban", + "playlist_title": "I'll Be Home For Christmas", + "found_song": { + "artist": "Amy Grant", + "disabled": false, + "favorite": false, + "guid": "0e169582-b622-0070-f6db-943dc2b067ad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Be Home For Christmas - Amy Grant.mp4", + "title": "I ll Be Home For Christmas" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Akon Featuring Snoop Dogg", + "title": "I Wanna Love You", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Akon Featuring Eminem", + "title": "Smack That", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Justin Timberlake Featuring T.I.", + "title": "My Love", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Jim Jones", + "title": "We Fly High", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "title": "Shortie Like Mine", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Unk", + "title": "Walk It Out", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy", + "title": "I Luv It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Snoop Dogg Featuring R. Kelly", + "title": "That's That", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "title": "You Don't Know", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Featuring Lil' Wayne", + "title": "You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Fat Joe Featuring Lil Wayne", + "title": "Make It Rain", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Ludacris Featuring Mary J. Blige", + "title": "Runaway Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil Scrappy Featuring Young Buck", + "title": "Money In The Bank", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Brad Paisley", + "title": "She's Everything", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Pussycat Dolls Featuring Timbaland", + "title": "Wait A Minute", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Stone Sour", + "title": "Through Glass", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Birdman & Lil Wayne", + "title": "Stuntin' Like My Daddy", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Diddy Featuring Christina Aguilera", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Diddy Featuring Nicole Scherzinger", + "title": "Come To Me", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Fray", + "title": "Happy Xmas (War Is Over)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Cherish", + "title": "Unappreciated", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay-Z", + "title": "Show Me What You Got", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Danity Kane", + "title": "Show Stopper", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Rihanna & Sean Paul", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Nas Featuring will.i.am", + "title": "Hip Hop Is Dead", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Omarion", + "title": "Ice Box", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jay-Z Featuring Chrisette Michele", + "title": "Lost One", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Chris Brown Featuring Jay Biz", + "title": "Poppin'", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Blue October", + "title": "Into The Ocean", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Montgomery Gentry", + "title": "Some People Change", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Augustana", + "title": "Boston", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lil' Boosie Featuring Yung Joc", + "title": "Zoom", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Beyonce Featuring Jay-Z", + "title": "Upgrade U", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "U2 & Green Day", + "title": "The Saints Are Coming", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Incubus", + "title": "Anna-Molly", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Red Jumpsuit Apparatus", + "title": "Face Down", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Vanessa Hudgens", + "title": "Come Back To Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Fall Out Boy", + "title": "The Carpal Tunnel Of Love", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "T.I.", + "title": "Top Back", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jibbs", + "title": "Chain Hang Low", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Chingy Featuring Jermaine Dupri", + "title": "Dem Jeans", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rich Boy Featuring Polow Da Don", + "title": "Throw Some D's", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "AFI", + "title": "Love Like Winter", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Game", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Robin Thicke", + "title": "Lost Without U", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Mat Kearney", + "title": "Nothing Left To Lose", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Gwen Stefani Featuring Akon", + "title": "The Sweet Escape", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Pitbull", + "title": "Ay Chico (Lengua Afuera)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "title": "The Way I Live", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 6, + "missing_count": 54, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2005 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Keyshia Cole", + "title": "I Should Have Cheated", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Alicia Keys", + "title": "Unbreakable", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lil' Wayne", + "title": "Fireman", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kanye West Featuring Adam Levine", + "title": "Heard 'Em Say", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Trey Songz", + "title": "Gotta Go", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lyfe Jennings", + "title": "Must Be Nice", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kirk Franklin", + "title": "Looking For You", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "50 Cent", + "title": "Window Shopper", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2005 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Kanye West Featuring Jamie Foxx", + "title": "Gold Digger", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Sean Paul", + "title": "We Be Burnin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 1, + "missing_count": 5, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2005 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Sara Evans", + "playlist_title": "Cheatin'", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "guid": "d2e88774-32ee-8450-b8ba-a7b0c99b1d4a", + "path": "z://CDG\\Various\\Sara Evans - Cheatin'.mp3", + "title": "Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Nobody But Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "2ad5b86e-8283-241d-0d6e-52d7ffdad067", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Nobody But Me.mp3", + "title": "Nobody But Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jamey Johnson", + "playlist_title": "The Dollar", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6b19281-fabe-b18a-e68e-a0a6ee6a2058", + "path": "z://MP4\\KaraokeOnVEVO\\Jamey Johnson - The Dollar.mp4", + "title": "The Dollar" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Garth Brooks", + "title": "Good Ride Cowboy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Joe Nichols", + "title": "Tequila Makes Her Clothes Fall Off", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kenny Chesney", + "title": "Who You'd Be Today", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Brad Paisley Featuring Dolly Parton", + "title": "When I Get Where I'm Going", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Brooks & Dunn", + "title": "Believe", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gretchen Wilson", + "title": "I Don't Feel Like Loving You Today", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 3, + "missing_count": 7, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2005 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Madonna", + "playlist_title": "Hung Up", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "f20ee305-c5ab-05f0-f95b-78d8563de21f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Madonna - Hung Up - SF238 - 02.mp3", + "title": "Hung Up" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "James Blunt", + "playlist_title": "You're Beautiful", + "found_song": { + "artist": "James Blunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4433ad20-9204-4b26-d1c5-469de0048c4f", + "path": "z://MP4\\Sing King Karaoke\\James Blunt - Youre Beautiful.mp4", + "title": "You're Beautiful" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Gorillaz", + "playlist_title": "Feel Good Inc", + "found_song": { + "artist": "Gorillaz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d5581fa1-9b96-ea02-69cd-76ba6958063e", + "path": "z://MP4\\Sing King Karaoke\\Gorillaz - Feel Good Inc.mp4", + "title": "Feel Good Inc" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Green Day", + "playlist_title": "Wake Me Up When September Ends", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "73489459-90de-96ba-4c6d-8e9289dbcfb6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Me Up When September Ends - Green Day.mp4", + "title": "Wake Me Up When September Ends" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "561fec1d-1402-53b0-88f5-65f9f1b1a6a3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Mariah Carey - Shake It Off - SF236 - 13.mp3", + "title": "Shake It Off" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mariah Carey", + "playlist_title": "We Belong Together", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "57bd5ff3-646d-8e1b-2610-1ca9a0998dff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF232\\Mariah Carey - We Belong Together - SF232 - 02.mp3", + "title": "We Belong Together" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Better Days", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "251a7d67-2f85-498b-f025-288678f15a77", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Better Days (Karaoke).mp4", + "title": "Better Days" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Shakira", + "playlist_title": "Don't Bother", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "6cea6dd0-ed12-3f74-4573-b2177798ef23", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF240\\Shakira - Don't Bother - SF240 - 01.mp3", + "title": "Don't Bother" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Rompe", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "0c48353b-0f9c-92ce-752f-b482f092cc11", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Rompe (Karaoke Version) (2).mp4", + "title": "Rompe" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Pump It", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87718b7c-4493-9eba-8937-2f4c557c37e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Pump It.mp4", + "title": "Pump It" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Keith Urban", + "playlist_title": "Better Life", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78b300e5-495a-9234-5a85-8457af3fe66d", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Better Life.mp4", + "title": "Better Life" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Avenged Sevenfold", + "playlist_title": "Bat Country", + "found_song": { + "artist": "Avenged Sevenfold", + "disabled": false, + "favorite": false, + "guid": "2426b09c-ef14-2cc8-f23f-2d4085ae41df", + "path": "z://MP4\\TheKARAOKEChannel\\Avenged Sevenfold - Bat Country.mp4", + "title": "Bat Country" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shinedown", + "playlist_title": "Save Me", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58552639-5aca-d289-f283-358634858516", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - Save Me.mp4", + "title": "Save Me" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Foo Fighters", + "playlist_title": "DOA", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "c6f7a97a-73c0-41b8-791e-e56425cdd25f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF235\\Foo Fighters - Doa - SF235 - 08.mp3", + "title": "Doa" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ashlee Simpson", + "playlist_title": "Boyfriend", + "found_song": { + "artist": "Ashlee Simpson", + "disabled": false, + "favorite": false, + "guid": "b2398a6c-b327-8ae2-3287-284f7ddf5146", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF239\\Ashlee Simpson - Boyfriend - SF239 - 12.mp3", + "title": "Boyfriend" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Bon Jovi", + "playlist_title": "Have A Nice Day", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "b68159ce-d595-aae8-d472-859672419755", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Bon Jovi - Have A Nice Day - Sf236 - 04 .mp3", + "title": "Have A Nice Day" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Cast Of Rent", + "playlist_title": "Seasons Of Love", + "found_song": { + "artist": "Rent", + "disabled": false, + "favorite": false, + "guid": "1ec06fca-bb11-f666-7d15-e73c212faade", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Seasons Of Love - Rent.mp4", + "title": "Seasons Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kanye West Featuring Jamie Foxx", + "title": "Gold Digger", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Sean Paul", + "title": "We Be Burnin'", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Kanye West Featuring Adam Levine", + "title": "Heard 'Em Say", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil' Wayne", + "title": "Fireman", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Keyshia Cole", + "title": "I Should Have Cheated", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Chamillionaire Featuring Lil' Flip", + "title": "Turn It Up", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Joe Nichols", + "title": "Tequila Makes Her Clothes Fall Off", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "title": "Don't Cha", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "50 Cent", + "title": "Window Shopper", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "title": "Georgia", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Alicia Keys", + "title": "Unbreakable", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Eminem Featuring Nate Dogg", + "title": "Shake That", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cascada", + "title": "Everytime We Touch", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kenny Chesney", + "title": "Who You'd Be Today", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Garth Brooks", + "title": "Good Ride Cowboy", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Death Cab For Cutie", + "title": "Soul Meets Body", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Brad Paisley Featuring Dolly Parton", + "title": "When I Get Where I'm Going", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "System Of A Down", + "title": "Hypnotize", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "title": "Nasty Girl", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Korn", + "title": "Twisted Transistor", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Busta Rhymes", + "title": "Touch It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Trey Songz", + "title": "Gotta Go", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ying Yang Twins Featuring Pitbull", + "title": "Shake", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Juvenile", + "title": "Rodeo", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "title": "Fresh Azimiz", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Ashlee Simpson", + "title": "L.O.V.E.", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Weezer", + "title": "Perfect Situation", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kirk Franklin", + "title": "Looking For You", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Frankie J", + "title": "More Than Words", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Wisin & Yandel", + "title": "Rakata", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "T-Pain Featuring Mike Jones", + "title": "I'm N Luv (Wit A Stripper)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Chris Brown", + "title": "Yo (Excuse Me Miss)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "YoungBloodZ", + "title": "Presidential", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Seether", + "title": "Remedy", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Brooks & Dunn", + "title": "Believe", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Twista Featuring Pitbull", + "title": "Hit The Floor", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Lindsay Lohan", + "title": "Confessions Of A Broken Heart (Daughter To Father)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 5, + "missing_count": 49, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2004 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ciara Featuring Missy Elliott", + "title": "1, 2 Step", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Usher And Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Fabolous", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Ludacris", + "title": "Get Back", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2004 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Nelly Featuring Tim McGraw", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher And Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Switchfoot", + "title": "Dare You To Move", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ciara Featuring Missy Elliott", + "title": "1, 2 Step", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ciara Featuring Petey Pablo", + "title": "Goodies", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 0, + "missing_count": 9, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2004 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Josh Gracin", + "playlist_title": "Nothin' To Lose", + "found_song": { + "artist": "Josh Gracin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf9f50b0-c0e0-f267-0494-14fabb2f3757", + "path": "z://MP4\\KaraokeOnVEVO\\Josh Gracin - Nothin To Lose.mp4", + "title": "Nothin' To Lose" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Billy Dean", + "playlist_title": "Let Them Be Little", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "guid": "192f3e01-56f7-2649-6d67-6ada6e5ba039", + "path": "z://MP4\\Let's Sing Karaoke\\Dean, Billy - Let Them Be Little (Karaoke & Lyrics).mp4", + "title": "Let Them Be Little" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "I May Hate Myself In The Morning", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95953d65-31ce-b1bf-b9c3-fb1e3e0400a8", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - I May Hate Myself In The Morning.mp4", + "title": "I May Hate Myself In The Morning" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Pat Green", + "playlist_title": "Don't Break My Heart Again", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e95db78-7929-e48d-2e5a-1ec2a4d19662", + "path": "z://MP4\\KaraokeOnVEVO\\Pat Green - Dont Break My Heart Again.mp4", + "title": "Don't Break My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jamie O'Neal", + "playlist_title": "Trying To Find Atlantis", + "found_song": { + "artist": "Jamie O Neal", + "disabled": false, + "favorite": false, + "guid": "360bbad9-b954-10e2-006b-500d7dd405a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Trying To Find Atlantis - Jamie O Neal.mp4", + "title": "Trying To Find Atlantis" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Andy Griggs", + "playlist_title": "If Heaven", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c71511f6-73e1-5906-747e-f97b91669214", + "path": "z://MP4\\KaraokeOnVEVO\\Andy Griggs - If Heaven.mp4", + "title": "If Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Big & Rich", + "playlist_title": "Holy Water", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "guid": "74e75f73-358e-f8b7-73e9-8d4addf1bcd9", + "path": "z://MP4\\Let's Sing Karaoke\\Big & Rich - Holy Water (Karaoke & Lyrics).mp4", + "title": "Holy Water" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lonestar", + "title": "Mr. Mom", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Jimmy Wayne", + "title": "Paper Angels", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2004 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Green Day", + "playlist_title": "Boulevard Of Broken Dreams", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "127c4f85-1067-067f-b6c4-c4649fb5452e", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Boulevard Of Broken Dreams (Karaoke Version).mp4", + "title": "Boulevard Of Broken Dreams" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Vertigo", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73197e25-e313-b3fc-82c4-ed816e5c06a5", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Vertigo.mp4", + "title": "Vertigo" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "On The Way Down", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7aa4ad8-eb0c-cf90-e2c0-c903bee2f60e", + "path": "z://MP4\\KaraokeOnVEVO\\Ryan Cabrera - On The Way Down.mp4", + "title": "On The Way Down" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Avril Lavigne", + "playlist_title": "My Happy Ending", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "3f16298a-9ffc-c261-8485-05cadfe9cfa6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happy Ending - Avril Lavigne.mp4", + "title": "My Happy Ending" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Terror Squad", + "playlist_title": "Lean Back", + "found_song": { + "artist": "Terror Squad", + "disabled": false, + "favorite": false, + "guid": "f7e2c54d-3cf9-a309-1a9d-d098c4d0c117", + "path": "z://MP4\\Let's Sing Karaoke\\Terror Squad - Lean Back (Karaoke & Lyrics).mp4", + "title": "Lean Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Killers", + "playlist_title": "Somebody Told Me", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "914c5ed7-9687-2636-95a8-06a18ac476f6", + "path": "z://MP4\\KaraFun Karaoke\\Somebody Told Me - The Killers Karaoke Version KaraFun.mp4", + "title": "Somebody Told Me" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Bowling For Soup", + "playlist_title": "1985", + "found_song": { + "artist": "Bowling For Soup", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c1994f-e8a5-b601-34f7-ecb09321e170", + "path": "z://MP4\\KaraokeOnVEVO\\Bowling For Soup - 1985.mp4", + "title": "1985" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Alicia Keys", + "playlist_title": "Karma", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04518eb6-af7e-f913-cf10-4b591e9b513c", + "path": "z://MP4\\VocalStarKaraoke\\Alicia Keys - Karma.mp4", + "title": "Karma" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Give A Little Bit", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "7ac862fe-521a-013f-d83d-8cf6eb50568f", + "path": "z://MP4\\KaraFun Karaoke\\Give A Little Bit - Goo Goo Dolls Karaoke Version KaraFun.mp4", + "title": "Give A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Gasolina", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "f34e7706-9a7a-48ff-e008-d11451d78b3d", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Gasolina (Karaoke Version) (2).mp4", + "title": "Gasolina" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Usher", + "playlist_title": "Caught Up", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3938bbff-7d91-1dd0-04ba-a0eef20e8163", + "path": "z://MP4\\Sing King Karaoke\\Usher - Caught Up.mp4", + "title": "Caught Up" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Velvet Revolver", + "playlist_title": "Fall To Pieces", + "found_song": { + "artist": "Velvet Revolver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86ccd26e-1cf4-2917-56a8-258edc8b142d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 866\\Velvet Revolver - Fall To Pieces - SFMW 866 -09.mp3", + "title": "Fall To Pieces" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "So Cold", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "47cac92a-4ad0-7fcd-0528-bc5ddfeac841", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Cold - Breaking Benjamin.mp4", + "title": "So Cold" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Phil Vassar", + "playlist_title": "In A Real Love", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "8697e9d1-fedd-ade4-6a27-286b6ddbf6b5", + "path": "z://CDG\\Various\\Phil Vassar - In A Real Love.mp3", + "title": "In A Real Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Papa Roach", + "playlist_title": "Getting Away With Murder", + "found_song": { + "artist": "Papa Roach", + "disabled": false, + "favorite": false, + "guid": "9830b4d1-c9dc-7081-dd33-041025e45792", + "path": "z://CDG\\Various\\Papa Roach - Getting Away With Murder.mp3", + "title": "Getting Away With Murder" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gwen Stefani", + "playlist_title": "What You Waiting For?", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf248731-a9d8-fa6e-f439-b0c603e2b42a", + "path": "z://MP4\\KaraokeOnVEVO\\Gwen Stefani - What You Waiting For.mp4", + "title": "What You Waiting For?" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Green Day", + "playlist_title": "American Idiot", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "e21d4cae-cb13-1c57-659f-eca48d6725ff", + "path": "z://MP4\\KaraFun Karaoke\\American Idiot - Green Day Karaoke Version KaraFun.mp4", + "title": "American Idiot" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Beyonce", + "playlist_title": "Dangerously In Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3eba3d8f-892f-5827-c1ee-4ffd538bba41", + "path": "z://MP4\\Karaoke Sing Sing\\Beyonce - Dangerously In Love SING SING KARAOKE.mp4", + "title": "Dangerously In Love" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "George Strait", + "playlist_title": "I Hate Everything", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75053792-2441-ed1b-5e41-19c2c6ac4879", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I Hate Everything.mp4", + "title": "I Hate Everything" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 37, + "playlist_artist": "Jay-Z/Linkin Park", + "playlist_title": "Numb/Encore", + "found_song": { + "artist": "Linkin Park & Jay-Z", + "disabled": false, + "favorite": false, + "guid": "39fb4f78-e45c-f72f-41aa-0d9cf8851138", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park & Jay-Z - Numb Encore (Karaoke Version).mp4", + "title": "Numb Encore" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Lady", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "82d1e248-3a06-438c-1aff-428a47cfc183", + "path": "z://CDG\\Various\\Lenny Kravitz - Black.mp3", + "title": "Black" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "That's What It's All About", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca91821d-ae7f-e384-6edf-1820ba5678a3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - That's What It's All About.mp4", + "title": "That's What It's All About" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Ciara Featuring Missy Elliott", + "title": "1, 2 Step", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher ft. Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly Featuring Tim McGraw", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ciara Featuring Petey Pablo", + "title": "Goodies", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "title": "Oye Mi Canto", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ludacris", + "title": "Get Back", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Switchfoot", + "title": "Dare You To Move", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Fabolous", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "title": "Encore", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "John Mayer", + "title": "Daughters", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Finger Eleven", + "title": "One Thing", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chingy", + "title": "Balla Baby", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Lonestar", + "title": "Mr. Mom", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Rupee", + "title": "Tempted To Touch", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Chevelle", + "title": "Vitamin R (Leading Us Along)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Gwen Stefani Featuring Eve", + "title": "Rich Girl", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Guerilla Black Featuring Mario Winans", + "title": "You're The One", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Crossfade", + "title": "Cold", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Keyshia Cole Featuring Shyne", + "title": "I Changed My Mind", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Terror Squad", + "title": "Take Me Home", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Crime Mob Featuring Lil Scrappy", + "title": "Knuck If You Buck", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Juvenile, Wacko & Skip", + "title": "Nolia Clap", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Patti LaBelle Featuring Ron Isley", + "title": "Gotta Go Solo", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Body Head Bangerz Featuring YoungBloodz", + "title": "I Smoke, I Drank", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Xzibit Featuring Keri Hilson", + "title": "Hey Now (Mean Muggin)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "title": "Okay", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Monchy & Alexandra", + "title": "Perdidos", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "John Legend", + "title": "Used To Love U", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Anita Baker", + "title": "You're My Everything", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Prince", + "title": "Call My Name", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 4, + "missing_count": 50, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2003 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "R. Kelly", + "title": "Step In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kanye West", + "title": "Through The Wire", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Joe", + "title": "More & More", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ashanti", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 0, + "missing_count": 20, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2003 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Beyonce Featuring Sean Paul", + "title": "Baby Boy", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Stacie Orrico", + "title": "(There's Gotta Be) More To Life", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Liz Phair", + "title": "Why Can't I", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 0, + "missing_count": 9, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2003 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Diamond Rio", + "playlist_title": "Wrinkles", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff951190-c84b-66f3-d004-3f668c516eb0", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Wrinkles.mp4", + "title": "Wrinkles" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Trace Adkins", + "playlist_title": "Hot Mama", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fec2b5c0-a944-a735-646f-8714ad9d630d", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Hot Mama.mp4", + "title": "Hot Mama" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Sara Evans", + "playlist_title": "Perfect", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60ce758b-5b40-0122-4985-5dfae359d4f3", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Perfect.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "In My Daughter's Eyes", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18ee8602-1da7-c619-389b-dca580f45ef0", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - In My Daughter's Eyes.mp4", + "title": "In My Daughter's Eyes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "George Strait", + "title": "Cowboys Like Us", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Montgomery Gentry", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jo Dee Messina", + "title": "I Wish", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jimmy Wayne", + "title": "I Love You This Much", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 0, + "missing_count": 7, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2003 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Dido", + "playlist_title": "White Flag", + "found_song": { + "artist": "Dido", + "disabled": false, + "favorite": false, + "guid": "1ed41ba7-8c14-da3f-ada8-11874ce8c17f", + "path": "z://MP4\\Let's Sing Karaoke\\Dido - White Flag (Karaoke & Lyrics).mp4", + "title": "White Flag" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Linkin Park", + "playlist_title": "Numb", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c1bd24f-92c0-7d11-6b47-2be6ef625802", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Numb.mp4", + "title": "Numb" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Sheryl Crow", + "playlist_title": "The First Cut Is The Deepest", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "guid": "6f08998e-9905-274d-fdbb-d04ea93ae4cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The First Cut Is The Deepest - Sheryl Crow.mp4", + "title": "The First Cut Is The Deepest" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bright Lights", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "3d243457-7403-3c7f-469e-f224b7fd8e6e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bright Lights - Matchbox Twenty.mp4", + "title": "Bright Lights" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Chingy", + "playlist_title": "Right Thurr", + "found_song": { + "artist": "Chingy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c000ba0-c450-50a5-e98c-18c20102fa77", + "path": "z://MP4\\KaraokeOnVEVO\\Chingy - Right Thurr.mp4", + "title": "Right Thurr" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Maroon5", + "playlist_title": "Harder To Breathe", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a9186c6-3e12-3b0a-372c-0eab35fa5e13", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - Harder To Breathe.mp4", + "title": "Harder To Breathe" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "matchbox twenty", + "playlist_title": "Unwell", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e56641f6-893d-b685-3ba2-41ba51bd6b3e", + "path": "z://MP4\\Sing King Karaoke\\matchbox twenty - Unwell.mp4", + "title": "Unwell" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Fallen", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "3af0dd0b-8d53-533a-d3b4-dd45216098f9", + "path": "z://MP4\\KaraFun Karaoke\\Fallen - Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Fallen" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Three Days Grace", + "playlist_title": "(I Hate) Everything About You", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa35a50a-77dc-6201-ab49-e1307ed279dc", + "path": "z://MP4\\Sing King Karaoke\\Three Days Grace - (I Hate Everything About You.mp4", + "title": "(I Hate) Everything About You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jessica Simpson", + "playlist_title": "With You", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27378d76-42ba-4416-4346-931f6b6d4a9b", + "path": "z://MP4\\KaraokeOnVEVO\\Jessica Simpson - With You.mp4", + "title": "With You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Fountains Of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Jet", + "playlist_title": "Are You Gonna Be My Girl", + "found_song": { + "artist": "Jet", + "disabled": false, + "favorite": false, + "guid": "bdb33708-3c2c-0b1d-d743-85b622642d61", + "path": "z://MP4\\TheKARAOKEChannel\\Are You Gonna Be My Girl in the style of Jet Karaoke with Lyrics.mp4", + "title": "Are You Gonna Be My Girl" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Offspring", + "playlist_title": "Hit That", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9db77999-2f4e-b6c3-9dd1-46cbb33dae81", + "path": "z://MP4\\KaraokeOnVEVO\\Offspring - Hit That.mp4", + "title": "Hit That" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gary Allan", + "playlist_title": "Tough Little Boys", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007397d1-8437-f9f1-bd01-81bd4685efaa", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Tough Little Boys.mp4", + "title": "Tough Little Boys" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "A Perfect Circle", + "playlist_title": "Weak And Powerless", + "found_song": { + "artist": "A Perfect Circle", + "disabled": false, + "favorite": false, + "guid": "556b104f-f275-24ab-34ae-3039f2011dd2", + "path": "z://CDG\\Various\\A Perfect Circle - Weak And Powerless.mp3", + "title": "Weak And Powerless" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Hilary Duff", + "playlist_title": "So Yesterday", + "found_song": { + "artist": "Hilary Duff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5d729bc-0cf5-1c6b-0929-3b92c2699734", + "path": "z://MP4\\KaraokeOnVEVO\\Hilary Duff - So Yesterday.mp4", + "title": "So Yesterday" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Michael Jackson", + "playlist_title": "One More Chance", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "807482f1-eca1-63fc-533c-c45df5bf8504", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Jackson - One More Chance.mp4", + "title": "One More Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 58, + "playlist_artist": "Eamon", + "playlist_title": "F**k It (I Don't Want You Back)", + "found_song": { + "artist": "Eamon", + "disabled": false, + "favorite": false, + "guid": "dd0b8a27-8866-00c8-3e62-5fb42fcbe74f", + "path": "z://MP4\\Let's Sing Karaoke\\Eamon - I Don't Want You Back (Fuck It) (Karaoke & Lyrics).mp4", + "title": "I Don't Want You Back" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Live", + "playlist_title": "Heaven", + "found_song": { + "artist": "Emeli Sande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f07e84b-dd83-86b0-9a6e-748f7f57a0e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Emeli Sande - Heaven.mp4", + "title": "Heaven" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "R. Kelly", + "title": "Step In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Beyonce Featuring Sean Paul", + "title": "Baby Boy", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Liz Phair", + "title": "Why Can't I", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nick Cannon Featuring R. Kelly", + "title": "Gigolo", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Stacie Orrico", + "title": "(There's Gotta Be) More To Life", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kanye West", + "title": "Through The Wire", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Nelly, P. Diddy & Murphy Lee", + "title": "Shake Ya Tailfeather", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "George Strait", + "title": "Cowboys Like Us", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Joe", + "title": "More & More", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Ashanti", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Westside Connection Featuring Nate Dogg", + "title": "Gangsta Nation", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mya", + "title": "Fallen", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Montgomery Gentry", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Missy Elliott", + "title": "Pass That Dutch", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Cassidy Featuring R. Kelly", + "title": "Hotel", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Puddle Of Mudd", + "title": "Away From Me", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "B2K Featuring Fabolous", + "title": "Badaboom", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Trapt", + "title": "Still Frame", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Britney Spears Featuring Madonna", + "title": "Me Against The Music", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "title": "Pop That Booty", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Ginuwine", + "title": "Love You More", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Monica", + "title": "Knock Knock", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Barenaked Ladies", + "title": "Another Postcard (Chimps)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Audioslave", + "title": "Show Me How To Live", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "John Mayer", + "title": "Bigger Than My Body", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ryan Duarte", + "title": "You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ja Rule", + "title": "Clap Back", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "title": "Shake That Monkey", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Lasgo", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trillville", + "title": "Neva Eva", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Big Tymers Featuring R. Kelly", + "title": "Gangsta Girl", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Scotty Emerick With Toby Keith", + "title": "I Can't Take You Anywhere", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 2, + "missing_count": 53, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2002 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Musiq", + "title": "dontchange", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Aaliyah", + "title": "Miss You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Nas", + "title": "Made You Look", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "50 Cent", + "title": "Wanksta", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Clipse", + "title": "When The Last Time", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2002 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "title": "Jenny From The Block", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "No Doubt Featuring Lady Saw", + "title": "Underneath It All", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Santana Featuring Michelle Branch", + "title": "The Game Of Love", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "O-Town", + "title": "These Are The Days", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 2, + "missing_count": 7, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2002 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Brad Paisley", + "playlist_title": "I Wish You'd Stay", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc1f362-7bb1-7024-dc5f-f4f8c4a4c174", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - I Wish Youd Stay.mp4", + "title": "I Wish You'd Stay" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Travis Tritt", + "playlist_title": "Strong Enough To Be Your Man", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0b64741-3b4e-3167-d903-ea9ac553ef89", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Strong Enough To Be Your Man.mp4", + "title": "Strong Enough To Be Your Man" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Beautiful Mess", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "52632b67-86fc-05dd-7c9a-c8c5eff4e2cf", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - Beautiful Mess (Karaoke & Lyrics).mp4", + "title": "Beautiful Mess" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Gary Allan", + "playlist_title": "Man To Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8453de-c5f3-9a36-b58c-f4cdb4670aac", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Man To Man.mp4", + "title": "Man To Man" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Trace Adkins", + "playlist_title": "Chrome", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db940c6c-be07-8136-e87a-427e6f5651b4", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Chrome.mp4", + "title": "Chrome" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lonestar", + "title": "Unusually Unusual", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "John Michael Montgomery", + "title": "'Til Nothing Comes Between Us", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Trick Pony", + "title": "On A Mission", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kellie Coffey", + "title": "At The End Of The Day", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jennifer Hanson", + "title": "Beautiful Goodbye", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 1, + "missing_count": 7, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2002 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "matchbox twenty", + "playlist_title": "Disease", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3831e030-71f2-91a3-995b-3199d9adb6cf", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Disease.mp4", + "title": "Disease" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Madonna", + "playlist_title": "Die Another Day", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "373b795c-1a47-3ceb-eb3b-8c1d6c481a19", + "path": "z://MP4\\singsongsmusic\\Die Another Day - Karaoke HD (In the style of Madonna).mp4", + "title": "Die Another Day" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "3 Doors Down", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "befa5d31-9144-10d1-fc7d-61ce5ca2e0ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I m Gone - 3 Doors Down.mp4", + "title": "When I m Gone" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Complicated", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "51732fe4-ff44-676c-6025-1ecde284c595", + "path": "z://MP4\\Sing King Karaoke\\Avril Lavigne - Complicated (Karaoke Version).mp4", + "title": "Complicated" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Foo Fighters", + "playlist_title": "All My Life", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "921b541f-5f91-39cf-17cb-64b2db7df075", + "path": "z://MP4\\Let's Sing Karaoke\\Foo Fighters - All My Life (Karaoke & Lyrics).mp4", + "title": "All My Life" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Nirvana", + "playlist_title": "You Know You're Right", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "55526be5-974f-880d-1b07-0604a5322e4a", + "path": "z://MP4\\Let's Sing Karaoke\\Nirvana - You Know You're Right (Karaoke & Lyrics).mp4", + "title": "You Know You're Right" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Lasgo", + "playlist_title": "Something", + "found_song": { + "artist": "Lasgo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efbf7f30-6256-abe4-5c63-7cc0632e07f2", + "path": "z://MP4\\VocalStarKaraoke\\Lasgo - Something.mp4", + "title": "Something" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Saliva", + "playlist_title": "Always", + "found_song": { + "artist": "Saliva", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2a4f67d-fdb4-b0c9-c868-7456331f1787", + "path": "z://MP4\\KaraokeOnVEVO\\Saliva - Always.mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Norah Jones", + "playlist_title": "Don't Know Why", + "found_song": { + "artist": "Norah Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d153ea9-0a91-bf02-0cdb-69134cd2a806", + "path": "z://MP4\\Sing King Karaoke\\Norah Jones - Don't Know Why.mp4", + "title": "Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Audioslave", + "playlist_title": "Cochise", + "found_song": { + "artist": "Audioslave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df2f27c7-52bf-8406-d638-8aaaf8273bdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Audioslave - Cochise - SFMW 865 -15.mp3", + "title": "Cochise" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "A Moment Like This", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "002fa5b4-958f-dff6-52a3-f2560f704a32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Moment Like This - Kelly Clarkson.mp4", + "title": "A Moment Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Queens Of The Stone Age", + "playlist_title": "No One Knows", + "found_song": { + "artist": "Queens Of The Stone Age", + "disabled": false, + "favorite": false, + "guid": "2bc09bcb-a27d-9b13-bbaf-ed919ec8c06d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No One Knows - Queens Of The Stone Age.mp4", + "title": "No One Knows" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Zephyr Song", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "74ff414c-f20d-c134-bdcd-c9491a43bfc0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Zephyr Song - Red Hot Chili Peppers.mp4", + "title": "The Zephyr Song" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Uncle Kracker", + "playlist_title": "In A Little While", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "74e9df70-8b26-91f9-10ec-5af604c9f06b", + "path": "z://MP4\\Let's Sing Karaoke\\Uncle Kracker - In A Little While (Karaoke & Lyrics).mp4", + "title": "In A Little While" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "TLC", + "playlist_title": "Girl Talk", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e3176-d926-4b11-3296-1d714a36ffd8", + "path": "z://CDG\\SBI\\SBI-04\\SB12077 - TLC - Girl Talk.mp3", + "title": "Girl Talk" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Faith Hill", + "playlist_title": "Cry", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "185f64ef-d7a4-dd02-53f8-8b5ded0fd2ea", + "path": "z://MP4\\KaraFun Karaoke\\Cry - Faith Hill Karaoke Version KaraFun.mp4", + "title": "Cry" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Mariah Carey", + "playlist_title": "Through The Rain", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "19adc49c-8897-c40a-4380-03feab62015a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF199\\Mariah Carey - Through The Rain - SF199 - 06.mp3", + "title": "Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Of Those Days", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "01aac6e0-fb8f-85d8-fbe4-18868d456bde", + "path": "z://CDG\\Various\\Whitney Houston - One Of Those Days.mp3", + "title": "One Of Those Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "System Of A Down", + "playlist_title": "Aerials", + "found_song": { + "artist": "System Of A Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c38c5782-f58e-a296-5605-17fb0b3b2427", + "path": "z://MP4\\Sing King Karaoke\\System Of A Down - Aerials.mp4", + "title": "Aerials" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Kylie Minogue", + "playlist_title": "Come Into My World", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39d36c3c-cb08-777b-2ea9-ad1ba3df8b79", + "path": "z://MP4\\KaraokeOnVEVO\\Kylie Minogue - Come Into My World.mp4", + "title": "Come Into My World" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Alan Jackson", + "playlist_title": "Work In Progress", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2255c3c0-c7ac-3b4d-9b92-f1d6ba700e5d", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Work In Progress.mp4", + "title": "Work In Progress" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Michelle Branch", + "playlist_title": "Goodbye To You", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "7e929ca3-1142-4897-ad0a-b0377eb16ce4", + "path": "z://MP4\\KaraFun Karaoke\\Goodbye To You - Michelle Branch Karaoke Version KaraFun.mp4", + "title": "Goodbye To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Lifehouse", + "playlist_title": "Spin", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "4a10709b-9c9c-8b76-545f-d58a622b77fd", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Blind (Karaoke).mp4", + "title": "Blind" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "title": "Jenny From The Block", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "No Doubt Featuring Lady Saw", + "title": "Underneath It All", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Santana Featuring Michelle Branch", + "title": "The Game Of Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Aaliyah", + "title": "Miss You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Musiq", + "title": "dontchange", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jennifer Lopez Featuring LL Cool J", + "title": "All I Have", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Nelly Featuring Kelly Rowland", + "title": "Dilemma", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Clipse", + "title": "When The Last Time", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Kid Rock Featuring Sheryl Crow", + "title": "Picture", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Nas", + "title": "Made You Look", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "50 Cent", + "title": "Wanksta", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Chevelle", + "title": "The Red", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Christina Aguilera Featuring Redman", + "title": "Dirrty", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Ja Rule Featuring Ashanti", + "title": "Mesmerize", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "O-Town", + "title": "These Are The Days", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Seether", + "title": "Fine Again", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Stone Sour", + "title": "Bother", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Disturbed", + "title": "Prayer", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "title": "Gossip Folks", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Field Mob", + "title": "Sick Of Being Lonely", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Snoop Dogg", + "title": "From Tha Chuuuch To Da Palace", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Our Lady Peace", + "title": "Somewhere Out There", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Common Featuring Mary J. Blige", + "title": "Come Close To Me", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Isyss", + "title": "Single For The Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Benzino", + "title": "Rock The Party", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Trick Daddy Featuring LaTocha Scott", + "title": "Thug Holiday", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Toni Braxton Featuring Loon", + "title": "Hit The Freeway", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Telepopmusik", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "title": "Oh Yeah!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 4, + "missing_count": 47, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2001 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "No Doubt Featuring Bounty Killer", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lenny Kravitz", + "title": "Dig In", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Nelly", + "title": "#1", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 1, + "missing_count": 6, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2001 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tim McGraw", + "playlist_title": "The Cowboy In Me", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b06ddd0-1837-c33d-35b3-4d64e4fbc6e3", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - The Cowboy In Me.mp4", + "title": "The Cowboy In Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Some Days You Gotta Dance", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7861fd3-7ad5-7f95-f4cf-7e4f51d72217", + "path": "z://CDG\\Various\\Dixie Chicks - Some Days You Gotta Dance.mp3", + "title": "Some Days You Gotta Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Martina McBride", + "playlist_title": "Blessed", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dfd7ff9-48f3-6aa9-abb3-4c880629cae8", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Chris Cagle", + "playlist_title": "I Breathe In, I Breathe Out", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4956694-27c2-b135-0abc-15f10618b397", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - I Breathe In, I Breathe Out.mp4", + "title": "I Breathe In, I Breathe Out" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Blake Shelton", + "playlist_title": "All Over Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "4d90cb21-a0e1-f990-182d-10bf07a71a1a", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - All Over Me.mp3", + "title": "All Over Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Cold One Comin' On", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47d5931d-14b6-0ebe-712f-12bccb5164f9", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Cold One Comin On.mp4", + "title": "Cold One Comin' On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "Only In America", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "ddc3b2e2-25e6-0a04-47ea-80f36865f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only In America - Brooks & Dunn.mp4", + "title": "Only In America" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I'm Movin' On", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "76d07be9-89c2-3a87-5fa9-156a6b46acd0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-07 - Rascal Flatts - Im Moving On.mp3", + "title": "Im Moving On" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jo Dee Messina With Tim McGraw", + "title": "Bring On The Rain", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Joe Diffie", + "title": "In Another World", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Tracy Byrd", + "title": "Just Let Me Be In Love", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Travis Tritt", + "title": "Love Of A Woman", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sara Evans", + "title": "Saints & Angels", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jamie O'Neal", + "title": "Shiver", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 4, + "missing_count": 7, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2001 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Alicia Keys", + "playlist_title": "A Woman's Worth", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e5075906-ec70-2aa0-e5da-42d36a8cbd80", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Woman s Worth - Alicia Keys.mp4", + "title": "A Woman s Worth" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaliyah", + "playlist_title": "Rock The Boat", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "fb107fbe-d1a1-73d7-f492-5417aeb529a7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock The Boat - Aaliyah.mp4", + "title": "Rock The Boat" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Enya", + "playlist_title": "Only Time", + "found_song": { + "artist": "Enya", + "disabled": false, + "favorite": false, + "guid": "c533bd09-18e9-9c91-a827-6ba382d59ed7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Time - Enya.mp4", + "title": "Only Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Michael Jackson", + "playlist_title": "Butterflies", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "16110716-0dfa-c3d0-32a3-4c6ede8b5874", + "path": "z://CDG\\Various\\Michael Jackson - Butterflies.mp3", + "title": "Butterflies" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Linkin Park", + "playlist_title": "In The End", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "51afd01e-6d42-4ef2-a317-f31964de6046", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - In The End (Karaoke Version) (2).mp4", + "title": "In The End" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Staind", + "playlist_title": "It's Been Awhile", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "a014b9cd-8e4c-69e9-86d6-9dac9064ece4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Been Awhile - Staind.mp4", + "title": "It s Been Awhile" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Craig David", + "playlist_title": "7 Days", + "found_song": { + "artist": "Craig David", + "disabled": false, + "favorite": false, + "guid": "eba76a00-10d0-37ad-61b5-c2613bb2b508", + "path": "z://MP4\\Let's Sing Karaoke\\David, Craig - 7 Days (Karaoke & Lyrics).mp4", + "title": "7 Days" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Jewel", + "playlist_title": "Standing Still", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbfd8447-25ef-8e86-f0b8-b26e2d02f28d", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Standing Still.mp4", + "title": "Standing Still" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lifehouse", + "playlist_title": "Hanging By A Moment", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4297f406-3f5c-cfb1-19dd-1f878e47a9de", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Hanging By A Moment.mp4", + "title": "Hanging By A Moment" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Train", + "playlist_title": "Drops Of Jupiter (Tell Me)", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "490cda6b-a72c-3ba3-a610-ee9fce9c87b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drops Of Jupiter (Tell Me) - Train.mp4", + "title": "Drops Of Jupiter (Tell Me)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "P.O.D.", + "playlist_title": "Alive", + "found_song": { + "artist": "P.O.D.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcf40adb-a360-1f99-ddaa-95f84e9cab57", + "path": "z://MP4\\KaraokeOnVEVO\\P.O.D. - Alive.mp4", + "title": "Alive" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jay-Z", + "playlist_title": "Girls, Girls, Girls", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "a89359a9-0289-580a-1968-28df3603bd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\Jay Z - Girls Girls Girls - SF189 - 14.mp3", + "title": "Girls Girls Girls" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Mary J. Blige", + "playlist_title": "No More Drama", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "57fc453d-c218-61e1-f4c5-82c191835699", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Drama - Mary J. Blige.mp4", + "title": "No More Drama" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Blurry", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "8e66704c-3dd1-7043-d24b-9508e0ab3ff5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blurry - Puddle of Mudd.mp4", + "title": "Blurry" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Maxwell", + "playlist_title": "Lifetime", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "ca4b071a-450e-6b78-3471-4b36895d76f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifetime - Maxwell.mp4", + "title": "Lifetime" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Michelle Branch", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e919d66-d2db-6bfd-9d31-2ef5c2625b10", + "path": "z://MP4\\Sing King Karaoke\\Michelle Branch - Everywhere.mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Angie Stone", + "playlist_title": "Brotha", + "found_song": { + "artist": "Angie Stone", + "disabled": false, + "favorite": false, + "guid": "fd30df8c-f9d9-2582-c6e6-6b7b41390ba4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brotha - Angie Stone.mp4", + "title": "Brotha" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Britney Spears", + "playlist_title": "I'm A Slave 4 U", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "5dbc0504-3c1b-38db-3f78-d5bfb3f61ba8", + "path": "z://MP4\\KaraFun Karaoke\\I'm a Slave 4 U - Britney Spears Karaoke Version KaraFun.mp4", + "title": "I'm a Slave 4 U" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Incubus", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Incubus", + "disabled": false, + "favorite": false, + "guid": "57897604-1afa-d58d-da39-0b14e56b113e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wish You Were Here - Incubus.mp4", + "title": "Wish You Were Here" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "112", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "112", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "689fac89-5270-4ac6-feef-9e119800812a", + "path": "z://MP4\\KaraokeOnVEVO\\112 - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Lee Greenwood", + "playlist_title": "God Bless The USA", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cde5ef84-9aef-a4ae-4e00-a161fa22cc06", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - God Bless The USA.mp4", + "title": "God Bless The USA" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Staind", + "playlist_title": "Fade", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "53473366-978e-74b3-5598-13674cf852a3", + "path": "z://CDG\\Various\\Staind - Fade.mp3", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "U2", + "playlist_title": "Stuck In A Moment You Can't Get Out Of", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "915ffd6b-26da-de76-69c4-0ef529a1d378", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Stuck In A Moment You Can't Get Out Of (Karaoke & Lyrics).mp4", + "title": "Stuck In A Moment You Can't Get Out Of" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Alien Ant Farm", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Alien Ant Farm", + "disabled": false, + "favorite": false, + "guid": "3de1cb54-3303-4c99-296f-bddf52d156fd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Alien Ant Farm.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Drowning", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59c55862-8e29-41fc-a04f-0c316812cf85", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Backstreet Boys - Drowning - SFTPB04 - 08.mp3", + "title": "Drowning" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Christina Milian", + "playlist_title": "AM To PM", + "found_song": { + "artist": "Christina Milian", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ecd54eb-364b-3dfc-04a4-ee6a86b82495", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christina Milian - AM To PM.mp4", + "title": "AM To PM" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "fc7a8e67-bee6-a22d-5219-4a69aff99859", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where I Come From - Alan Jackson.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Brian McKnight", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e350c44f-62b3-97ec-14d1-602d6f224b25", + "path": "z://MP4\\KaraokeOnVEVO\\Brian McKnight - Love Of My Life.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Control", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "59e9e955-ff98-2108-2b34-c1e296316acd", + "path": "z://CDG\\Various\\Puddle Of Mudd - Control.mp3", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Tim McGraw", + "playlist_title": "Angry All The Time", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "0b985a5c-30bf-6b96-3497-a7f7d353c875", + "path": "z://CDG\\Various\\Tim McGraw - Angry All The Time.mp3", + "title": "Angry All The Time" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Whitney Houston", + "playlist_title": "The Star Spangled Banner", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "e74da08f-5aaa-60ad-1864-0b000316dc19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Star Spangled Banner - Whitney Houston.mp4", + "title": "The Star Spangled Banner" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Rock My World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "2f598e17-f4d2-1334-db2d-bb79ee9cf779", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - You Rock My World (Karaoke & Lyrics) (2).mp4", + "title": "You Rock My World" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "R. Kelly", + "playlist_title": "The World's Greatest", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "d65bc9d0-18d9-acb1-b52a-9e17ac63c09c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\R. Kelly - The Worlds Greatest - SF189 - 15.mp3", + "title": "The Worlds Greatest" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Ja Rule Featuring Ashanti", + "title": "Always On Time", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Fat Joe Featuring R. Kelly", + "title": "We Thuggin'", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "City High Featuring Eve", + "title": "Caramel", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Nelly", + "title": "#1", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "No Doubt Featuring Bounty Killer", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "title": "Son Of A Gun", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lenny Kravitz", + "title": "Dig In", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ludacris", + "title": "Roll Out (My Business)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Mr. Cheeks", + "title": "Lights, Camera, Action!", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Busta Rhymes", + "title": "Break Ya Neck", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mystikal", + "title": "Bouncin' Back (Bumpin' Me Against The Wall)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Faith Evans", + "title": "You Gets No Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Petey Pablo", + "title": "Raise Up", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "OutKast Featuring Killer Mike", + "title": "The Whole World", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Jo Dee Messina With Tim McGraw", + "title": "Bring On The Rain", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "title": "Take Away", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Fabolous", + "title": "Young'n (Holla Back)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Master P Featuring Weebie", + "title": "Ooohhhwee", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Jagged Edge", + "title": "Goodbye", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Travis Tritt", + "title": "Love Of A Woman", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Joe", + "title": "Let's Stay Home Tonight", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Jermaine Dupri & Ludacris", + "title": "Welcome To Atlanta", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "Ain't It Funny", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Juvenile", + "title": "From Her Mama (Mama Got A**)", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Glenn Lewis", + "title": "Don't You Forget It", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Mariah Carey", + "title": "Never Too Far/Hero (Medley)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Method Man & Redman", + "title": "Part II", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bubba Sparxxx", + "title": "Ugly", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Ludacris, LL Cool J & Keith Murray", + "title": "Fatty Girl", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "R. Kelly", + "title": "Feelin' On Yo Booty", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Nas", + "title": "Got Ur Self A...", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Tyrese", + "title": "What Am I Gonna Do", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Reba", + "title": "I'm A Survivor", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "R.L., Snoop Dogg & Lil' Kim", + "title": "Do U Wanna Roll (Dolittle Theme)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Babyface", + "title": "What If", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jonell & Method Man", + "title": "Round & Round", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Daniel Rodriguez", + "title": "God Bless America", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "DMX", + "title": "Who We Be", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 4, + "missing_count": 42, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2000 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lenny Kravitz", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "SoulDecision Featuring Thrust", + "title": "Faded", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 3, + "missing_count": 6, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2000 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Darryl Worley", + "playlist_title": "A Good Day To Run", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46836067-4735-1177-5f0c-7c657686e857", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - A Good Day To Run.mp4", + "title": "A Good Day To Run" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Alabama", + "playlist_title": "When It All Goes South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83358de3-65e9-b2fd-616a-f5f187ae7ef6", + "path": "z://CDG\\Various\\Alabama - When It All Goes South.mp3", + "title": "When It All Goes South" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Andy Griggs", + "playlist_title": "You Made Me That Way", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f5d6dca-7a0d-548a-ebca-e8b1efe4fcc5", + "path": "z://CDG\\Various\\Andy Griggs - You Made Me That Way.mp3", + "title": "You Made Me That Way" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Tim McGraw", + "title": "My Next Thirty Years", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Kenny Chesney", + "title": "I Lost It", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Brad Paisley", + "title": "We Danced", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Aaron Tippin", + "title": "Kiss This", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "SheDaisy", + "title": "Lucky 4 You (Tonight I'm Just Me)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 0, + "missing_count": 10, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2000 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "OutKast", + "playlist_title": "Ms. Jackson", + "found_song": { + "artist": "Outkast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7a4e934-2ed2-2439-6a21-d879714cd925", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Outkast - Ms Jackson - SFTPB04 - 14.mp3", + "title": "Ms Jackson" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "R. Kelly", + "playlist_title": "I Wish", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fea3d88-4410-9d5c-3421-0b8100f34a87", + "path": "z://MP4\\KaraokeOnVEVO\\R. Kelly - I Wish.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "O-Town", + "playlist_title": "Liquid Dreams", + "found_song": { + "artist": "O Town", + "disabled": false, + "favorite": false, + "guid": "4af7a5c4-864f-b30c-6491-3645e5486db1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF186\\O Town - Liquid Dreams - SF186 - 12.mp3", + "title": "Liquid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nelly", + "playlist_title": "E.I.", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a889b7a-d714-eba8-6cb2-fee0db45ea8b", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly - EI.mp4", + "title": "E.I." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "Pinch Me", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "0b6ba5d7-3551-1c94-59df-628e99a76cd7", + "path": "z://CDG\\Various\\Barenaked Ladies - Pinch Me.mp3", + "title": "Pinch Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "U2", + "playlist_title": "Beautiful Day", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "c83be262-204b-3b04-76dc-019e0b598d20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\U2 - Beautiful Day - SF172 - 07.mp3", + "title": "Beautiful Day" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Madonna", + "playlist_title": "Music", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3125831-bf55-b10c-2239-5fa7bb83160b", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Music.mp4", + "title": "Music" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fuel", + "playlist_title": "Hemorrhage (In My Hands)", + "found_song": { + "artist": "Fuel", + "disabled": false, + "favorite": false, + "guid": "0dfb7642-1dc7-3c1b-a8f6-5a1d5a2761f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hemorrhage (In My Hands) - Fuel.mp4", + "title": "Hemorrhage (In My Hands)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bent", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dab62e58-e941-66a1-7b40-c6601548731c", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Bent.mp4", + "title": "Bent" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ricky Martin", + "playlist_title": "She Bangs", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf327ed4-1810-3506-dd38-1b1150ead179", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Martin - She Bangs.mp4", + "title": "She Bangs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "My Everything", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c59a897-660b-e958-1f9d-4e83bb6ab003", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - My Everything.mp4", + "title": "My Everything" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "3 Doors Down", + "playlist_title": "Loser", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2c8b62-daa6-34ed-ad42-bb48320a2805", + "path": "z://MP4\\KaraokeOnVEVO\\3 Doors Down - Loser.mp4", + "title": "Loser" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "David Gray", + "playlist_title": "Babylon", + "found_song": { + "artist": "David Gray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a63df7f-b64b-641c-2d5e-b823b11bb304", + "path": "z://MP4\\KaraokeOnVEVO\\David Gray - Babylon.mp4", + "title": "Babylon" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Rollin'", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f57c300-7f06-253b-bf18-7af1022e1480", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limp Bizkit - Rollin.mp4", + "title": "Rollin'" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kelly Price", + "playlist_title": "You Should've Told Me", + "found_song": { + "artist": "Kelly Price", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27ffe53b-9803-1bc2-8869-08846d8ae029", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Price - You Shouldve Told Me.mp4", + "title": "You Should've Told Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Offspring", + "playlist_title": "Original Prankster", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d21a102-e7fd-366b-1b63-917072596b4e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Offspring - Original Prankster - SFMW 807 -14.mp3", + "title": "Original Prankster" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boyz II Men", + "playlist_title": "Thank You In Advance", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc89a85d-ea17-3d94-d73d-a2490c4abc01", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - Thank You In Advance.mp4", + "title": "Thank You In Advance" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "98 Degrees", + "playlist_title": "Give Me Just One Night (Una Noche)", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91caebe0-b8b7-a78d-3384-61dca5f83d28", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Give Me Just One Night (Una Noche.mp4", + "title": "Give Me Just One Night (Una Noche)" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "George Strait", + "playlist_title": "Go On", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eaad4b7-e503-7b33-80eb-96687af400d7", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Go On.mp4", + "title": "Go On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jay-Z", + "title": "I Just Wanna Love U (Give It 2 Me)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lenny Kravitz", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ja Rule Featuring Christina Milian", + "title": "Between Me And You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ludacris Featuring Shawna", + "title": "What's Your Fantasy", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Avant Featuring Ketara Wyatt", + "title": "My First Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tim McGraw", + "title": "My Next Thirty Years", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Musiq", + "title": "Just Friends (Sunny)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Mystikal Featuring Nivea", + "title": "Danger (Been So Long)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Kenny Chesney", + "title": "I Lost It", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "K-Ci & JoJo", + "title": "Crazy", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Mikaila", + "title": "So In Love With Two", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Bow Wow", + "title": "Bow Wow (That's My Name)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brad Paisley", + "title": "We Danced", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Vertical Horizon", + "title": "You're A God", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Carl Thomas", + "title": "Emotional", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "3LW", + "title": "No More (Baby I'ma Do Right)", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Public Announcement", + "title": "Mamacita", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Wyclef Jean Featuring Mary J. Blige", + "title": "911", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dave Hollister", + "title": "One Woman Man", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Eminem Featuring Dido", + "title": "Stan", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Vitamin C", + "title": "The Itch", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Moby Featuring Gwen Stefani", + "title": "South Side", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Cash Money Millionaires", + "title": "Project Chick", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jagged Edge", + "title": "Promise", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "112", + "title": "It's Over Now", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Erykah Badu", + "title": "Bag Lady", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "NewSong", + "title": "The Christmas Shoes", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "BBMak", + "title": "Still On Your Side", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "title": "Is That Your Chick", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Profyle", + "title": "Liar", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Yolanda Adams", + "title": "Open My Heart", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Xzibit", + "title": "X", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Shaggy Featuring Rayvon", + "title": "Angel", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Billy Gilman", + "title": "Oklahoma", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Beenie Man Featuring Mya", + "title": "Girls Dem Sugar", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "title": "Put It On Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jaheim", + "title": "Could It Be", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Lil' Kim Featuring Sisqo", + "title": "How Many Licks?", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "title": "Oh No", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Marc Anthony", + "title": "My Baby You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "De La Soul Featuring Chaka Khan", + "title": "All Good?", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Aaron Tippin", + "title": "Kiss This", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Sunday", + "title": "I Know", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Vince Gill", + "title": "Feels Like Love", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nine Days", + "title": "If I Am", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 3, + "missing_count": 54, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1999 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gary Allan", + "playlist_title": "Smoke Rings In The Dark", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49e24614-81b7-2227-66e5-264486f13ebb", + "path": "z://CDG\\Various\\Gary Allan - Smoke Rings In The Dark.mp3", + "title": "Smoke Rings In The Dark" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mark Wills", + "playlist_title": "Back At One", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "guid": "8a4f03b4-18b9-8802-cdd8-155fb7f3cb0f", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Back At One (Karaoke).mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Because You Love Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "09806881-c17d-3a41-bdf1-5ef050cdb0a2", + "path": "z://MP4\\KaraFun Karaoke\\Because You Love Me - Jo Dee Messina Karaoke Version KaraFun.mp4", + "title": "Because You Love Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Clint Black", + "title": "When I Said I Do", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "John Michael Montgomery", + "title": "Home To You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Martina McBride", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tracy Byrd", + "title": "Put Your Hand In Mine", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Brooks & Dunn", + "title": "Beer Thirty", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "George Strait", + "title": "What Do You Say To That", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Joe Diffie", + "title": "The Quittin' Kind", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1999 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Brian McKnight", + "playlist_title": "Back At One", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "ee1da233-9aa1-2e7e-69ec-545f23f75bd9", + "path": "z://MP4\\Sing King Karaoke\\Brian McKnight - Back At One.mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jessica Simpson", + "playlist_title": "I Wanna Love You Forever", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "guid": "9a684988-cf6f-9021-f62d-74c6ccfed52e", + "path": "z://MP4\\KaraFun Karaoke\\I Wanna Love You Forever - Jessica Simpson Karaoke Version KaraFun.mp4", + "title": "I Wanna Love You Forever" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Savage Garden", + "playlist_title": "I Knew I Loved You", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "1d596975-c0fe-cf0e-bff2-468586de73f3", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - I Knew I Loved You (Karaoke Version).mp4", + "title": "I Knew I Loved You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "My Love Is Your Love", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "c6f17c64-c26f-b405-0a92-962502cb3242", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - My Love Is Your Love (Karaoke Version).mp4", + "title": "My Love Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Marc Anthony", + "playlist_title": "I Need To Know", + "found_song": { + "artist": "Marc Anthony", + "disabled": false, + "favorite": false, + "guid": "b8496988-a5c9-7019-b64f-b42a7f4d9868", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need To Know - Marc Anthony.mp4", + "title": "I Need To Know" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Blaque", + "playlist_title": "Bring It All To Me", + "found_song": { + "artist": "Blaque ft. N Sync", + "disabled": false, + "favorite": false, + "guid": "3043647b-de52-0f74-4240-b780f90961a4", + "path": "z://MP4\\Let's Sing Karaoke\\Blaque & N Sync - Bring It All To Me (Karaoke & Lyrics).mp4", + "title": "Bring It All To Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Waiting For Tonight", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4691016a-3bb5-be33-e9dc-8d853adf3714", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTP01\\Jennifer Lopez - Waiting For Tonight - SFTP01- 02.mp3", + "title": "Waiting For Tonight" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Christina Aguilera", + "playlist_title": "What A Girl Wants", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5291999f-3cd9-fc19-1de1-92f05783ab69", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - What A Girl Wants.mp4", + "title": "What A Girl Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Len", + "playlist_title": "Steal My Sunshine", + "found_song": { + "artist": "Len", + "disabled": false, + "favorite": false, + "guid": "9f29d6a7-a31d-d02b-8954-2a3af1a124dc", + "path": "z://MP4\\Len - Steal My Sunshine.mp4", + "title": "Steal My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eiffel 65", + "playlist_title": "Blue (Da Ba Dee)", + "found_song": { + "artist": "Eiffel 65", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c7cf8da-1f36-4a56-a5b8-2ba2bb84d1fb", + "path": "z://MP4\\Sing King Karaoke\\Eiffel 65 - Blue (Da Ba Dee).mp4", + "title": "Blue (Da Ba Dee)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lou Bega", + "playlist_title": "Mambo No. 5 (A Little Bit Of...)", + "found_song": { + "artist": "Lou Bega", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1db201e1-5a76-282d-6b89-2163c8f0d8f6", + "path": "z://MP4\\Sing King Karaoke\\Lou Bega - Mambo No 5 (A Little Bit Of).mp4", + "title": "Mambo No 5 (A Little Bit Of...)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "TLC", + "playlist_title": "Unpretty", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "803500e8-931f-b7ab-c0c2-68ef27c71040", + "path": "z://MP4\\ZoomKaraokeOfficial\\TLC - Unpretty.mp4", + "title": "Unpretty" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Train", + "playlist_title": "Meet Virginia", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "4b437d87-78ba-89de-09bc-c4fdd031db0b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Meet Virginia - Train.mp4", + "title": "Meet Virginia" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Learn To Fly", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0637364-9cbb-d3f0-175c-8930847465cc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Foo Fighters - Learn To Fly - SFMW 833 -09.mp3", + "title": "Learn To Fly" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Montell Jordan", + "playlist_title": "Get It On Tonite", + "found_song": { + "artist": "Montell Jordan", + "disabled": false, + "favorite": false, + "guid": "64a34933-d17a-531c-3372-9d3cdfa68fe5", + "path": "z://MP4\\Let's Sing Karaoke\\Jordan, Montell - Get It On Tonite (Karaoke & Lyrics).mp4", + "title": "Get It On Tonite" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Celine Dion", + "playlist_title": "That's The Way It Is", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43f0d877-e82a-62c9-c00a-15a3b58b9537", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - That's The Way It Is.mp4", + "title": "That's The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Counting Crows", + "playlist_title": "Hanginaround", + "found_song": { + "artist": "Counting Crows", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba93391-ba9d-460e-19e8-839665d7cf89", + "path": "z://MP4\\KaraokeOnVEVO\\Counting Crows - Hanginaround.mp4", + "title": "Hanginaround" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Black Balloon", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "e64da962-6c75-51aa-fe5e-6be5d535cafa", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Black Balloon (Karaoke).mp4", + "title": "Black Balloon" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Filter", + "playlist_title": "Take A Picture", + "found_song": { + "artist": "Filter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d497674-1321-6371-ad3a-d84b3b489418", + "path": "z://MP4\\KaraokeOnVEVO\\Filter - Take A Picture.mp4", + "title": "Take A Picture" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ricky Martin", + "playlist_title": "Shake Your Bon-Bon", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "guid": "7145de03-4e19-1726-af4f-711600f5fd92", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF150\\Ricky Martin - Shake Your Bon Bon - SF150 - 11.mp3", + "title": "Shake Your Bon Bon" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mint Condition", + "playlist_title": "If You Love Me", + "found_song": { + "artist": "Mint Condition", + "disabled": false, + "favorite": false, + "guid": "0db24760-18f8-b5dd-e44e-e788685e827a", + "path": "z://MP4\\Let's Sing Karaoke\\Mint Condition - If You Love Me (Karaoke & Lyrics).mp4", + "title": "If You Love Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Tal Bachman", + "playlist_title": "She's So High", + "found_song": { + "artist": "Tal Bachman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "94a99f15-d660-8809-9e3d-9dd2a697d45c", + "path": "z://MP4\\KaraokeOnVEVO\\Tal Bachman - She's So High.mp4", + "title": "She's So High" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Britney Spears", + "playlist_title": "(You Drive Me) Crazy", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "1b410e42-2654-ea6e-caf1-aaec31213daf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Drive Me) Crazy (album version) - Britney Spears.mp4", + "title": "(You Drive Me) Crazy" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Robbie Williams", + "playlist_title": "Angels", + "found_song": { + "artist": "Robbie Williams", + "disabled": false, + "favorite": false, + "guid": "7115c9f8-0f65-40b1-8e80-ac51627ed2b7", + "path": "z://MP4\\Sing King Karaoke\\Robbie Williams - Angels (Karaoke Version).mp4", + "title": "Angels" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Blink-182", + "playlist_title": "All The Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Creed", + "playlist_title": "Higher", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f719d2ac-5c17-4223-d10c-a9a27372e3d0", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - Higher.mp4", + "title": "Higher" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Deep Inside", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "1124ffec-c620-8a81-7bda-74c279008e74", + "path": "z://MP4\\singsongsmusic\\Deep Inside - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Deep Inside" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Rhythm Divine", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "518601ea-8aa1-b6b2-5a5b-d6443e1f5f19", + "path": "z://MP4\\singsongsmusic\\Rhythm Divine - Karaoke HD (In the style of Enrique Iglesias).mp4", + "title": "Rhythm Divine" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Larger Than Life", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f3ef19-2463-b72a-8168-1ab9e1693043", + "path": "z://MP4\\ZoomKaraokeOfficial\\Backstreet Boys - Larger Than Life.mp4", + "title": "Larger Than Life" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Sixpence None The Richer", + "playlist_title": "There She Goes", + "found_song": { + "artist": "Sixpence None The Richer", + "disabled": false, + "favorite": false, + "guid": "2aaf19d4-2dbb-1a09-c0f2-05cf37da59b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF146\\Sixpence None The Richer - There She Goes - SF146 - 08.mp3", + "title": "There She Goes" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "R.E.M.", + "playlist_title": "The Great Beyond", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f5d01d9-2fa4-ab0c-efd9-2aacc57d30ed", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The Great Beyond.mp4", + "title": "The Great Beyond" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Fatboy Slim", + "playlist_title": "The Rockafeller Skank", + "found_song": { + "artist": "Fatboy Slim", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b08017eb-ff29-005d-0bff-46060419e2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Fatboy Slim - The Rockafeller Skank.mp4", + "title": "The Rockafeller Skank" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Kevon Edmonds", + "playlist_title": "24/7", + "found_song": { + "artist": "Kevon Edmonds", + "disabled": false, + "favorite": false, + "guid": "546415b1-b021-159e-2223-d7e24532e112", + "path": "z://MP4\\Let's Sing Karaoke\\Edmonds, Kevon - 247 (Karaoke & Lyrics).mp4", + "title": "247" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "IMx", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Blunt, James", + "disabled": false, + "favorite": false, + "guid": "3cc5bdef-ae7d-04cf-dd0c-a7b4863209b7", + "path": "z://CDG\\Big Hits Karaoke\\BHK015\\BHK015-11 - Blunt, James - Stay The Night.mp3", + "title": "Stay The Night" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "M2M", + "playlist_title": "Don't Say You Love Me", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "b8448f4f-54cb-4647-19d8-bb6f1a796a66", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - Don't Say You Love Me (Karaoke Version).mp4", + "title": "Don't Say You Love Me" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Christmas Song (Chestnuts Roasting On An Open Fire)", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1165bec5-f32d-6c3a-615a-4d7007531983", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Christmas Song (Chestnuts Roasting On An Open Fire) - Justin Bieber.mp4", + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Destiny's Child", + "playlist_title": "Bug A Boo", + "found_song": { + "artist": "Destinys Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "992005ff-5233-b451-2d05-4ed292c4b6a3", + "path": "z://MP4\\VocalStarKaraoke\\Destinys Child - Bug A Boo.mp4", + "title": "Bug A Boo" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "'N Sync & Gloria Estefan", + "playlist_title": "Music Of My Heart", + "found_song": { + "artist": "N Sync & Gloria Estefan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bbc977d-69f4-928d-c68d-ca4b992efec7", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync & Gloria Estefan - Music Of My Heart.mp4", + "title": "Music Of My Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Re-arranged", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "guid": "780a9129-0c7e-ce2a-e2e8-ecfa1e0c6f5f", + "path": "z://CDG\\Various\\Limp Bizkit - Rearranged.mp3", + "title": "Rearranged" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Santana Featuring Rob Thomas", + "title": "Smooth", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "title": "Hot Boyz", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Donell Jones", + "title": "U Know What's Up", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "LFO", + "title": "Girl On TV", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Smash Mouth", + "title": "Then The Morning Comes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jagged Edge", + "title": "He Can't Love U", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "702", + "title": "Where My Girls At?", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sole Featuring JT Money & Kandi", + "title": "4, 5, 6", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "title": "Back That Thang Up", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Ideal", + "title": "Get Gone", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Guy", + "title": "Dancin'", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Puff Daddy Featuring R. Kelly", + "title": "Satisfy You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ol' Dirty Bastard Featuring Kelis", + "title": "Got Your Money", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sugar Ray", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Clint Black", + "title": "When I Said I Do", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "title": "You Can Do It", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Marc Nelson", + "title": "15 Minutes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Sisqo Featuring Make It Hot", + "title": "Got To Get It", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Mariah Carey Featuring Joe & 98 Degrees", + "title": "Thank God I Found You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Mariah Carey Featuring Jay-Z", + "title": "Heartbreaker", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Will Smith Featuring K-Ci", + "title": "Will 2K", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Martina McBride", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "title": "Bling Bling", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Kelis", + "title": "Caught Out There", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Eve", + "title": "Gotta Man", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "John Michael Montgomery", + "title": "Home To You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Amber", + "title": "Sexual (Li Da Di)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ginuwine", + "title": "None Of Ur Friends Business", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bush", + "title": "The Chemicals Between Us", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "D'Angelo Featuring Method Man And Redman", + "title": "Left & Right", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Deborah Cox With R.L.", + "title": "We Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Limp Bizkit Featuring Method Man", + "title": "N 2 Gether Now", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "title": "Tha Block Is Hot", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Angie Stone", + "title": "No More Rain (In This Cloud)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Rage Against The Machine", + "title": "Guerrilla Radio", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "title": "Notorious B.I.G.", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Kenny G", + "title": "Auld Lang Syne", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Chico DeBarge", + "title": "Give You What You Want (Fa Sure)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Prince", + "title": "The Greatest Romance Ever Sold", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Warren G Featuring Mack 10", + "title": "I Want It All", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "J-Shin Featuring LaTocha Scott", + "title": "One Night Stand", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "SheDaisy", + "title": "Deck The Halls", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Dr. Dre Featuring Snoop Dogg", + "title": "Still D.R.E.", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Beth Hart", + "title": "L.A. Song", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nas", + "title": "NAStradamus", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 7, + "missing_count": 46, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1998 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Collin Raye", + "title": "Someone You Used To Know", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Faith Hill", + "title": "Let Me Let Go", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Martina McBride", + "title": "Wrong Again", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Aaron Tippin", + "title": "For You I Will", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tim McGraw", + "title": "For A Little While", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Ty Herndon", + "title": "It Must Be Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Reba", + "title": "Wrong Night", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Garth Brooks", + "title": "It s Your Song", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Toby Keith", + "title": "Getcha Some", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Billy Ray Cyrus", + "title": "Busy Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 0, + "missing_count": 15, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1998 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Deborah Cox", + "playlist_title": "Nobody s Supposed To Be Here", + "found_song": { + "artist": "Deborah Cox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a4997e-6060-9ec4-bf34-9b9089da70cf", + "path": "z://MP4\\Sing King Karaoke\\Deborah Cox - Nobody s Supposed To Be Here.mp4", + "title": "Nobody s Supposed To Be Here" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shania Twain", + "playlist_title": "From This Moment On", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "246f9d01-7488-82ef-f492-f2c39c9c7deb", + "path": "z://MP4\\KaraFun Karaoke\\From This Moment On - Shania Twain Karaoke Version KaraFun.mp4", + "title": "From This Moment On" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Britney Spears", + "playlist_title": "...Baby One More Time", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "54a2d9dd-0de0-ce76-6839-d14695ba7582", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - ...Baby One More Time (Karaoke Version).mp4", + "title": "...Baby One More Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "98 Degrees", + "playlist_title": "Because Of You", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "guid": "9587183e-6e80-4b1b-ae7f-a6acf4c943a5", + "path": "z://MP4\\KaraokeOnVEVO\\98º - Because Of You (Karaoke).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lauryn Hill", + "playlist_title": "Doo Wop (That Thing)", + "found_song": { + "artist": "Lauryn Hill", + "disabled": false, + "favorite": false, + "guid": "9d5e1052-e04e-f190-685b-38e7f7ed2e37", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Doo Wop (That Thing) - Lauryn Hill.mp4", + "title": "Doo Wop (That Thing)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Spice Girls", + "playlist_title": "Goodbye", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "fd725dec-7a02-e504-93a6-657f650c1bb4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF128\\Spice Girls - Goodbye - SF128 - 01.mp3", + "title": "Goodbye" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eagle-Eye Cherry", + "playlist_title": "Save Tonight", + "found_song": { + "artist": "Eagle-Eye Cherry", + "disabled": false, + "favorite": false, + "guid": "a396330b-1c8c-177d-4902-e5e9a60584e5", + "path": "z://MP4\\Sing King Karaoke\\Eagle-Eye Cherry - Save Tonight (Karaoke Version).mp4", + "title": "Save Tonight" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Faith Hill", + "playlist_title": "This Kiss", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "8c8f7fce-6145-241d-af15-074fbcf6393d", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - This Kiss (Karaoke & Lyrics) (2).mp4", + "title": "This Kiss" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jewel", + "playlist_title": "Hands", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "657caf6b-266d-fef2-3abd-d42d6df99ce7", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Hands.mp4", + "title": "Hands" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Jumper", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "a9c232cd-780e-5176-be79-7b35214efc00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jumper - Third Eye Blind.mp4", + "title": "Jumper" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Slide", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "13f03b13-59ed-74de-41b5-98a4e262a669", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Slide - Goo Goo Dolls.mp4", + "title": "Slide" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Iris", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9dd266b2-0aaf-69b2-1f48-41710e538388", + "path": "z://MP4\\Sing King Karaoke\\Goo Goo Dolls - Iris (Karaoke Version).mp4", + "title": "Iris" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Monica", + "playlist_title": "The First Night", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4d065-cbaa-ccbd-288a-e95c7ff5072a", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - The First Night.mp4", + "title": "The First Night" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Edwin McCain", + "playlist_title": "I ll Be", + "found_song": { + "artist": "Edwin McCain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d73023-95f1-0324-bc0a-654bcdfa5e00", + "path": "z://MP4\\Sing King Karaoke\\Edwin McCain - Ill Be.mp4", + "title": "I'll Be" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Alanis Morissette", + "playlist_title": "Thank U", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "guid": "e071bcb7-aa58-7d6c-b4cd-bb25ae8b301c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Thank U - Alanis Morissette.mp4", + "title": "Thank U" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "One Week", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "ba139217-00c9-a399-35ec-eb3f80bbc048", + "path": "z://MP4\\Sing King Karaoke\\Barenaked Ladies - One Week (Karaoke Version).mp4", + "title": "One Week" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Angel", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "0d61bfb2-badd-3763-9b7e-5d90cc6857de", + "path": "z://MP4\\Sing King Karaoke\\Sarah McLachlan - Angel (Karaoke Version).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aaliyah", + "playlist_title": "Are You That Somebody?", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "ec224ec0-98a1-3700-0caf-3f3b751fd0e6", + "path": "z://CDG\\Various\\Aaliyah - Are You That Somebody.mp3", + "title": "Are You That Somebody" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Will Smith", + "playlist_title": "Miami", + "found_song": { + "artist": "Will Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a23071ca-826e-a09f-6245-94e32c53af7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Will Smith - Miami.mp4", + "title": "Miami" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "N Sync", + "playlist_title": "(God Must Have Spent) A Little More Time On You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e60cf2e-f814-cbed-2695-54da47c9fd2d", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync - (God Must Have Spent A Little More Time On You.mp4", + "title": "(God Must Have Spent) A Little More Time On You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Monica", + "playlist_title": "Angel Of Mine", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "88858625-6254-4917-fe88-d014db4882f2", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - Angel Of Mine (Karaoke).mp4", + "title": "Angel Of Mine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "2Pac", + "playlist_title": "Changes", + "found_song": { + "artist": "2Pac", + "disabled": false, + "favorite": false, + "guid": "1260dca9-a170-7004-3cad-f825fac84cdf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Changes - 2Pac.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "New Radicals", + "playlist_title": "You Get What You Give", + "found_song": { + "artist": "New Radicals", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "d05e862c-3999-8644-7ea5-626465938a2a", + "path": "z://MP4\\KaraokeOnVEVO\\New Radicals - You Get What You Give.mp4", + "title": "You Get What You Give" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53099da4-bde7-30f5-bb8f-9438cf86d405", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lenny Kravitz - Fly Away.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Whitney Houston", + "playlist_title": "When You Believe", + "found_song": { + "artist": "Whitney Houston ft. Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "49ce4e5b-b543-c54f-7530-132ed4c0c354", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston (With Mariah Carey) - When You Believe (Karaoke Version).mp4", + "title": "When You Believe" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Offspring", + "playlist_title": "Pretty Fly (For A White Guy)", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "176c84a4-af34-6133-b5e6-293da9613b47", + "path": "z://MP4\\Sing King Karaoke\\Offspring - Pretty Fly For A White Guy.mp4", + "title": "Pretty Fly For A White Guy" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "U2", + "playlist_title": "Sweetest Thing", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "fe17b14c-fe42-5962-03a2-4944c51b7e95", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Sweetest Thing (Karaoke & Lyrics).mp4", + "title": "Sweetest Thing" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Aerosmith", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "47a352e5-8c45-b131-b8e6-8fffd7eab4a8", + "path": "z://MP4\\Sing King Karaoke\\Aerosmith - I Don t Want To Miss A Thing (Karaoke Version).mp4", + "title": "I Don t Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Cher", + "playlist_title": "Believe", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "8ddf02e2-c623-0327-7f43-f1067b01590b", + "path": "z://MP4\\Sing King Karaoke\\Cher - Believe (Karaoke Version).mp4", + "title": "Believe" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Everclear", + "playlist_title": "Father Of Mine", + "found_song": { + "artist": "Everclear", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "326032b7-57f4-7a29-b440-7f04d52363bd", + "path": "z://MP4\\KaraokeOnVEVO\\Everclear - Father Of Mine.mp4", + "title": "Father Of Mine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Everlast", + "playlist_title": "What It s Like", + "found_song": { + "artist": "Everlast", + "disabled": false, + "favorite": false, + "guid": "48c7dcb7-a8be-2aa1-e56a-a1307769bee1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What It s Like - Everlast.mp4", + "title": "What It s Like" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Fastball", + "playlist_title": "Fire Escape", + "found_song": { + "artist": "Fastball", + "disabled": false, + "favorite": false, + "guid": "8b2d0b2f-c2df-861f-e365-378e66e492d8", + "path": "z://MP4\\KaraokeOnVEVO\\Fastball - Fire Escape (Karaoke).mp4", + "title": "Fire Escape" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Five", + "playlist_title": "It s The Things You Do", + "found_song": { + "artist": "Five", + "disabled": false, + "favorite": false, + "guid": "d08a7e1e-1202-533d-a5ea-b8a02a8a7341", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF134\\Five - It's The Things You Do - SF134 - 13.mp3", + "title": "It's The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Hole", + "playlist_title": "Celebrity Skin", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64acf3e6-765b-7105-5aee-91cc371006bc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Celebrity Skin.mp4", + "title": "Celebrity Skin" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Mark Wills", + "playlist_title": "Don t Laugh At Me", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc852146-ecd6-1433-9b36-93e5b49bd00e", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Don t Laugh At Me.mp4", + "title": "Don t Laugh At Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Brandy", + "playlist_title": "Have You Ever?", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "594c475b-14cf-6581-8881-33967b0c1cee", + "path": "z://MP4\\KaraokeOnVEVO\\Brandy - Have You Ever.mp4", + "title": "Have You Ever?" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Shawn Mullins", + "playlist_title": "Lullaby", + "found_song": { + "artist": "Shawn Mullin", + "disabled": false, + "favorite": false, + "genre": "KARAOKE", + "guid": "85d0406b-4d32-3d4f-6876-abcc5f2cafb9", + "path": "z://CDG\\Various\\Shawn Mullin - Lullaby.mp3", + "title": "Lullaby" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Sheryl Crow", + "playlist_title": "My Favorite Mistake", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fcf087-bdb6-2420-8145-d5bce3ca1442", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - My Favourite Mistake.mp4", + "title": "My Favourite Mistake" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Madonna", + "playlist_title": "The Power Of Good-Bye", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "243df586-3539-e85c-833a-ee350bee05bd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF126\\Madonna - Power Of Goodbye - SF126 - 11.mp3", + "title": "Power Of Goodbye" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "It s All Been Done", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "8b016b3d-74d9-6027-0526-1bca98ae3743", + "path": "z://CDG\\Various\\Barenaked Ladies - Its All Been Done.mp3", + "title": "Its All Been Done" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "R. Kelly", + "title": "I m Your Angel", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Divine", + "title": "Lately", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Faith Evans", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Total Featuring Missy Elliott", + "title": "Trippin", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "title": "Can I Get A...", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "112 Featuring Mase", + "title": "Love Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Dru Hill Featuring Redman", + "title": "How Deep Is Your Love", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "BLACKstreet", + "title": "Take Me There", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Eve 6", + "title": "Inside Out", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Next", + "title": "Too Close", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Monifah", + "title": "Touch It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Jay-Z", + "title": "Hard Knock Life (Ghetto Anthem)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "These Are The Times", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Collin Raye", + "title": "Someone You Used To Know", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mr. Short Khop", + "title": "Pushin Weight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Brian McKnight Featuring Tone", + "title": "Hold Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Aaron Hall", + "title": "All The Places (I Will Kiss You)", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "title": "Ghetto Cowboy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Martina McBride", + "title": "Wrong Again", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Aaron Tippin", + "title": "For You I Will", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Faith Hill", + "title": "Let Me Let Go", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "OutKast", + "title": "Rosa Parks", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Tim McGraw", + "title": "For A Little While", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "TQ", + "title": "Westside", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Keith Sweat Featuring Snoop Dogg", + "title": "Come And Get With Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ty Herndon", + "title": "It Must Be Love", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "R. Kelly Featuring Keith Murray", + "title": "Home Alone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Voices Of Theory", + "title": "Wherever You Go", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Reba", + "title": "Wrong Night", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "R. Kelly", + "title": "When A Woman s Fed Up", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Cake", + "title": "Never There", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brandy", + "title": "Angel In Disguise", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Shaggy Featuring Janet", + "title": "Luv Me, Luv Me", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Whitney Houston Feat. Faith Evans", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "matchbox 20", + "title": "Back 2 Good", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Case", + "title": "Faded Pictures", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Everything", + "title": "Hooch", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Xscape", + "title": "My Little Secret", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "title": "Lean On Me", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Garth Brooks", + "title": "It s Your Song", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lee Ann Womack", + "title": "A Little Past Little Rock", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Willie Max Featuring Raphael Saadiq", + "title": "Can t Get Enough", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Alabama", + "title": "How Do You Fall In Love", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "title": "Here We Come", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Travis Tritt", + "title": "If I Lost You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 5, + "missing_count": 50, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1997 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Martina McBride", + "playlist_title": "A Broken Wing", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "2da3ac67-df89-7d00-5890-f83404e28899", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Broken Wing - Martina McBride.mp4", + "title": "A Broken Wing" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alan Jackson", + "playlist_title": "Between The Devil And Me", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b2dc9d5-4af9-999f-75bd-d956b0dabca1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Between The Devil And Me.mp4", + "title": "Between The Devil And Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Tim McGraw", + "playlist_title": "Just To See You Smile", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "a7e7074a-8c61-fb5e-75a3-f1b1665f0d55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just To See You Smile - Tim McGraw.mp4", + "title": "Just To See You Smile" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Imagine That", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e79eca0a-dd37-c078-ec8b-a7b6eee7b5b6", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Imagine That.mp4", + "title": "Imagine That" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "You've Got To Talk To Me", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ffb7642-a640-b09c-dfb0-91ec891cd76e", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Youve Got To Talk To Me.mp4", + "title": "You've Got To Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Alabama", + "playlist_title": "Of Course I'm Alright", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba66ed64-58d9-4329-58b1-b494c2b140db", + "path": "z://CDG\\Various\\Alabama - Of Course I'm Alright.mp3", + "title": "Of Course I'm Alright" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Chance", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11d4f381-243a-70f0-013e-d0a2c87baba6", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Chance.mp4", + "title": "A Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Garth Brooks", + "title": "Longneck Bottle", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Michael Peterson", + "title": "From Here To Eternity", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Trace Adkins", + "title": "The Rest Of Mine", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Pam Tillis", + "title": "Land Of The Living", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "John Michael Montgomery", + "title": "Angel In My Eyes", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Brooks & Dunn", + "title": "He's Got You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "LeAnn Rimes", + "title": "On The Side Of Angels", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Lonestar", + "title": "You Walked In", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Patty Loveless", + "title": "You Don't Seem To Miss Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Ty Herndon", + "title": "I Have To Surrender", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lila McCann", + "title": "I Wanna Fall In Love", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "George Strait", + "title": "Today My World Slipped Away", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Anita Cochran (Duet With Steve Wariner)", + "title": "What If I Said", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Clint Black", + "title": "Something That We Do", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 14, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1997 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "How Do I Live", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "12d23c44-3998-1567-f7b9-2ebd95261028", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - How Do I Live (Karaoke Version).mp4", + "title": "How Do I Live" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Usher", + "playlist_title": "You Make Me Wanna...", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "30ef8c11-d226-eeb8-7b7c-528b068d372e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Wanna - Usher.mp4", + "title": "You Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Robyn", + "playlist_title": "Show Me Love", + "found_song": { + "artist": "Robyn", + "disabled": false, + "favorite": false, + "guid": "f80b7421-8dfd-9175-0585-5def9010f6fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show Me Love - Robyn.mp4", + "title": "Show Me Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Savage Garden", + "playlist_title": "Truly Madly Deeply", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "27cc5736-483c-57a4-adfe-b86fe488dd6a", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - Truly Madly Deeply (Karaoke Version).mp4", + "title": "Truly Madly Deeply" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chumbawamba", + "playlist_title": "Tubthumping", + "found_song": { + "artist": "Chumbawamba", + "disabled": false, + "favorite": false, + "guid": "1629101c-927d-4f89-bfcd-61bd5843744a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tubthumping - Chumbawamba.mp4", + "title": "Tubthumping" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Boyz II Men", + "playlist_title": "A Song For Mama", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "697090d4-7846-6aff-0b46-ab4bb2dffc43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Song For Mama - Boyz II Men.mp4", + "title": "A Song For Mama" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Hanson", + "playlist_title": "I Will Come To You", + "found_song": { + "artist": "Hanson", + "disabled": false, + "favorite": false, + "guid": "2dc9df59-d5ab-ef94-61cb-cb403a974b74", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF116\\Hanson - I Will Come To You - SF116 - 09.mp3", + "title": "I Will Come To You" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paula Cole", + "playlist_title": "I Don't Want To Wait", + "found_song": { + "artist": "Paula Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a487d985-c18a-0676-b831-be10c6f17c3a", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Cole - I Dont Want To Wait.mp4", + "title": "I Don't Want To Wait" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Spice Girls", + "playlist_title": "Spice Up Your Life", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "36d77336-8e65-027a-9cba-0d3b05fc8955", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spice Up Your Life - Spice Girls.mp4", + "title": "Spice Up Your Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Boyz II Men", + "playlist_title": "4 Seasons Of Loneliness", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71c322c6-23b6-6ea3-78d0-bdf5a5ae5893", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - 4 Seasons Of Loneliness.mp4", + "title": "4 Seasons Of Loneliness" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Semi-Charmed Life", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "0144ba36-690c-9ef3-e041-1b22258d6ead", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - Semi-Charmed Life (Karaoke).mp4", + "title": "Semi-Charmed Life" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Quit Playing Games (With My Heart)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "ba3a1065-3a20-d608-eb91-077f12abafe0", + "path": "z://CDG\\Sunfly Collection\\Sunfly 90s\\SF90-05\\SFD9015-03 - Backstreet Boys - Quit Playing Games With My Heart.mp3", + "title": "Quit Playing Games With My Heart" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Third Eye Blind", + "playlist_title": "How's It Going To Be", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "d4ac8b68-c270-54da-338c-5ac7221b69a5", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - How's It Going To Be (Karaoke).mp4", + "title": "How's It Going To Be" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aqua", + "playlist_title": "Lollipop (Candyman)", + "found_song": { + "artist": "Aqua", + "disabled": false, + "favorite": false, + "guid": "b2e351ac-f412-7c71-31e0-897089184752", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lollipop (Candyman) - Aqua.mp4", + "title": "Lollipop (Candyman)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sister Hazel", + "playlist_title": "All For You", + "found_song": { + "artist": "Sister Hazel", + "disabled": false, + "favorite": false, + "guid": "dd6dc0d4-af93-0ff4-a0e5-fac514a99149", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All For You - Sister Hazel.mp4", + "title": "All For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Destiny's Child", + "playlist_title": "No, No, No", + "found_song": { + "artist": "Destiny's Child & Wyclef Jean", + "disabled": false, + "favorite": false, + "guid": "4b2c3cb2-4bb4-d1dc-1cdf-335c96f639b3", + "path": "z://CDG\\Various\\Destiny's Child & Wyclef Jean - No, No, No.mp3", + "title": "No, No, No" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Building A Mystery", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "df47fb01-ab02-be3d-1b84-d919304dcdce", + "path": "z://MP4\\KtvEntertainment\\Sarah McLachlan - Building A Mystery (Karaoke without Vocal).mp4", + "title": "Building A Mystery" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Honey", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "0fbb398a-4556-2024-e433-798be7767306", + "path": "z://CDG\\Various\\Mariah Carey - Honey.mp3", + "title": "Honey" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "Invisible Man", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "380e23f1-ee75-f60d-4f1c-6299b0c0fdf4", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Invisible Man.mp4", + "title": "Invisible Man" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Spice Girls", + "playlist_title": "2 Become 1", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "7ce8bb9b-0ff9-2fda-b76d-2120c39b1868", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - 2 Become 1 (Karaoke Version).mp4", + "title": "2 Become 1" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Everything", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36bfd2b8-fd25-3be7-a5ec-e77b2e156f0e", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Everything.mp4", + "title": "Everything" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Myers", + "playlist_title": "Kiss The Rain", + "found_song": { + "artist": "Billie Myers", + "disabled": false, + "favorite": false, + "guid": "305f2989-f5cd-d8c1-05dc-5566f3860ca1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF120\\Billie Myers - Kiss The Rain - SF120 - 08.mp3", + "title": "Kiss The Rain" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "d3c68631-b543-14aa-10ce-320bec9d542f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Light Up My Life - LeAnn Rimes.mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Reba McEntire", + "playlist_title": "What If", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70b78014-e839-779e-9e43-d0df767cb8bd", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What If.mp4", + "title": "What If" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "En Vogue", + "playlist_title": "Too Gone, Too Long", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ae06bb5-595b-2eb2-deb9-3c7f4b3ec6f2", + "path": "z://CDG\\Various\\En Vogue - Too Gone, Too Long.mp3", + "title": "Too Gone, Too Long" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Prodigy", + "playlist_title": "Smack My Bitch Up", + "found_song": { + "artist": "Prodigy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49899d7d-4600-6229-8e09-5fcf56064a87", + "path": "z://CDG\\SBI\\SBI-01\\SB07120 - Prodigy - Smack My Bitch Up.mp3", + "title": "Smack My Bitch Up" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Deana Carter", + "playlist_title": "Did I Shave My Legs For This?", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c495cdfc-3e5c-6a4b-eeb8-2a17b5430480", + "path": "z://MP4\\VocalStarKaraoke\\Deana Carter - Did I Shave My Legs For This.mp4", + "title": "Did I Shave My Legs For This" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Janet", + "playlist_title": "Together Again", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "1ab0c72c-0d3b-843b-2497-e98484fab0e9", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Janet - Together Again (Karaoke & Lyrics) (2).mp4", + "title": "Together Again" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Mase", + "playlist_title": "Feel So Good", + "found_song": { + "artist": "Mel B", + "disabled": false, + "favorite": false, + "guid": "99c61fbc-f0ae-3283-37f9-c577f4262379", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF176\\Mel B - Feel So Good - SF176 - 08.mp3", + "title": "Feel So Good" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Olive", + "playlist_title": "You're Not Alone", + "found_song": { + "artist": "Joe & Jake", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "46229df1-b368-5dc0-55fd-e9740f4ca428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF363\\Joe & Jake - You're Not Alone - SF363 - 03.mp3", + "title": "You're Not Alone" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "David Bowie", + "playlist_title": "I'm Afraid Of Americans", + "found_song": { + "artist": "Bowie, David", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13670ac3-4535-f03d-26b6-64e133d67c57", + "path": "z://CDG\\SBI\\SBI-04\\SB15358 - David Bowie - I'm Afraid Of Americans.mp3", + "title": "I'm Afraid Of Americans" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Playa", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8be9d539-f39e-aa38-0c2d-51587b936171", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna - Don't Stop The Music.mp4", + "title": "Don't Stop The Music" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Daft Punk", + "playlist_title": "Around The World", + "found_song": { + "artist": "A T C", + "disabled": false, + "favorite": false, + "guid": "8c4245b2-a07f-50ae-df77-1827abb1c77d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF196\\A T C - Around The World - SF196 - 08.mp3", + "title": "Around The World" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Ultra Nate", + "playlist_title": "Free", + "found_song": { + "artist": "Ultra Naté", + "disabled": false, + "favorite": false, + "guid": "bc380b81-faec-98df-773e-f2671ba370a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free - Ultra Naté.mp4", + "title": "Free" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Elton John", + "title": "Candle In The Wind 1997/Something About The Way You Look Tonight", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "title": "Been Around The World", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "LSG", + "title": "My Body", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Somethin' For The People Featuring Trina & Tamara", + "title": "My Love Is The Shhh!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Aaliyah", + "title": "The One I Gave My Heart To", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Dru Hill", + "title": "We're Not Making Love No More", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Allure Featuring 112", + "title": "All Cried Out", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Next", + "title": "Butta Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Uncle Sam", + "title": "I Don't Ever Want To See You Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "title": "Sock It 2 Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Jewel", + "title": "Foolish Games/You Were Meant For Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lisa Loeb", + "title": "I Do", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Total", + "title": "What About Us", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "title": "Mo Money Mo Problems", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "She Moves", + "title": "Breaking All The Rules", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nu Flavor", + "title": "Heaven", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Notorious B.I.G.", + "title": "Going Back To Cali", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "H-Town", + "title": "They Like It Slow", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Bone Thugs-N-Harmony", + "title": "If I Could Teach The World", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Puff Daddy & Faith Evans Featuring 112", + "title": "I'll Be Missing You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Los Umbrellos", + "title": "No Tengo Dinero", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Metallica", + "title": "The Memory Remains", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Shawn Colvin", + "title": "Sunny Came Home", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Milestone", + "title": "I Care 'Bout You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gary Barlow", + "title": "So Help Me Girl", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Richard Marx & Donna Lewis", + "title": "At The Beginning", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Imani Coppola", + "title": "Legend Of A Cowgirl", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Master P Featuring Pimp C And The Shocker", + "title": "I Miss My Homies", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Alana Davis", + "title": "32 Flavors", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bee Gees", + "title": "Still Waters (Run Deep)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "WC From Westside Connection", + "title": "Just Clownin'", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Davina", + "title": "So Good", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mack 10", + "title": "Backyard Boogie", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Big Punisher", + "title": "I'm Not A Player", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Sting & The Police", + "title": "Roxanne `97 - Puff Daddy Remix", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Insane Clown Posse", + "title": "Santa's A Fat Bitch", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kimberly Scott", + "title": "Tuck Me In", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brian McKnight Featuring Mase", + "title": "You Should Be Mine (Don't Waste Your Time)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "K-Ci & JoJo", + "title": "Last Night's Letter", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Diana King", + "title": "L-L-Lies", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Amber", + "title": "One More Night", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Martina McBride With Jim Brickman", + "title": "Valentine", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "title": "4, 3, 2, 1", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Clint Black", + "title": "Something That We Do", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Naughty By Nature", + "title": "Mourn You Til I Join You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "KAI", + "title": "Say You'll Stay", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "2Pac", + "title": "I Wonder If Heaven Got A Ghetto", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Lord Tariq & Peter Gunz", + "title": "Deja Vu [Uptown Baby]", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "BeBe Winans", + "title": "In Harm's Way", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Trace Adkins", + "title": "The Rest Of Mine", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "4.0", + "title": "Have A Little Mercy", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "K.P. & Envyi", + "title": "Swing My Way", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Changing Faces (Featuring Jay-Z)", + "title": "All Of My Days", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gang Starr", + "title": "You Know My Steez", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Queen Pen Featuring Teddy Riley", + "title": "Man Behind The Music", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "LL Cool J", + "title": "Phenomenon", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Le Click Featuring Kayo", + "title": "Don't Go", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Sublime", + "title": "Doin' Time", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Yvette Michele", + "title": "DJ Keep Playin' (Get Your Music On)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Billy Lawrence", + "title": "Up & Down", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Barenaked Ladies", + "title": "Brian Wilson", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 8, + "missing_count": 61, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "1996 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kevin Sharp", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "Kevin Sharp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a565f7d1-cbe3-a14a-4cdc-fefe8e6f8954", + "path": "z://MP4\\KaraokeOnVEVO\\Kevin Sharp - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Her Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "guid": "3131e475-e422-d82f-4807-7e3d6bbfca61", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Her Man (Karaoke).mp4", + "title": "Her Man" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "Is That A Tear", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "541f880c-ac8b-c853-0820-fa9a9faa609a", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Lawrence - Is That A Tear.mp4", + "title": "Is That A Tear" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "It's A Little Too Late", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9ccb9b41-81e3-106f-7249-9984b7ff90ae", + "path": "z://CDG\\Various\\Mark Chesnutt - It's A Little Too Late.mp3", + "title": "It's A Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Vince Gill", + "playlist_title": "Pretty Little Adriana", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "1de9187e-28b2-908f-4c89-36c89b8ee5a2", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Pretty Little Adriana (Karaoke).mp4", + "title": "Pretty Little Adriana" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "David Kersh", + "playlist_title": "Goodnight Sweetheart", + "found_song": { + "artist": "David Kersh", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a7812d-fe47-6929-629e-7543b0e7619e", + "path": "z://MP4\\KaraokeOnVEVO\\David Kersh - Goodnight Sweetheart.mp4", + "title": "Goodnight Sweetheart" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Deana Carter", + "playlist_title": "Strawberry Wine", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "guid": "b52ed86c-e90e-ba60-67ba-a749a36526ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Strawberry Wine - Deana Carter.mp4", + "title": "Strawberry Wine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "A Man This Lonely", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "7ee8f668-dcb0-5d07-2d77-c235e9d2bdc4", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - A Man This Lonely (Karaoke).mp4", + "title": "A Man This Lonely" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "LeAnn Rimes", + "title": "One Way Ticket (Because I Can)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Reba McEntire", + "title": "The Fear Of Being Alone", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Garth Brooks", + "title": "That Ol' Wind", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Tracy Byrd", + "title": "Big Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tim McGraw", + "title": "Maybe We Should Just Sleep On It", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Mary Chapin Carpenter", + "title": "Let Me Into Your Heart", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Trisha Yearwood", + "title": "Everybody Knows", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Faith Hill", + "title": "I Can't Do That Anymore", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Clint Black", + "title": "Half Way Up", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bryan White", + "title": "That's Another Song", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rick Trevino", + "title": "Running Out Of Reasons To Run", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Daryle Singletary", + "title": "Amen Kind Of Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "title": "Maybe He'll Notice Her Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Randy Travis", + "title": "Would I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 14, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1996 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Toni Braxton", + "playlist_title": "Un-Break My Heart", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "b13cec29-c219-4437-ce8a-f767b3994ab0", + "path": "z://MP4\\Sing King Karaoke\\Toni Braxton - Un-Break My Heart (Karaoke Version).mp4", + "title": "Un-Break My Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Merril Bainbridge", + "playlist_title": "Mouth", + "found_song": { + "artist": "Merril Bainbridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e160e516-184c-0699-82b2-965052be65b6", + "path": "z://MP4\\KaraokeOnVEVO\\Merril Bainbridge - Mouth.mp4", + "title": "Mouth" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Celine Dion", + "playlist_title": "It's All Coming Back To Me Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "397029ef-df5d-a935-fe32-4ebdd887a356", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - It's All Coming Back To Me Now.mp4", + "title": "It's All Coming Back To Me Now" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ginuwine", + "playlist_title": "Pony", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "guid": "1147893c-bc8e-798e-868b-ca57b06c1ee5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pony - Ginuwine.mp4", + "title": "Pony" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "No Mercy", + "playlist_title": "Where Do You Go", + "found_song": { + "artist": "No Mercy", + "disabled": false, + "favorite": false, + "guid": "3a8bd746-e6cd-c215-112f-521ba05036cd", + "path": "z://MP4\\Let's Sing Karaoke\\No Mercy - Where Do You Go (Karaoke & Lyrics).mp4", + "title": "Where Do You Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "When You Love A Woman", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f083763-cf14-49fc-bd5e-8b8199f98bc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Journey - When You Love A Woman.mp4", + "title": "When You Love A Woman" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Donna Lewis", + "playlist_title": "I Love You Always Forever", + "found_song": { + "artist": "Donna Lewis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1df6787c-f598-4ba9-d89c-70f41bb42cc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Lewis - I Love You Always Forever.mp4", + "title": "I Love You Always Forever" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Dishwalla", + "playlist_title": "Counting Blue Cars", + "found_song": { + "artist": "Dishwalla", + "disabled": false, + "favorite": false, + "guid": "4317b5dd-4103-0a2e-b976-6fefadffc742", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Counting Blue Cars - Dishwalla.mp4", + "title": "Counting Blue Cars" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Gina G", + "playlist_title": "Ooh Aah... Just A Little Bit", + "found_song": { + "artist": "Gina G", + "disabled": false, + "favorite": false, + "guid": "912ef8d9-fc1c-d24f-452e-aa5ddd389760", + "path": "z://MP4\\Sing King Karaoke\\Gina G - Ooh Aah... Just A Little Bit (Karaoke Version).mp4", + "title": "Ooh Aah... Just A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "John Mellencamp", + "playlist_title": "Key West Intermezzo (I Saw You First)", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4807906f-7552-88ad-fd13-6d331eceb78a", + "path": "z://MP4\\KaraokeOnVEVO\\John Mellencamp - Key West Intermezzo (I Saw You First.mp4", + "title": "Key West Intermezzo (I Saw You First)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Alanis Morissette", + "playlist_title": "You Learn/You Oughta Know", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a538df5-f46f-d1b0-d0f8-b4331380a82f", + "path": "z://MP4\\Sing King Karaoke\\Alanis Morissette - You LearnYou Oughta Know.mp4", + "title": "You Learn/You Oughta Know" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bryan Adams", + "playlist_title": "Let's Make A Night To Remember", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "654b25c4-1c1c-2b06-4e74-82b8ec29dbc9", + "path": "z://CDG\\Various\\Bryan Adams - Let's Make A Night To Remember.mp3", + "title": "Let's Make A Night To Remember" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Give Me One Reason", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "eac4f7a3-b806-d448-d0c7-024b384eb490", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Give Me One Reason (Karaoke Version).mp4", + "title": "Give Me One Reason" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Duncan Sheik", + "playlist_title": "Barely Breathing", + "found_song": { + "artist": "Duncan Sheik", + "disabled": false, + "favorite": false, + "guid": "56ea11d4-ba6c-c4ef-3d76-8739f04bf24f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Barely Breathing - Duncan Sheik.mp4", + "title": "Barely Breathing" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Better Than Ezra", + "playlist_title": "Desperately Wanting", + "found_song": { + "artist": "Better Than Ezra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe915c16-71c1-6089-f77c-3ba4444f8862", + "path": "z://MP4\\KaraokeOnVEVO\\Better Than Ezra - Desperately Wanting.mp4", + "title": "Desperately Wanting" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Metallica", + "playlist_title": "Hero Of The Day", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "b723db9c-a417-3eb5-6834-1fdf9558ae8d", + "path": "z://CDG\\Various\\Metallica - Hero Of The Day.mp3", + "title": "Hero Of The Day" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shania Twain", + "playlist_title": "God Bless The Child", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "20feffd6-307d-6775-1e67-2a415a9353a2", + "path": "z://CDG\\Various\\Shania Twain - God Bless The Child.mp3", + "title": "God Bless The Child" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Phil Collins", + "playlist_title": "Dance Into The Light", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b624256-73f5-e760-8d76-ca1dae51dd75", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Dance Into The Light.mp4", + "title": "Dance Into The Light" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Elton John", + "playlist_title": "You Can Make History (Young Again)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf915e43-f651-a124-af45-24bdf24a632e", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - You Can Make History (Young Again.mp4", + "title": "You Can Make History (Young Again)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Johnny Gill", + "playlist_title": "Let's Get The Mood Right", + "found_song": { + "artist": "Johnny Gill", + "disabled": false, + "favorite": false, + "guid": "b97f95df-e8f2-25ea-5734-e7185af4480e", + "path": "z://MP4\\Stingray Karaoke\\Let's Get The Mood Right in the style of Johnny Gill karaoke video.mp4", + "title": "Let's Get The Mood Right" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "R. Kelly", + "title": "I Believe I Can Fly (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "En Vogue", + "title": "Don't Let Go (Love) (From \"Set It Off\")", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "BLACKstreet (Featuring Dr. Dre)", + "title": "No Diggity", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Keith Sweat Featuring Athena Cage", + "title": "Nobody", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Whitney Houston", + "title": "I Believe In You And Me (From \"The Preacher's Wife\")", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "New Edition", + "title": "I'm Still In Love With You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Barbra Streisand & Bryan Adams", + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Los Del Rio", + "title": "Macarena (Bayside Boys Mix)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Az Yet", + "title": "Last Night (From \"The Nutty Professor\")", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seal", + "title": "Fly Like An Eagle (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mint Condition", + "title": "What Kind Of Man Would I Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lil' Kim Featuring Puff Daddy", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "title": "This Is For The Lover In You", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Montell Jordan", + "title": "Falling", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Keith Sweat", + "title": "Twisted", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dru Hill", + "title": "Tell Me (From \"Eddie\")", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eric Clapton", + "title": "Change The World (From \"Phenomenon\")", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Amber", + "title": "This Is Your Night", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Nas", + "title": "Street Dreams", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Madonna", + "title": "You Must Love Me (From \"Evita\")", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "dc Talk", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Toni Braxton", + "title": "You're Makin' Me High/Let It Flow", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "MC Lyte", + "title": "Cold Rock A Party", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jewel", + "title": "Foolish Games/You Were Meant For Me", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "702", + "title": "Steelo", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Ghost Town DJ's", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "112", + "title": "Come See Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "OutKast", + "title": "ATLiens", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "title": "Never Leave Me Alone", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "LL Cool J", + "title": "Loungin", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Cranberries", + "title": "When You're Gone/Free To Decide", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Westside Connection", + "title": "Bow Down", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Quad City DJ's", + "title": "C'mon N' Ride It (The Train)", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mack 10 & Tha Dogg Pound", + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Smashing Pumpkins", + "title": "Thirty-Three", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jocelyn Enriquez", + "title": "Do You Miss Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Donell Jones", + "title": "Knocks Me Off My Feet", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Donna Lewis", + "title": "Without Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Aaliyah", + "title": "If Your Girl Only Knew", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "title": "Missing You (From \"Set It Off\")", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Rod Stewart", + "title": "If We Fall In Love Tonight", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Quad City DJ's", + "title": "Space Jam (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Gloria Estefan", + "title": "I'm Not Giving You Up", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "K-Ci & JoJo", + "title": "How Could You (From \"Bulletproof\")", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Blackout Allstars", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Total", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Johnny Gill Featuring Roger Troutman", + "title": "It's Your Body", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Rockell", + "title": "I Fell In Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Los Del Rio", + "title": "Macarena Christmas", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Da Brat", + "title": "Sittin' On Top Of The World", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Braids", + "title": "Bohemian Rhapsody (From \"High School High\")", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Kenny G", + "title": "The Moment", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "R.E.M.", + "title": "Bittersweet Me", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Original", + "title": "I Luv U Baby", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Crush", + "title": "Jellyhead", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Richie Rich", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Isley Brothers Featuring Angela Winbush", + "title": "Floatin' On Your Love", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Le Click", + "title": "Tonight Is The Night", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Melissa Etheridge", + "title": "Nowhere To Go", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Goodfellaz", + "title": "Sugar Honey Ice Tea", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Luscious Jackson", + "title": "Naked Eye", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Wild Orchid", + "title": "At Night I Pray", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Susanna Hoffs", + "title": "All I Want", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Luther Vandross", + "title": "I Can Make It Better", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Wonders", + "title": "That Thing You Do! (From \"That Thing You Do!\")", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "New Edition", + "title": "Hit Me Off", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Robert Miles Featuring Maria Nayler", + "title": "One And One", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Warren G Featuring Adina Howard", + "title": "What's Love Got To Do With It (From \"Supercop\")", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Tony Rich Project", + "title": "Leavin'", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amanda Marshall", + "title": "Birmingham", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Redman Featuring K-Solo", + "title": "That's How It Is (It's Like That)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "dog's eye view", + "title": "Everything Falls Apart/Small Wonders", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "SWV", + "title": "Use Your Heart", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "LL Cool J", + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Angelina", + "title": "I Don't Need Your Love", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lost Boyz", + "title": "Music Makes Me High", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 0, + "missing_count": 76, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1995 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Can't Be Really Gone", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c209f4b7-1664-74c1-0102-8e59cd1c1b3a", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Can't Be Really Gone (Karaoke).mp4", + "title": "Can't Be Really Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Tall, Tall Trees", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "6ab964a1-0d02-ef42-e5cf-13e139baa428", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tall Tall Trees - Alan Jackson.mp4", + "title": "Tall Tall Trees" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "George Strait", + "playlist_title": "Check Yes Or No", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fc3779e-a7a0-bb09-0023-b128a02d4eaf", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Check Yes Or No.mp4", + "title": "Check Yes Or No" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Cowboy Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6392670-92c1-dbac-5caf-65d6a23bd580", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Cowboy Love.mp4", + "title": "Cowboy Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lee Roy Parnell", + "playlist_title": "When A Woman Loves A Man", + "found_song": { + "artist": "Lee Roy Parnell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c06013bf-436b-6e9f-9ad4-b8ecd289ed02", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Roy Parnell - When A Woman Loves A Man.mp4", + "title": "When A Woman Loves A Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "In Pictures", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "644ea82d-7aba-5c83-ff6b-8d76edc4b6f9", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - In Pictures (Karaoke).mp4", + "title": "In Pictures" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Nothing", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "c511b036-4654-c7b6-b3df-32be0eb9c383", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Nothing (Karaoke).mp4", + "title": "Nothing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Collin Raye", + "playlist_title": "Not That Different", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7440bbb5-236a-6fbc-f077-ddc2524c4f6c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Collin Raye - Not That Different.mp4", + "title": "Not That Different" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wade Hayes", + "playlist_title": "What I Meant To Say", + "found_song": { + "artist": "Wade Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f72c0596-82a6-67b2-33e5-6d00da53ebb1", + "path": "z://MP4\\KaraokeOnVEVO\\Wade Hayes - What I Meant To Say.mp4", + "title": "What I Meant To Say" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Clay Walker", + "playlist_title": "Who Needs You Baby", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11fe398c-9d36-4000-319f-8af0b1621e95", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Who Needs You Baby.mp4", + "title": "Who Needs You Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Aaron Tippin", + "title": "That's As Close As I'll Get To Loving You", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Bryan White", + "title": "Rebecca Lynn", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Clint Black", + "title": "Life Gets Away", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jeff Carson", + "title": "The Car", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Pam Tillis", + "title": "Deep Down", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tracy Byrd", + "title": "Love Lessons", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Terri Clark", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doug Stone", + "title": "Born In The Dark", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Reba McEntire", + "title": "Ring On Her Finger, Time On Her Hands", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Joe Diffie", + "title": "Bigger Than The Beatles", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Doug Supernaw", + "title": "Not Enough Hours In The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Blackhawk", + "title": "Like There Ain't No Yesterday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "John Berry", + "title": "If I Had Any Pride Left At All", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 0, + "missing_count": 13, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1995 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "TLC", + "playlist_title": "Diggin' On You", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "9ba3ad2b-5c91-911b-70e0-a52859fef1ac", + "path": "z://CDG\\Various\\TLC - Diggin' On You.mp3", + "title": "Diggin' On You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Fantasy", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "863cb54f-defd-fb71-8123-bdeaf2ddd4c3", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Fantasy (Karaoke & Lyrics).mp4", + "title": "Fantasy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Deep Blue Something", + "playlist_title": "Breakfast At Tiffany's", + "found_song": { + "artist": "Deep Blue Something", + "disabled": false, + "favorite": false, + "guid": "6f00bfc8-0fff-2da6-3c9d-893cf11a76e6", + "path": "z://MP4\\Sing King Karaoke\\Deep Blue Something - Breakfast At Tiffany's (Karaoke Version).mp4", + "title": "Breakfast At Tiffany's" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Name", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9309e091-e2de-0f8c-8706-87242a74b023", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Name (Karaoke).mp4", + "title": "Name" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beatles", + "playlist_title": "Free As A Bird", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a79e30a7-e9fb-f23b-04dd-dca02ad67f46", + "path": "z://MP4\\KaraokeOnVEVO\\The Beatles - Free As A Bird (Karaoke).mp4", + "title": "Free As A Bird" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Madonna", + "playlist_title": "You'll See", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "c3583064-7769-bce4-b42a-437b435f9dc4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Madonna - You'll See - SF041 - 13.mp3", + "title": "You'll See" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Everything But The Girl", + "playlist_title": "Missing", + "found_song": { + "artist": "Everything But The Girl", + "disabled": false, + "favorite": false, + "guid": "35a867ac-8ee3-b8aa-64f0-c37c44400008", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Everything But The Girl - Missing - SF041 - 09.mp3", + "title": "Missing" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Janet Jackson", + "playlist_title": "Runaway", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6feb492-bf75-7102-f5a7-f49df958b570", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Runaway.mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Joan Osborne", + "playlist_title": "One Of Us", + "found_song": { + "artist": "Joan Osborne", + "disabled": false, + "favorite": false, + "guid": "49f80660-2b05-1221-7e4e-0987ce381f81", + "path": "z://MP4\\Sing King Karaoke\\Joan Osborne - One Of Us (Karaoke Version).mp4", + "title": "One Of Us" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ace Of Base", + "playlist_title": "Beautiful Life", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "044cb132-5730-773e-da90-405f45fd8903", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Beautiful Life - Ace Of Base.mp4", + "title": "Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Take That", + "playlist_title": "Back For Good", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "guid": "71f8e652-5027-da20-71f7-186f93fb0689", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Back For Good - Take That.mp4", + "title": "Back For Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "3T", + "playlist_title": "Anything", + "found_song": { + "artist": "3T", + "disabled": false, + "favorite": false, + "guid": "c2b097a8-1e6c-b03d-93f0-20969c2adf94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF049\\3t - Anything - SF049 - 02.mp3", + "title": "Anything" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Smashing Pumpkins", + "playlist_title": "Bullet With Butterfly Wings", + "found_song": { + "artist": "The Smashing Pumpkins", + "disabled": false, + "favorite": false, + "guid": "5cc6f681-ce9c-a035-4b69-4e4f1b0cfaee", + "path": "z://MP4\\KaraFun Karaoke\\Bullet with Butterfly Wings - The Smashing Pumpkins Karaoke Version KaraFun.mp4", + "title": "Bullet with Butterfly Wings" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Carnival", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "2e9a044d-9a41-0ab2-145a-641b9d6723a2", + "path": "z://MP4\\TheKARAOKEChannel\\Carnival in the Style of Natalie Merchant karaoke video with lyrics (no lead vocal).mp4", + "title": "Carnival" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Selena", + "playlist_title": "Dreaming Of You", + "found_song": { + "artist": "Selena", + "disabled": false, + "favorite": false, + "guid": "61b89b48-0f85-f916-254a-0c1af61e6683", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dreaming Of You - Selena.mp4", + "title": "Dreaming Of You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Del Amitri", + "playlist_title": "Roll To Me", + "found_song": { + "artist": "Del Amitri", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43e0c557-febd-c42e-02e3-f51b50496103", + "path": "z://MP4\\KaraokeOnVEVO\\Del Amitri - Roll To Me.mp4", + "title": "Roll To Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coolio", + "playlist_title": "Too Hot", + "found_song": { + "artist": "Coolio", + "disabled": false, + "favorite": false, + "guid": "acc9f7ee-2c18-1fcb-67d5-4db2f94278ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Coolio - Too Hot - SF034 - 15.mp3", + "title": "Too Hot" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Blues Traveler", + "playlist_title": "Run-Around", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "guid": "6c954706-738f-f6ff-0685-b44d03377a93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run-around - Blues Traveler.mp4", + "title": "Run-around" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Lie For You (And That's The Truth)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046e2639-6999-2b3e-6911-6b5ecf74a2ba", + "path": "z://MP4\\ZoomKaraokeOfficial\\Meat Loaf - Id Lie For You (And Thats The Truth).mp4", + "title": "I'd Lie For You (And That's The Truth)" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Elton John", + "playlist_title": "Blessed", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007c8824-8fe9-4b1c-9ddb-1ec0ec430c02", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Blues Traveler", + "playlist_title": "Hook", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61ce564-03a5-c5e8-bb41-0040c328e352", + "path": "z://MP4\\KaraokeOnVEVO\\Blues Traveler - Hook.mp4", + "title": "Hook" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Collective Soul", + "playlist_title": "The World I Know", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "64832aca-7520-2495-ff9e-2f61276b34c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The World I Know - Collective Soul.mp4", + "title": "The World I Know" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Wonder", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "8266ef4f-e02c-7ea7-1f1a-5c410428bfdc", + "path": "z://CDG\\Sound Choice Karaoke\\SC2089\\SC2089-05 - Merchant, Natalie - Wonder.mp3", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Collective Soul", + "playlist_title": "December", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "52e81675-7392-f61f-abe9-fead7853a3d6", + "path": "z://MP4\\KaraFun Karaoke\\December - Collective Soul Karaoke Version KaraFun.mp4", + "title": "December" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "All-4-One", + "playlist_title": "I Can Love You Like That", + "found_song": { + "artist": "All-4-One", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d32e590-8cf2-9af5-d08f-254c3972dd49", + "path": "z://MP4\\KaraokeOnVEVO\\All-4-One - I Can Love You Like That.mp4", + "title": "I Can Love You Like That" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Tony Rich Project", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "The Tony Rich Project", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ac69b78-f15a-3ede-66ed-ccad9cc046bc", + "path": "z://MP4\\KaraokeOnVEVO\\The Tony Rich Project - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Are Not Alone", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "dc6447ff-39a6-5f29-93c9-10b1a01815b6", + "path": "z://MP4\\KaraFun Karaoke\\You Are Not Alone - Michael Jackson Karaoke Version KaraFun.mp4", + "title": "You Are Not Alone" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Bush", + "playlist_title": "Comedown", + "found_song": { + "artist": "Bush", + "disabled": false, + "favorite": false, + "guid": "cbe30b9a-279e-272a-c1f8-22c304538807", + "path": "z://MP4\\Let's Sing Karaoke\\Bush - Comedown (Karaoke & Lyrics).mp4", + "title": "Comedown" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tim McGraw", + "playlist_title": "I Like It, I Love It", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdff30fc-19e9-6238-4541-c9ada3bf373c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - I Like It, I Love It.mp4", + "title": "I Like It, I Love It" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "No Doubt", + "playlist_title": "Just A Girl", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf6eb26f-e3ab-0246-23fb-9cd8ad2cbff1", + "path": "z://MP4\\Sing King Karaoke\\No Doubt - Just A Girl.mp4", + "title": "Just A Girl" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "The Outhere Brothers", + "playlist_title": "Boom Boom Boom", + "found_song": { + "artist": "The Outhere Brothers", + "disabled": false, + "favorite": false, + "guid": "b4d5b49f-3eed-9c2e-5baa-3a735e848180", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF029\\The Outhere Brothers - Boom Boom Boom - SF029 - 07.mp3", + "title": "Boom Boom Boom" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Edwin McCain", + "playlist_title": "Solitude", + "found_song": { + "artist": "Edwin McCain & Darius Ruckner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79d8166a-5ae3-a6fe-bfea-9ac880d2683b", + "path": "z://CDG\\Various\\Edwin McCain & Darius Ruckner - Solitude.mp3", + "title": "Solitude" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Prince", + "playlist_title": "Gold", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "4fc2f665-a7eb-d5e6-bd8f-8a186570de45", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Prince - Gold - SF034 - 01.mp3", + "title": "Gold" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 23, + "playlist_artist": "Hootie & The Blowfish", + "playlist_title": "Only Wanna Be With You", + "found_song": { + "artist": "Hootie And The Blowfish", + "disabled": false, + "favorite": false, + "guid": "c755e064-3d0c-6e01-c556-7ad2fb83abdb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Wanna Be With You - Hootie And The Blowfish.mp4", + "title": "Only Wanna Be With You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Def Leppard", + "playlist_title": "When Love & Hate Collide", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "cf8bedcb-2137-cdab-3bb9-18372f03a5a3", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - When Love And Hate Collide (Karaoke).mp4", + "title": "When Love And Hate Collide" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "I Will Remember You (Live)", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "ad42eb37-891c-25e4-fa62-70345e0ebc4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Remember You - Sarah McLachlan.mp4", + "title": "I Will Remember You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Mariah Carey & Boyz II Men", + "title": "One Sweet Day", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Whitney Houston", + "title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "LL Cool J", + "title": "Hey Lover", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Coolio Featuring L.V.", + "title": "Gangsta's Paradise (From \"Dangerous Minds\")", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Monica", + "title": "Before You Walk Out Of My Life/Like This And Like That", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Pearl Jam", + "title": "I Got Id/Long Road", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "R. Kelly", + "title": "You Remind Me Of Something", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Groove Theory", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sophie B. Hawkins", + "title": "As I Lay Me Down", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kris Kross", + "title": "Tonite's Tha Night", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Faith Evans", + "title": "Soon As I Get Home", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Seal", + "title": "Kiss From A Rose (From \"Batman Forever\")", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Hootie & The Blowfish", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Xscape", + "title": "Who Can I Run To", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "La Bouche", + "title": "Be My Lover", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jodeci", + "title": "Love U 4 Life", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Planet Soul", + "title": "Set U Free", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Folk Implosion", + "title": "Natural One (From \"Kids\")", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Total", + "title": "No One Else", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brandy", + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Eazy-E", + "title": "Just Tah Let U Know", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Big Mountain", + "title": "Get Together", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Goodie Mob.", + "title": "Cell Therapy", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jon B", + "title": "Pretty Girl", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "D'Angelo", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blahzay Blahzay", + "title": "Danger", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Terry Ellis", + "title": "Where Ever You Are", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Boyz II Men", + "title": "I Remember", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Rembrandts", + "title": "I'll Be There For You/This House Is Not A Home", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "L.A.D.", + "title": "Ridin' Low", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Lisa Loeb & Nine Stories", + "title": "Do You Sleep?", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Brandy", + "title": "Brokenhearted", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Shai", + "title": "Come With Me", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Immature (Featuring Smooth)", + "title": "We Got It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Los Del Rio", + "title": "Macarena (Bayside Boys Mix)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Monifah", + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Max-A-Million", + "title": "Sexual Healing", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "L.V.", + "title": "Throw Your Hands Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Raekwon", + "title": "Incarcerated Scarfaces/Ice Cream", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Mighty Dub Katz", + "title": "Magic Carpet Ride", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Silk", + "title": "Hooked On You", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Pharcyde", + "title": "Runnin'", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Bone Thugs-N-Harmony", + "title": "East 1999", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Click", + "title": "Hurricane", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Better Than Ezra", + "title": "Rosealia", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Salt-N-Pepa", + "title": "Ain't Nuthin' But A She Thing", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Cypress Hill", + "title": "Throw Your Set In The Air", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Kool G Rap", + "title": "Fast Life", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Deborah Cox", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Real McCoy", + "title": "Automatic Lover (Call For Love)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Fugees", + "title": "Fu-Gee-La", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Artie The 1 Man Party", + "title": "A Mover La Colita", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Frost", + "title": "East Side Rendezvous", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Backstreet Boys", + "title": "We've Got It Goin' On", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Capleton", + "title": "Wings Of The Morning", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "P.M. Dawn", + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Bone Thugs-N-Harmony", + "title": "1st Of Tha Month", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Genius/GZA Featuring Inspektah Deck", + "title": "Cold World", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Quincy Jones Introducing Tamia", + "title": "You Put A Move On My Heart", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Method Man", + "title": "The Riddler (From \"Batman Forever\")", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 4, + "missing_count": 61, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1994 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Faith Hill", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6ae49e1-e23b-6e33-fa8c-995ce6ff883b", + "path": "z://CDG\\Various\\Faith Hill - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Gone Country", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "15b5049e-7abf-7b76-b4d5-d81a622f5223", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gone Country - Alan Jackson.mp4", + "title": "Gone Country" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Vince Gill", + "playlist_title": "When Love Finds You", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2875b408-db16-13b8-5d82-311b1a161461", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - When Love Finds You.mp4", + "title": "When Love Finds You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Brooks", + "playlist_title": "I ll Never Forgive My Heart", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "186b0bde-9db3-b7d6-26e1-d7f1e0a6afa3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - I ll Never Forgive My Heart.mp4", + "title": "I ll Never Forgive My Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Lari White", + "playlist_title": "Now I Know", + "found_song": { + "artist": "Lari White", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "42946017-83d9-97bf-2b3d-e9b3f361896c", + "path": "z://MP4\\KaraokeOnVEVO\\Lari White - Now I Know.mp4", + "title": "Now I Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Diamond Rio", + "playlist_title": "Night Is Fallin In My Heart", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed107d9f-298c-ad41-74a3-a2da094ca145", + "path": "z://CDG\\Various\\Diamond Rio - Night Is Fallin' In My Heart.mp3", + "title": "Night Is Fallin' In My Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Collie", + "playlist_title": "Hard Lovin Woman", + "found_song": { + "artist": "Mark Collie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c55c6f8d-5d3f-54be-e7c3-a0b941c106e5", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Collie - Hard Lovin Woman.mp4", + "title": "Hard Lovin Woman" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaron Tippin", + "playlist_title": "I Got It Honest", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c16f9fe-fb3c-efeb-9038-c56e06a46fde", + "path": "z://CDG\\Various\\Aaron Tippin - I Got It Honest.mp3", + "title": "I Got It Honest" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "If You ve Got Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90a00931-ecb6-1a5c-8464-352fbcf22e05", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - If You ve Got Love.mp4", + "title": "If You ve Got Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tracy Byrd", + "playlist_title": "The First Step", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8e4fb70-63b1-0dee-727b-087933e9bef7", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - The First Step.mp4", + "title": "The First Step" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "David Ball", + "playlist_title": "When The Thought Of You Catches Up With Me", + "found_song": { + "artist": "David Ball", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "434bf91f-7c0c-4a75-cec1-4dcc16b6545d", + "path": "z://MP4\\KaraokeOnVEVO\\David Ball - When The Thought Of You Catches Up With Me.mp4", + "title": "When The Thought Of You Catches Up With Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Tim McGraw", + "title": "Not A Moment Too Soon", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mark Chesnutt", + "title": "Goin Through The Big D", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Randy Travis", + "title": "This Is Me", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rick Trevino", + "title": "Doctor Time", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Pam Tillis", + "title": "Mi Vida Loca (My Crazy Life)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "John Berry", + "title": "You And Only You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sawyer Brown", + "title": "This Time", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Doug Stone", + "title": "Little Houses", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Patty Loveless", + "title": "Here I Am", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clint Black", + "title": "Untanglin My Mind", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Collin Raye", + "title": "My Kind Of Girl", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "George Strait", + "title": "The Big One", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 12, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1994 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Boyz II Men", + "playlist_title": "On Bended Knee", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba0d35f-5238-84c4-4328-224e5a6849c3", + "path": "z://MP4\\Sing King Karaoke\\Boyz II Men - On Bended Knee.mp4", + "title": "On Bended Knee" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "TLC", + "playlist_title": "Creep", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "3dffe224-f27c-c83c-4d73-a7e91ba460ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Creep - TLC.mp4", + "title": "Creep" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bon Jovi", + "playlist_title": "Always", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "a286bebd-3044-a599-9d02-3dadfa146c49", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Always (Karaoke Version).mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Boyz II Men", + "playlist_title": "I ll Make Love To You", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "4f9e88f5-b7d4-1bac-75dc-2f2beb5b14c0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Make Love To You - Boyz II Men.mp4", + "title": "I ll Make Love To You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Melissa Etheridge", + "playlist_title": "I m The Only One", + "found_song": { + "artist": "Melissa Etheridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d03b615-75d9-30f4-6315-695057c273fd", + "path": "z://MP4\\KaraokeOnVEVO\\Melissa Etheridge - I m The Only One.mp4", + "title": "I m The Only One" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Madonna", + "playlist_title": "Secret", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "89e709ea-4e51-1d14-6e0a-f878f5590714", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Madonna - Secret - SF010 - 04.mp3", + "title": "Secret" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Madonna", + "playlist_title": "Take A Bow", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "bf08a025-e454-99d1-30ee-b879d367f230", + "path": "z://CDG\\Various\\Madonna - Take A Bow.mp3", + "title": "Take A Bow" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Des ree", + "playlist_title": "You Gotta Be", + "found_song": { + "artist": "Des ree", + "disabled": false, + "favorite": false, + "guid": "d0b16be8-fa3a-ad29-f5af-a7542dfc0456", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Gotta Be - Des ree.mp4", + "title": "You Gotta Be" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sheryl Crow", + "playlist_title": "All I Wanna Do", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cadb5cfc-f6dc-2654-b00e-1b19b39a6565", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - All I Wanna Do.mp4", + "title": "All I Wanna Do" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Barry White", + "playlist_title": "Practice What You Preach", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "c20cb197-f5bf-1215-80be-ba292a15bb42", + "path": "z://CDG\\Various\\Barry White - Practice What You Preach.mp3", + "title": "Practice What You Preach" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Corona", + "playlist_title": "The Rhythm Of The Night", + "found_song": { + "artist": "Corona", + "disabled": false, + "favorite": false, + "guid": "3c7d1650-a837-9e5f-469d-bd5c8bbc2893", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Rhythm Of The Night - Corona.mp4", + "title": "The Rhythm Of The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tom Petty", + "playlist_title": "You Don t Know How It Feels", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "361101ae-273c-4141-e6d3-44a0aaf1874a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty - You Dont Know How It Feels.mp4", + "title": "You Don't Know How It Feels" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Hootie", + "playlist_title": "Hold My Hand", + "found_song": { + "artist": "Hootie & The Blowfish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c09f384-448e-01f8-cbba-cd43bcae24e0", + "path": "z://MP4\\KaraokeOnVEVO\\Hootie & The Blowfish - Hold My Hand.mp4", + "title": "Hold My Hand" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Four Seasons", + "playlist_title": "December 1963 (Oh, What A Night)", + "found_song": { + "artist": "Four Seasons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e9a5618-f812-c245-e6c0-d8075f97b912", + "path": "z://CDG\\Various\\Four Seasons - December, 1963(Oh What A Night).mp3", + "title": "December, 1963(Oh What A Night)" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ace Of Base", + "playlist_title": "Living In Danger", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "b611f6a9-8191-95fe-c12d-3170d265dd58", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Ace Of Base - Living In Danger - SF010 - 12.mp3", + "title": "Living In Danger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Immature", + "playlist_title": "Never Lie", + "found_song": { + "artist": "Immature", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f83d5cd8-77db-cea3-5d6f-c172273b4f55", + "path": "z://MP4\\KaraokeOnVEVO\\Immature - Never Lie.mp4", + "title": "Never Lie" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R.E.M.", + "playlist_title": "What s The Frequency, Kenneth?", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c9b800e-bf5d-23d2-e20f-559df85632bd", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - What s The Frequency, Kenneth.mp4", + "title": "What s The Frequency, Kenneth?" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Happy", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "cc49c3d0-68bb-7f99-3248-3b22962f928c", + "path": "z://MP4\\singsongsmusic\\Be Happy - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Be Happy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Babyface", + "playlist_title": "When Can I See You", + "found_song": { + "artist": "Babyface", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "542be9a0-7da1-7821-2641-0b09c8d1eaea", + "path": "z://MP4\\KaraokeOnVEVO\\Babyface - When Can I See You.mp4", + "title": "When Can I See You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Changing Faces", + "playlist_title": "Foolin Around", + "found_song": { + "artist": "Changing Faces", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24791935-ee2b-8e10-656f-1d8970b78844", + "path": "z://MP4\\KaraokeOnVEVO\\Changing Faces - Foolin Around.mp4", + "title": "Foolin Around" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Hole", + "playlist_title": "Doll Parts", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edac1075-5d4d-b008-386a-7ff6eb62de09", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Doll Parts.mp4", + "title": "Doll Parts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "2 Unlimited", + "playlist_title": "Get Ready For This", + "found_song": { + "artist": "2 Unlimited", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90151a8b-b848-59d3-7ead-e3f248206380", + "path": "z://MP4\\ZoomKaraokeOfficial\\2 Unlimited - Get Ready For This.mp4", + "title": "Get Ready For This" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Aaliyah", + "playlist_title": "At Your Best (You Are Love)", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "b97270a1-224b-af25-09c4-5f8f2a8554e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At Your Best (You Are Love) - Aaliyah.mp4", + "title": "At Your Best (You Are Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eagles", + "playlist_title": "Get Over It", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "2749534c-664d-ac49-2c2f-b1bd0ae7e6ce", + "path": "z://CDG\\Various\\Eagles - Get Over It.mp3", + "title": "Get Over It" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Mazzy Star", + "playlist_title": "Fade Into You", + "found_song": { + "artist": "Mazzy Star", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53f05a19-df00-438c-315d-6e95a415277d", + "path": "z://MP4\\Sing King Karaoke\\Mazzy Star - Fade Into You.mp4", + "title": "Fade Into You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "The Flaming Lips", + "playlist_title": "She Don t Use Jelly", + "found_song": { + "artist": "The Flaming Lips", + "disabled": false, + "favorite": false, + "guid": "52e8f269-8faa-c55e-9574-d0ce4bc1eaf5", + "path": "z://MP4\\TheKARAOKEChannel\\She Don t Use Jelly in the style of The Flaming Lips karaoke video.mp4", + "title": "She Don t Use Jelly" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "Pretenders", + "playlist_title": "I ll Stand By You", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6dc03a9-81b2-898d-1870-e6c7ef3d059f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Pretenders - Ill Stand By You.mp4", + "title": "I'll Stand By You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Candlebox", + "playlist_title": "Far Behind", + "found_song": { + "artist": "Candlebox", + "disabled": false, + "favorite": false, + "guid": "e9448ae9-0a65-7e78-f4f3-b80807e67a78", + "path": "z://MP4\\Let's Sing Karaoke\\Candlebox - Far Behind (Karaoke & Lyrics).mp4", + "title": "Far Behind" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Luther Vandross", + "playlist_title": "Always And Forever", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33ca9964-abef-ce43-8d53-843140f5dd48", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Always And Forever.mp4", + "title": "Always And Forever" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Luther Vandross", + "playlist_title": "Endless Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "b02c69d8-cd5e-92fe-53b0-65987dad0079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Endless Love - Luther Vandross.mp4", + "title": "Endless Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Jeff Foxworthy", + "playlist_title": "Redneck Stomp", + "found_song": { + "artist": "Jeff Foxworthy, Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "2f328f43-114b-5b7a-9f3f-3ef03cf435de", + "path": "z://MP4\\KaraokeOnVEVO\\Jeff Foxworthy, Alan Jackson - Redneck Games (Karaoke).mp4", + "title": "Redneck Games" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Ini Kamoze", + "title": "Here Comes The Hotstepper (From \"Ready To Wear\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Real McCoy", + "title": "Another Night", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Brandy", + "title": "I Wanna Be Down", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "BLACKstreet", + "title": "Before I Let You Go", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "69 Boyz", + "title": "Tootsee Roll", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Janet Jackson", + "title": "You Want This/70 s Love Groove", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "4PM", + "title": "Sukiyaki", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "20 Fingers Featuring Gillette", + "title": "Short Dick Man", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Gloria Estefan", + "title": "Turn The Beat Around (From \"The Specialist\")", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Crystal Waters", + "title": "100% Pure Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Vanessa Williams", + "title": "The Sweetest Days", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jade", + "title": "Every Day Of The Week", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Immature", + "title": "Constantly", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Deadeye Dick", + "title": "New Age Girl (From \"Dumb And Dumber\")", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Toni Braxton", + "title": "I Belong To You/How Many Ways", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Craig Mack", + "title": "Flava In Ya Ear", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "John Mellencamp With Me Shell Ndegeocello", + "title": "Wild Night", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Zhane", + "title": "Shame (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Bone Thugs-N-Harmony", + "title": "Thuggish Ruggish Bone", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Scarface", + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Brownstone", + "title": "If You Love Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Rappin 4-Tay", + "title": "Playaz Club", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Sting", + "title": "When We Dance", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "N II U", + "title": "I Miss You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Method Man", + "title": "Bring The Pain", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jon Secada", + "title": "Mental Picture", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Aerosmith", + "title": "Blind Man", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.M.U. (Black Men United)", + "title": "U Will Know (From \"Jason s Lyric\")", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Warren G", + "title": "Do You See", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Da Brat", + "title": "Fa All Y all", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Keith Murray", + "title": "The Most Beautifullest Thing In This World", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "John Mellencamp", + "title": "Dance Naked", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Elton John", + "title": "Circle Of Life (From \"The Lion King\")", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Amy Grant With Vince Gill", + "title": "House Of Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Lucas", + "title": "Lucas With The Lid Off", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Toad The Wet Sprocket", + "title": "Something s Always Wrong", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Heavy D", + "title": "Black Coffee", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Guns N Roses", + "title": "Sympathy For The Devil (\"Interview With The Vampire\")", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Notorious B.I.G.", + "title": "Juicy/Unbelievable", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Andru Donalds", + "title": "Mishale", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "69 Boyz", + "title": "Kitty Kitty", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Urge Overkill", + "title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Harry Connick, Jr.", + "title": "(I Could Only) Whisper Your Name", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Craig Mack", + "title": "Get Down", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Keith Sweat (Featuring Kut Klose)", + "title": "Get Up On It", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Martin Page", + "title": "In The House Of Stone And Light", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Silk", + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Lords Of The Underground", + "title": "Tic Toc", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Rolling Stones", + "title": "Out Of Tears", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Sheryl Crow", + "title": "Strong Enough", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Steve Perry", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Huey Lewis", + "title": "But It s Alright", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Tevin Campbell", + "title": "Don t Say Goodbye Girl", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Shaquille O Neal", + "title": "Biological Didn t Bother", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Anita Baker", + "title": "I Apologize", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Joshua Kadison", + "title": "Picture Postcards From L.A.", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Nine", + "title": "Whutcha Want?", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Lil Suzy", + "title": "Promise Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Freedy Johnston", + "title": "Bad Reputation", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Dru Down", + "title": "Pimp Of The Year", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Murmurs", + "title": "You Suck", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Liz Phair", + "title": "Supernova", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Fu-Schnickens", + "title": "Breakdown", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Weezer", + "title": "Undone - The Sweater Song", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Tracy Lawrence", + "title": "I See It Now", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Anita Baker", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Doctor Dre", + "title": "Back Up Off Me!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 5, + "missing_count": 67, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1993 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Doug Supernaw", + "playlist_title": "I Don't Call Him Daddy", + "found_song": { + "artist": "Doug Supernaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af7017bd-c406-412d-ed4d-6dc4e470890e", + "path": "z://CDG\\Various\\Doug Supernaw - I Don't Call Him Daddy.mp3", + "title": "I Don't Call Him Daddy" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Soon", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "2b5327eb-c653-8408-7c95-5b822b42ea6b", + "path": "z://CDG\\Sound Choice Karaoke\\SC2088\\SC2088-05 - Tucker, Tanya - Soon.mp3", + "title": "Soon" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "Wild One", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab51c515-3b8b-3bd9-b421-ceb8ddb81305", + "path": "z://CDG\\Various\\Faith Hill - Wild One.mp3", + "title": "Wild One" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Clay Walker", + "playlist_title": "Live Until I Die", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "guid": "97eefbe7-88e3-9067-45f3-8af4db777893", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live Until I Die (Karaoke).mp4", + "title": "Live Until I Die" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Clint Black", + "playlist_title": "State Of Mind", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "59cfb2d3-86ee-1fe6-54b8-bc9959e553ee", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - State Of Mind (Karaoke & Lyrics).mp4", + "title": "State Of Mind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Queen Of My Double Wide Trailer", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6d76d39-c906-ed72-5c14-0e4624ca3aec", + "path": "z://MP4\\KaraokeOnVEVO\\Sammy Kershaw - Queen Of My Double Wide Trailer.mp4", + "title": "Queen Of My Double Wide Trailer" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "I Swear", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "bef6414b-b7d7-83c2-5880-b4cebbb16943", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Swear - John Michael Montgomery.mp4", + "title": "I Swear" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "A Little Less Talk And A Lot More Action", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "9aeb8ad1-149d-f895-d810-04dbb1abb08c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Less Talk And A Lot More Action - Toby Keith.mp4", + "title": "A Little Less Talk And A Lot More Action" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Patty Loveless", + "playlist_title": "You Will", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6bd1c4c-2e06-7c6a-d804-a1af9f59a7f0", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - You Will.mp4", + "title": "You Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "The Call Of The Wild", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a888093c-e51a-875b-e672-6ac39b2d5af8", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - The Call Of The Wild.mp4", + "title": "The Call Of The Wild" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Garth Brooks", + "playlist_title": "American Honky-Tonk Bar Association", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8474602c-c98f-0269-63e0-8bb7b9d94fc5", + "path": "z://CDG\\Various\\Garth Brooks - American Honky Tonk Bar Association.mp3", + "title": "American Honky Tonk Bar Association" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hal Ketchum", + "playlist_title": "Someplace Far Away (Careful What You're Dreaming)", + "found_song": { + "artist": "Hal Ketchum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f9af088-b0eb-c39e-a8aa-bd0b77d829a7", + "path": "z://MP4\\KaraokeOnVEVO\\Hal Ketchum - Someplace Far Away (Careful What Youre Dreaming.mp4", + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Billy Dean", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f09b8573-7c1b-15a8-4fb0-09344eaafa17", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Dean - We Just Disagree.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Shenandoah", + "playlist_title": "I Want To Be Loved Like That", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a702f33-63a0-913a-400b-dabd2ecbec41", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - I Want To Be Loved Like That.mp4", + "title": "I Want To Be Loved Like That" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Sawyer Brown", + "title": "The Boys & Me", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Doug Stone", + "title": "I Never Knew Love", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Wynonna", + "title": "Is It Over Yet", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Billy Ray Cyrus", + "title": "Somebody New", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Boy Howdy", + "title": "She'd Give Anything", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Tracy Lawrence", + "title": "My Second Home", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "John Berry", + "title": "Kiss Me In The Car", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 1, + "missing_count": 7, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1993 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Hero", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "35a35f1e-0236-0acf-7d19-ea42dab2a184", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hero - Mariah Carey.mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Ace Of Base", + "playlist_title": "All That She Wants", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "4fa40070-bff8-fc15-3c72-6ab80ba29fa5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All That She Wants - Ace Of Base.mp4", + "title": "All That She Wants" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Do Anything For Love (But I Won't Do That)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "guid": "c3416262-ed2d-2713-d64d-5e847085dd6f", + "path": "z://MP4\\Stingray Karaoke\\I'd Do Anything For Love (But I Won't Do That) in the Style of Meat Loaf karaoke video.mp4", + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Shoop", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "0cb8dbb1-927b-81bd-1265-5d67fb39dff7", + "path": "z://MP4\\KtvEntertainment\\Salt' N' Pepa - Shoop Karaoke Lyrics.mp4", + "title": "Shoop" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Toni Braxton", + "playlist_title": "Breathe Again", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "ecf15ec8-d421-9f09-715d-e6e3e89dc922", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Toni Braxton - Breathe Again - SF006 - 02.mp3", + "title": "Breathe Again" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Michael Bolton", + "playlist_title": "Said I Loved You...But I Lied", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9698de5a-022e-b3f2-25b3-9a92c3eef12e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Bolton - Said I Loved You But I Lied.mp4", + "title": "Said I Loved You But I Lied" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bryan Adams", + "playlist_title": "Please Forgive Me", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "96d46c2e-6ad0-eff2-9c87-47fdb734ff68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Forgive Me - Bryan Adams.mp4", + "title": "Please Forgive Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tevin Campbell", + "playlist_title": "Can We Talk", + "found_song": { + "artist": "Tevin Campbell", + "disabled": false, + "favorite": false, + "guid": "fa3aba80-3f42-6616-456a-dbf5d988c622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Can We Talk - Tevin Campbell.mp4", + "title": "Can We Talk" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tag Team", + "playlist_title": "Whoomp! (There It Is)", + "found_song": { + "artist": "Tag Team", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8128085-68a8-b2ac-0f15-f40fa3e91eb2", + "path": "z://MP4\\Stingray Karaoke\\Tag Team - Whoomp! (There It Is).mp4", + "title": "Whoomp! (There It Is)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Cranberries", + "playlist_title": "Linger", + "found_song": { + "artist": "The Cranberries", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4c447f8-fbd8-0d04-8857-e8d398f036ba", + "path": "z://MP4\\Sing King Karaoke\\The Cranberries - Linger (Karaoke Version).mp4", + "title": "Linger" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Domino", + "playlist_title": "Getto Jam", + "found_song": { + "artist": "Domino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a277a16a-b945-283a-83de-859c22af6c2e", + "path": "z://CDG\\SBI\\SBI-01\\SB02780 - Domino - Getto Jam.mp3", + "title": "Getto Jam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Culture Beat", + "playlist_title": "Mr. Vain", + "found_song": { + "artist": "Culture Beat", + "disabled": false, + "favorite": false, + "guid": "bb474262-40a9-20f4-a438-5defac2758e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Vain - Culture Beat.mp4", + "title": "Mr. Vain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Haddaway", + "playlist_title": "What Is Love", + "found_song": { + "artist": "Haddaway", + "disabled": false, + "favorite": false, + "guid": "071f0c48-2e88-63ea-734f-5db828f709c5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Is Love - Haddaway.mp4", + "title": "What Is Love" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "K7", + "playlist_title": "Come Baby Come", + "found_song": { + "artist": "K7", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76aa2da4-62b4-a628-d9a3-b592bf48c179", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\K7 - Come Baby Come - SFMW 854 -02.mp3", + "title": "Come Baby Come" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mariah Carey", + "playlist_title": "Dreamlover", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "92fd0f83-b571-c065-4a41-7f68858c2460", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Dreamlover (Karaoke & Lyrics) (2).mp4", + "title": "Dreamlover" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Celine Dion", + "playlist_title": "The Power Of Love", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "1efc2e2c-b142-7e19-d5db-a4e36194510c", + "path": "z://MP4\\KtvEntertainment\\Celine Dion - The Power of Love (Karaoke without Vocal).mp4", + "title": "The Power of Love" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Billy Joel", + "playlist_title": "All About Soul", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e0de3e-ecd4-5c73-0f02-6040e3831f00", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - All About Soul.mp4", + "title": "All About Soul" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Gabrielle", + "playlist_title": "Dreams", + "found_song": { + "artist": "Gabrielle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5a76a9b-9d66-7036-4326-aa6431314f6f", + "path": "z://MP4\\Sing King Karaoke\\Gabrielle - Dreams.mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Joshua Kadison", + "playlist_title": "Jessie", + "found_song": { + "artist": "Joshua Kadison", + "disabled": false, + "favorite": false, + "guid": "690ac53e-7bde-775d-4f2d-80525edc880a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jessie - Joshua Kadison.mp4", + "title": "Jessie" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Queen Latifah", + "playlist_title": "U.N.I.T.Y.", + "found_song": { + "artist": "Queen Latifah", + "disabled": false, + "favorite": false, + "guid": "5d5125a0-9131-81bf-c241-b339a2e39fc5", + "path": "z://CDG\\Various\\Queen Latifah - U.N.I.T.Y..mp3", + "title": "U.N.I.T.Y." + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Aerosmith", + "playlist_title": "Cryin'", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "72032a97-a206-0127-c7be-9891bbad26c8", + "path": "z://MP4\\Karaoke Sing Sing\\Aerosmith - Cryin' (Karaoke Version).mp4", + "title": "Cryin'" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Phil Collins", + "playlist_title": "Both Sides Of The Story", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba6cd9e-3406-105c-bccb-f2192620ee94", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Both Sides Of The Story.mp4", + "title": "Both Sides Of The Story" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Billy Joel", + "playlist_title": "The River Of Dreams", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c83d-4029-bf35-1d15-fbc2d5de8b30", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - The River Of Dreams.mp4", + "title": "The River Of Dreams" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Inner Circle", + "playlist_title": "Sweat (A La La La La Long)", + "found_song": { + "artist": "Inner Circle", + "disabled": false, + "favorite": false, + "guid": "4b16ddc0-a2cf-c2e8-7c41-1196f1f2e657", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweat (A La La La La Long) - Inner Circle.mp4", + "title": "Sweat (A La La La La Long)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Blind Melon", + "playlist_title": "No Rain", + "found_song": { + "artist": "Blind Melon", + "disabled": false, + "favorite": false, + "guid": "b24fd06e-622c-612f-8690-3feda0220c6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No Rain - Blind Melon.mp4", + "title": "No Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Aerosmith", + "playlist_title": "Amazing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef20b54c-d18c-ba76-48be-ee0062e69259", + "path": "z://CDG\\Various\\Aerosmith - Amazing.mp3", + "title": "Amazing" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mr. Big", + "playlist_title": "Wild World", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "3c351510-eae3-7f45-5102-ecc096a10844", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Mr. Big.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "UB40", + "playlist_title": "Higher Ground", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4d5027d-9a49-f087-2345-c95cff40ad82", + "path": "z://MP4\\KaraokeOnVEVO\\UB40 - Higher Ground.mp4", + "title": "Higher Ground" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Rod Stewart", + "playlist_title": "Reason To Believe", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "52ef2d34-5230-7ad1-1871-886a0ca906a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Reason To Believe - Rod Stewart.mp4", + "title": "Reason To Believe" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Everybody Hurts", + "found_song": { + "artist": "R.E.M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "740d9b90-ae9e-82f9-555f-f5b9594bf31e", + "path": "z://MP4\\Sing King Karaoke\\R.E.M - Everybody Hurts (2.mp4", + "title": "Everybody Hurts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Mary Jane's Last Dance", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df6c15b0-6927-abba-f651-826b404f2a9a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty And The Heartbreakers - Mary Janes Last Dance.mp4", + "title": "Mary Jane's Last Dance" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Heart", + "playlist_title": "Will You Be There (In The Morning)", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "99fa898a-430e-0561-abb8-45c2c822fe21", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF026\\Heart - Will You Be There In The Morning - SF026 - 11.mp3", + "title": "Will You Be There In The Morning" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Nightcrawlers", + "playlist_title": "Push The Feeling On", + "found_song": { + "artist": "Nightcrawlers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9a33746-926b-d4bf-2a57-57d6dd55f034", + "path": "z://CDG\\SBI\\SBI-01\\SB04073 - Nightcrawlers - Push The Feeling On.mp3", + "title": "Push The Feeling On" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Clay Walker", + "playlist_title": "What's It To You", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03c9c587-dfb0-89ea-45b4-3acca3b8687f", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Whats It To You.mp4", + "title": "What's It To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Snoop Dogg", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Snoop Doggy Dog", + "disabled": false, + "favorite": false, + "guid": "c235395b-c30e-4879-20dd-629e82fbb42c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Snoop Doggy Dog - What's My Name - SF050 - 04.mp3", + "title": "What's My Name" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "10,000 Maniacs", + "playlist_title": "Because The Night", + "found_song": { + "artist": "10000 Maniacs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f566c0ed-2ff7-cb13-e35c-afbe6c411ffb", + "path": "z://CDG\\Various\\10000 Maniacs - Because The Night.mp3", + "title": "Because The Night" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "The Breeders", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Breeders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79fd0035-ec18-5a26-ddbd-46568e7c6a5a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 868\\Breeders - Cannonball - SFMW 868 -01.mp3", + "title": "Cannonball" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Janet Jackson", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Bryan Adams/Rod Stewart/Sting", + "title": "All For Love", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "DRS", + "title": "Gangsta Lean", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Xscape", + "title": "Just Kickin' It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "2Pac", + "title": "Keep Ya Head Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Zhane", + "title": "Hey Mr. D.J.", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface", + "title": "Never Keeping Secrets", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jodeci", + "title": "Cry For You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jimmy Cliff", + "title": "I Can See Clearly Now (From \"Cool Runnings\")", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "R. Kelly", + "title": "Sex Me (Parts I & II)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hi-Five", + "title": "Never Should've Let You Go (From \"Sister Act 2\")", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Color Me Badd", + "title": "Time And Chance", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tony Toni Tone", + "title": "Anniversary", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Shaquille O'Neal", + "title": "(I Know I Got) Skillz", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Xscape", + "title": "Understanding", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Janet Jackson", + "title": "If", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Zapp & Roger", + "title": "Slow And Easy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Gin Blossoms", + "title": "Found Out About You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Toni Braxton", + "title": "Another Sad Love Song", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Eazy-E", + "title": "Real Muthaphuckkin G's", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Def Leppard", + "title": "Two Steps Behind (From \"Last Action Hero\")", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Boyz II Men", + "title": "Let It Snow", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "US 3", + "title": "Cantaloop (Flip Fantasia)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "A Tribe Called Quest", + "title": "Award Tour", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Elton John & Kiki Dee", + "title": "True Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Intro", + "title": "Come Inside", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Lisette Melendez", + "title": "Goody Goody", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Def Leppard", + "title": "Miss You In A Heartbeat", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Collage", + "title": "I'll Be Loving You", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Red Hot Chili Peppers", + "title": "Soul To Squeeze (From \"Coneheads\")", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Rick Astley", + "title": "Hopelessly", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Das EFX", + "title": "Freakit", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "U2", + "title": "Stay (Faraway, So Close!)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The Lemonheads", + "title": "Into Your Arms", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Expose", + "title": "As Long As I Can Dream", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Shai", + "title": "Yours", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Goodmen", + "title": "Give It Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Kenny G", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Mista Grimm", + "title": "Indo Smoke (From \"Poetic Justice\")", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Ice Cube", + "title": "Really Doe", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Wu-Tang Clan", + "title": "Method Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jade", + "title": "Looking For Mr. Do Right", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Taylor Dayne", + "title": "Send Me A Lover", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Dr. Dre", + "title": "Let Me Ride", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Lisa Keith", + "title": "Better Than You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Souls Of Mischief", + "title": "93 'Til Infinity", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jazzy Jeff & The Fresh Prince", + "title": "I'm Looking For The One (To Be With Me)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Haddaway", + "title": "Life (Everybody Needs Somebody To Love)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Chantay Savage", + "title": "Betcha'll Never Find", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kate Bush", + "title": "Rubberband Girl", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rozalla", + "title": "I Love Music (From \"Carlito's Way\")", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Robin S.", + "title": "Love For Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kris Kross", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Reality", + "title": "Yolanda", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "RAab", + "title": "Foreplay", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bell Biv Devoe", + "title": "Something In Your Eyes", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lords Of The Underground", + "title": "Here Come The Lords", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Inner Circle", + "title": "Rock With You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "MC Ren", + "title": "Same Ol' Shit", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 3, + "missing_count": 59, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1992 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Vince Gill", + "playlist_title": "Don t Let Our Love Start Slippin Away", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "5a3b90f6-5ae6-ae29-81f4-dc3c76ce1656", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Don't Let Our Love Start Slippin' Away (Karaoke).mp4", + "title": "Don't Let Our Love Start Slippin' Away" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "She s Got The Rhythm (And I Got The Blues)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a98fe2-b794-3063-dede-77911d9ade7a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Shes Got The Rhythm And I Got The Blues.mp4", + "title": "She's Got The Rhythm And I Got The Blues" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Garth Brooks", + "playlist_title": "Somewhere Other Than The Night", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "ea66fbea-054d-a2b0-9655-3906f7c07f3f", + "path": "z://MP4\\Let's Sing Karaoke\\Brooks, Garth - Somewhere Other Than The Night (Karaoke & Lyrics).mp4", + "title": "Somewhere Other Than The Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "George Strait", + "playlist_title": "I Cross My Heart", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "56918e08-f952-8c5d-9e6b-0b7c923dcf74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Cross My Heart - George Strait.mp4", + "title": "I Cross My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "Walkaway Joe", + "found_song": { + "artist": "Trisha Yearwood & Don Henley", + "disabled": false, + "favorite": false, + "guid": "7bdb89a8-5b46-4d29-e494-9da26072cb7c", + "path": "z://MP4\\Let's Sing Karaoke\\Yearwood, Trisha & Don Henley - Walkaway Joe (Karaoke & Lyrics).mp4", + "title": "Walkaway Joe" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Brooks", + "playlist_title": "Lost And Found", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3730cfdb-a689-62a5-f965-ccacba93ad0d", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Lost And Found.mp4", + "title": "Lost And Found" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Take It Back", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "438b0561-c140-6807-3dd4-22739af40f01", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Take It Back.mp4", + "title": "Take It Back" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Life s A Dance", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ec716a7-58de-806d-5df9-2cf590de74c8", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Life s A Dance.mp4", + "title": "Life s A Dance" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Two Sparrows In A Hurricane", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "98f385e7-131d-e0e8-9c82-dcb53ccfb990", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Sparrows in a Hurricane - Tanya Tucker.mp4", + "title": "Two Sparrows in a Hurricane" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "I m In A Hurry (And Don t Know Why)", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "56f5d759-8696-2ec2-ed15-d386cfe31a6e", + "path": "z://CDG\\Various\\Alabama - I'm In A Hurry And Don't Know Why.mp3", + "title": "I'm In A Hurry And Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Diamond Rio", + "playlist_title": "In A Week Or Two", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "16427e48-79da-fa21-4209-e7d598d8608c", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - In A Week Or Two (Karaoke & Lyrics).mp4", + "title": "In A Week Or Two" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 4, + "artist": "Hal Ketchum", + "title": "Sure Love", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Clint Black", + "title": "Burn One Down", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Tracy Lawrence", + "title": "Somebody Paints The Wall", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Travis", + "title": "Look Heart, No Hands", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lee Roy Parnell", + "title": "Love Without Mercy", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Sammy Kershaw", + "title": "Anywhere But Here", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ricky Van Shelton", + "title": "Wild Man", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Doug Stone", + "title": "Too Busy Being In Love", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Little Texas", + "title": "What Were You Thinkin", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Travis Tritt", + "title": "Can I Trust You With My Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chris LeDoux", + "title": "Cadillac Ranch", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Anderson", + "title": "Let Go Of The Stone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Wynonna", + "title": "My Strongest Weakness", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 0, + "missing_count": 13, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1992 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Wreckx-N-Effect", + "playlist_title": "Rump Shaker", + "found_song": { + "artist": "Wreckx 'N Effect", + "disabled": false, + "favorite": false, + "guid": "88c2d602-ad49-9320-8e32-4dd61ed159d1", + "path": "z://MP4\\Let's Sing Karaoke\\Wreckx 'N Effect - Rump Shaker (Karaoke & Lyrics).mp4", + "title": "Rump Shaker" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Snap", + "playlist_title": "Rhythm Is A Dancer", + "found_song": { + "artist": "Snap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "facc8ac1-2ea9-b145-817c-42c6a450df35", + "path": "z://MP4\\VocalStarKaraoke\\Snap - Rhythm Is A Dancer.mp4", + "title": "Rhythm Is A Dancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "TLC", + "playlist_title": "What About Your Friends", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "592e06e2-d164-63f8-d462-e81f30616bf2", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - TLC - What About Your Friends.mp3", + "title": "What About Your Friends" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Michael Bolton", + "playlist_title": "To Love Somebody", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "4d3909dc-b7d9-e60c-2a80-10f1cfadbfeb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Love Somebody - Michael Bolton.mp4", + "title": "To Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Deeper And Deeper", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "41be10f5-5f83-d11b-558f-af95055b3bfc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD010 - Madonna\\Madonna - Deeper And Deeper - SFG010 - 09.mp3", + "title": "Deeper And Deeper" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eric Clapton", + "playlist_title": "Layla", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb205888-a385-590a-f60f-963df1ea89ce", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eric Clapton - Layla.mp4", + "title": "Layla" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Spin Doctors", + "playlist_title": "Little Miss Can t Be Wrong", + "found_song": { + "artist": "Spin Doctors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b7de7ab-36ac-1f9d-1c2d-3e00e4640468", + "path": "z://MP4\\KaraokeOnVEVO\\Spin Doctors - Little Miss Can t Be Wrong.mp4", + "title": "Little Miss Can t Be Wrong" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Go West", + "playlist_title": "Faithful", + "found_song": { + "artist": "Go West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b323a1ed-74e5-f3e7-33ce-7d5480c88348", + "path": "z://MP4\\ZoomKaraokeOfficial\\Go West - Faithful.mp4", + "title": "Faithful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Annie Lennox", + "playlist_title": "Walking On Broken Glass", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "b771529e-8c8a-c87b-dc0d-3f91be0efcf1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Annie Lennox - Walking On Broken Glass - SF006 - 06.mp3", + "title": "Walking On Broken Glass" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Charles", + "playlist_title": "Would I Lie To You?", + "found_song": { + "artist": "Charles & Eddie", + "disabled": false, + "favorite": false, + "guid": "4c1c7663-2a8e-04d1-31d0-1bbc5498e2bf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Would I Lie To You - Charles & Eddie.mp4", + "title": "Would I Lie To You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "R.E.M.", + "playlist_title": "Drive", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d78e6fb1-7221-6de6-ea92-626842f26161", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - Drive.mp4", + "title": "Drive" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Patty Smyth", + "playlist_title": "Sometimes Love Just Ain t Enough", + "found_song": { + "artist": "Patty Smyth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "822e2cf1-ef7f-bb99-44fc-164dba5c3636", + "path": "z://MP4\\Sing King Karaoke\\Patty Smyth - Sometimes Love Just Ain t Enough.mp4", + "title": "Sometimes Love Just Ain t Enough" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "House Of Pain", + "playlist_title": "Jump Around", + "found_song": { + "artist": "House Of Pain", + "disabled": false, + "favorite": false, + "guid": "b6871e6b-8f0b-c950-9da2-9eb673e3acd9", + "path": "z://MP4\\Let's Sing Karaoke\\House Of Pain - Jump Around (Karaoke & Lyrics).mp4", + "title": "Jump Around" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "U2", + "playlist_title": "Who s Gonna Ride Your Wild Horses", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "bd80dcfd-cb58-1144-173b-15c2486bea3f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - Who's Gonna Ride Your Wild Horses - SFG009 - 13.mp3", + "title": "Who's Gonna Ride Your Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Arrested Development", + "playlist_title": "People Everyday", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f319549-3ac0-6df6-4110-84aef54fdedf", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Arrested Development - People Everyday - SFMW 865 -08.mp3", + "title": "People Everyday" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bon Jovi", + "playlist_title": "Keep The Faith", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "c4be7397-fa85-673a-b9d8-ca334b0310be", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF004\\Bon Jovi - Keep The Faith - SF004 - 04.mp3", + "title": "Keep The Faith" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "En Vogue", + "playlist_title": "Free Your Mind", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "guid": "1e5522c2-5c11-7a52-11ea-bea006cbd1fa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free Your Mind - En Vogue.mp4", + "title": "Free Your Mind" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Jon Secada", + "playlist_title": "Just Another Day", + "found_song": { + "artist": "Jon Secada", + "disabled": false, + "favorite": false, + "guid": "e95b7c10-ee2b-8e78-bff0-109d7f4d4078", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Another Day - Jon Secada.mp4", + "title": "Just Another Day" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Celine Dion", + "playlist_title": "Love Can Move Mountains", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c16b7c48-e093-4398-20f8-fd85a95bd4e7", + "path": "z://MP4\\KaraokeOnVEVO\\Celine Dion - Love Can Move Mountains.mp4", + "title": "Love Can Move Mountains" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Def Leppard", + "playlist_title": "Have You Ever Needed Someone So Bad", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "290ea997-7f18-0121-3f89-e5a828b4d833", + "path": "z://CDG\\SBI\\SBI-04\\SB18222 - Def Leppard - Have You Ever Needed Someone So Bad.mp3", + "title": "Have You Ever Needed Someone So Bad" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dan Baird", + "playlist_title": "I Love You Period", + "found_song": { + "artist": "Dan Baird", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bfe16e5-27d8-834d-f55d-c2cc2000016a", + "path": "z://MP4\\KaraokeOnVEVO\\Dan Baird - I Love You Period.mp4", + "title": "I Love You Period" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Michael Jackson", + "playlist_title": "Heal The World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "83afff40-1864-22b7-505d-d8e85258467e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heal The World - Michael Jackson.mp4", + "title": "Heal The World" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Madonna", + "playlist_title": "Erotica", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6e50d12-54c1-fccb-0a86-932e62437a94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 824\\Madonna - Erotica - SFMW 824 -01.mp3", + "title": "Erotica" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Def Leppard", + "playlist_title": "Stand Up (Kick Love Into Motion)", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5384dce-1efb-8b24-728c-e84bae3cc4d2", + "path": "z://CDG\\SBI\\SBI-01\\SB02159 - Def Leppard - Stand Up (Kick Love Into Motion).mp3", + "title": "Stand Up (Kick Love Into Motion)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Steam", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "193171f8-b557-3b62-30ce-b869c9b98bea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steam - Peter Gabriel.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Positive K", + "playlist_title": "I Got A Man", + "found_song": { + "artist": "Positive K", + "disabled": false, + "favorite": false, + "guid": "2cc07c50-4c69-b0ad-9a3e-091595c760ec", + "path": "z://CDG\\Various\\Positive K - I Got A Man.mp3", + "title": "I Got A Man" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Jade", + "playlist_title": "Don t Walk Away", + "found_song": { + "artist": "Jade", + "disabled": false, + "favorite": false, + "guid": "11daf9a4-ea95-edff-7853-928a72a507e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Walk Away - Jade.mp4", + "title": "Don t Walk Away" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Megadeth", + "playlist_title": "Symphony Of Destruction", + "found_song": { + "artist": "Megadeth", + "disabled": false, + "favorite": false, + "guid": "384942e0-36ac-a861-414a-0a156a5fe6c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Symphony Of Destruction - Megadeth.mp4", + "title": "Symphony Of Destruction" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Guns N Roses", + "playlist_title": "Yesterdays", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "22ebe8a2-e7f6-130c-7216-18c7b1c4d97c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yesterdays - Guns N Roses.mp4", + "title": "Yesterdays" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Will Always Love You (From \"The Bodyguard\")", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "f3ac1990-dfb0-c529-038a-776ed280d1df", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Always Love You (The Bodyguard) - Whitney Houston.mp4", + "title": "I Will Always Love You (The Bodyguard)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "N2Deep", + "playlist_title": "Back To The Hotel", + "found_song": { + "artist": "N2 Deep", + "disabled": false, + "favorite": false, + "guid": "da1f52a5-420e-e31d-80f5-a0a65bd6f102", + "path": "z://CDG\\Various\\N2 Deep - Back To The Hotel.mp3", + "title": "Back To The Hotel" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Arrested Development", + "playlist_title": "Mr. Wendal", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "guid": "28e5bf97-d22b-57c0-3ea7-2c501bc96e12", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Arrested Development - Mr. Wendel - SF050 - 13.mp3", + "title": "Mr. Wendel" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Chante Moore", + "playlist_title": "Love s Taken Over", + "found_song": { + "artist": "Chanté Moore", + "disabled": false, + "favorite": false, + "guid": "efa0c4a4-f3b4-1106-3e5b-c313f38e4a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love s Taken Over - Chanté Moore.mp4", + "title": "Love s Taken Over" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Shai", + "title": "If I Ever Fall In Love", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Boyz II Men", + "title": "In The Still Of The Nite (From \"The Jacksons\")", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "P.M. Dawn", + "title": "I d Die Without You (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Bobby Brown", + "title": "Good Enough", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Shanice", + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Heights", + "title": "How Do You Talk To An Angel", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Mary J. Blige", + "title": "Real Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Saigon Kick", + "title": "Love Is On The Way", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jon Secada", + "title": "Do You Believe In Us", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Boyz II Men", + "title": "End Of The Road (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mad Cobra", + "title": "Flex", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Damn Yankees", + "title": "Where You Goin Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Genesis", + "title": "Never A Time", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Elton John", + "title": "The Last Song", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Prince And The New Power Generation", + "title": "7", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Portrait", + "title": "Here We Go Again!", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Expose", + "title": "I Wish The Phone Would Ring", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Toad The Wet Sprocket", + "title": "Walk On The Ocean", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "En Vogue", + "title": "Give It Up, Turn It Loose", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lo-Key?", + "title": "I Got A Thang 4 Ya!", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Bell Biv Devoe", + "title": "Gangsta", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Peabo Bryson", + "title": "A Whole New World (Aladdin s Theme)", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "title": "It s Gonna Be A Lovely Day", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "TLC", + "title": "Baby-Baby-Baby", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "title": "Slow And Sexy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Toni Braxton", + "title": "Love Shoulda Brought You Home (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Lorenz", + "title": "Someone To Hold", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sade", + "title": "No Ordinary Love", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "After 7", + "title": "Baby I m For Real/Natural High", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Hi-Five", + "title": "Quality Time", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mary J. Blige", + "title": "Reminisce", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Shakespear s Sister", + "title": "I Don t Care", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Father M.C.", + "title": "Everything s Gonna Be Alright", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Paperboy", + "title": "Ditty", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Michael W. Smith", + "title": "I Will Be Here For You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Color Me Badd", + "title": "Forever Love (From \"Mo Money\")", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "10,000 Maniacs", + "title": "These Are Days", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "House Of Pain", + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lighter Shade Of Brown", + "title": "Homies", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Soup Dragons", + "title": "Pleasure", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Chuckii Booker", + "title": "Games", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Firehouse", + "title": "When I Look Into Your Eyes", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "George LaMond", + "title": "Baby, I Believe In You", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Goddess", + "title": "Sexual", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Classic Example", + "title": "It s Alright (From \"South Central\")", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Richard Marx", + "title": "Chains Around My Heart", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Al B. Sure!", + "title": "Right Now", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jeremy Jordan", + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Kenny G", + "title": "Forever In Love", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kris Kross", + "title": "I Missed The Bus", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Ice Cube", + "title": "Wicked", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Smart E s", + "title": "Sesame s Treet", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wynonna", + "title": "No One Else On Earth", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bad Company", + "title": "This Could Be The One", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Sound Factory", + "title": "Understand This Groove", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Billy Ray Cyrus", + "title": "Could ve Been Me", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Home Team", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Cathy Dennis", + "title": "Irresistible", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patty Smyth", + "title": "No Mistakes", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Firehouse", + "title": "Sleeping With You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "R. Kelly", + "title": "Slow Dance (Hey Mr. DJ)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Grand Puba", + "title": "360 Degrees (What Goes Around)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "CeCe Peniston", + "title": "Crazy Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "AB Logic", + "title": "Get Up (Move Boy Move)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Arrested Development", + "title": "Revolution (From \"Malcolm X\")", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Tevin Campbell", + "title": "Alone With You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 4, + "missing_count": 66, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1991 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Brooks", + "playlist_title": "My Next Broken Heart", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "4a6d02af-1cd1-8d0d-32ab-83b56de7f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Next Broken Heart - Brooks & Dunn.mp4", + "title": "My Next Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Collin Raye", + "playlist_title": "Love, Me", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "guid": "c70bc872-45e9-c64c-b5cf-b472bc1a8fa3", + "path": "z://CDG\\Various\\Collin Raye - Love Me.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Restless Heart", + "playlist_title": "You Can Depend On Me", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "guid": "8a378155-4c63-4fc8-bd25-3f4a0a0c3f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - You Can Depend On Me (Karaoke).mp4", + "title": "You Can Depend On Me" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Vince Gill", + "playlist_title": "Look At Us", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "e81fad00-71d2-2b2c-e444-4e79c40a9e84", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Look At Us (Karaoke).mp4", + "title": "Look At Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "(Without You) What Do I Do With Me", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36f5a79-c851-a9e1-df13-068cf988efe4", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - (Without You What Do I Do With Me.mp4", + "title": "(Without You) What Do I Do With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "Shameless", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "979533e8-fc8b-422f-a3b6-962ee6f397db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shameless - Garth Brooks.mp4", + "title": "Shameless" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Alabama", + "playlist_title": "Then Again", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "cdab64af-a1ca-0b47-b9c8-3dee782bac4e", + "path": "z://CDG\\Various\\Alabama - Then Again.mp3", + "title": "Then Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Travis Tritt", + "playlist_title": "Anymore", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "guid": "8fad3c15-e706-e2c4-3f08-b3be156e9a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anymore - Travis Tritt.mp4", + "title": "Anymore" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "George Strait", + "playlist_title": "The Chill Of An Early Fall", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "0f761362-7a83-18b5-c06a-0b080f9a1dc7", + "path": "z://CDG\\Various\\George Strait - Chill Of An Early Fall.mp3", + "title": "Chill Of An Early Fall" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Randy Travis", + "playlist_title": "Forever Together", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "guid": "fe19bbe6-bf82-59f9-d08a-9ee5d3dbcb0f", + "path": "z://CDG\\Various\\Randy Travis - Forever Together.mp3", + "title": "Forever Together" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba McEntire", + "title": "For My Broken Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Steve Wariner", + "title": "Leave Him Out Of This", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Billy Dean", + "title": "You Don t Count The Cost", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Tracy Lawrence", + "title": "Sticks And Stones", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Sammy Kershaw", + "title": "Cadillac Style", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Little Texas", + "title": "Some Guys Have All The Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Remingtons", + "title": "A Long Time Ago", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doug Stone", + "title": "A Jukebox With A Country Song", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mary Chapin Carpenter", + "title": "Going Out Tonight", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Hal Ketchum", + "title": "I Know Where Love Lives", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sawyer Brown", + "title": "The Dirt Road", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Suzy Bogguss", + "title": "Someday Soon", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mark Chesnutt", + "title": "Broken Promise Land", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Travis Tritt With Marty Stuart", + "title": "The Whiskey Ain t Workin", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rob Crosby", + "title": "Still Burnin For You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1991 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Michael Jackson", + "playlist_title": "Black Or White", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "4e301e2b-81ed-c936-5f9d-cd6432a451e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Or White - Michael Jackson.mp4", + "title": "Black Or White" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Boyz II Men", + "playlist_title": "It s So Hard To Say Goodbye To Yesterday", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "b3b65daf-f7cb-7ac6-2297-f3368992b7c5", + "path": "z://MP4\\KaraFun Karaoke\\It's So Hard To Say Goodbye To Yesterday - Boyz II Men Karaoke Version KaraFun.mp4", + "title": "It's So Hard To Say Goodbye To Yesterday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Michael Bolton", + "playlist_title": "When A Man Loves A Woman", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "6b24303a-3ec2-bff5-e565-c5229a53c661", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Man Loves A Woman - Michael Bolton.mp4", + "title": "When A Man Loves A Woman" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Can t Let Go", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f8b2222d-9f7a-fd8f-54df-43d07d5ad022", + "path": "z://CDG\\Various\\Mariah Carey - Can't Let Go.mp3", + "title": "Can't Let Go" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Paula Abdul", + "playlist_title": "Blowing Kisses In The Wind", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09f25902-a9ed-f29f-2a8a-0994c2b475ec", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Blowing Kisses In The Wind.mp4", + "title": "Blowing Kisses In The Wind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "CeCe Peniston", + "playlist_title": "Finally", + "found_song": { + "artist": "CeCe Peniston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67a82eed-0009-8ffc-bce6-052fc3bcc71d", + "path": "z://MP4\\KaraokeOnVEVO\\CeCe Peniston - Finally.mp4", + "title": "Finally" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Richard Marx", + "playlist_title": "Keep Coming Back", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "guid": "6604820d-42a6-d56d-d7e5-a49b8425e7d0", + "path": "z://CDG\\Various\\Richard Marx - Keep Coming Back.mp3", + "title": "Keep Coming Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "No Son Of Mine", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "531f696c-bebe-ae1d-b81a-cd9a67adbaf3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - No Son Of Mine.mp4", + "title": "No Son Of Mine" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Naughty By Nature", + "playlist_title": "O.P.P.", + "found_song": { + "artist": "Naughty By Nature", + "disabled": false, + "favorite": false, + "guid": "85c4be82-9d0f-b08f-a38d-245b80b85d8b", + "path": "z://MP4\\Let's Sing Karaoke\\Naughty By Nature - O.P.P (Karaoke & Lyrics).mp4", + "title": "O.P.P" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Let s Talk About Sex", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87f50625-5f4b-3b08-58bc-685816430d31", + "path": "z://MP4\\ZoomKaraokeOfficial\\Salt n Pepa - Lets Talk About Sex.mp4", + "title": "Let's Talk About Sex" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Nirvana", + "playlist_title": "Smells Like Teen Spirit", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "acc840f4-07cb-8e99-9f54-c922c493d6d3", + "path": "z://MP4\\Sing King Karaoke\\Nirvana - Smells Like Teen Spirit (Karaoke Version).mp4", + "title": "Smells Like Teen Spirit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Guns N Roses", + "playlist_title": "Don t Cry", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "87c6dfee-f4a6-f9c2-e5f0-cc606fdce00c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Cry - Guns N Roses.mp4", + "title": "Don t Cry" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bryan Adams", + "playlist_title": "Can t Stop This Thing We Started", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "686df297-f16c-7f93-fded-adfbe4a0429f", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams - Can't Stop This Thing We Started (Karaoke).mp4", + "title": "Can't Stop This Thing We Started" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Shanice", + "playlist_title": "I Love Your Smile", + "found_song": { + "artist": "Shanice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27c630b2-9cd5-da86-05eb-d9d224885750", + "path": "z://MP4\\ZoomKaraokeOfficial\\Shanice - I Love Your Smile.mp4", + "title": "I Love Your Smile" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "U2", + "playlist_title": "Mysterious Ways", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a6ba09d-dce4-12e6-1e87-65ccae7cc08c", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Mysterious Ways.mp4", + "title": "Mysterious Ways" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jodeci", + "playlist_title": "Forever My Lady", + "found_song": { + "artist": "Jodeci", + "disabled": false, + "favorite": false, + "guid": "c26ea9f7-ba97-107b-f50a-a5cadd49aac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Forever My Lady - Jodeci.mp4", + "title": "Forever My Lady" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lisa Stansfield", + "playlist_title": "Change", + "found_song": { + "artist": "Lisa Stansfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329f88d1-0583-05fe-eafc-2f3b3a38e516", + "path": "z://MP4\\KaraokeOnVEVO\\Lisa Stansfield - Change.mp4", + "title": "Change" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Roxette", + "playlist_title": "Spending My Time", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "guid": "a189317a-b84c-c848-3a99-674164acc76a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spending My Time - Roxette.mp4", + "title": "Spending My Time" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Mariah Carey", + "playlist_title": "Emotions", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "ff6aed0f-7ec2-01d5-e520-c272cb5ff280", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Emotions - Mariah Carey.mp4", + "title": "Emotions" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Keith Sweat", + "playlist_title": "Keep It Comin", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "0e9cf55f-32c0-3eb2-0b7c-8796e0c650bf", + "path": "z://MP4\\Let's Sing Karaoke\\Sweat, Keith - Keep It Comin' (Karaoke & Lyrics).mp4", + "title": "Keep It Comin'" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Motley Crue", + "playlist_title": "Home Sweet Home", + "found_song": { + "artist": "Motley Crue", + "disabled": false, + "favorite": false, + "guid": "61b1d137-e467-e8e2-a419-a5494db61450", + "path": "z://MP4\\KtvEntertainment\\Motley Crue - Home Sweet Home Karaoke Lyrics.mp4", + "title": "Home Sweet Home" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Curtis Stigers", + "playlist_title": "I Wonder Why", + "found_song": { + "artist": "Curtis Stigers", + "disabled": false, + "favorite": false, + "guid": "e5347889-a083-bee8-c176-0c9b398703cf", + "path": "z://MP4\\KaraFun Karaoke\\I Wonder Why - Curtis Stigers Karaoke Version KaraFun.mp4", + "title": "I Wonder Why" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Metallica", + "playlist_title": "Enter Sandman", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "97a2ae64-b529-b42f-47fc-8de58b7d4932", + "path": "z://MP4\\Sing King Karaoke\\Metallica - Enter Sandman (Karaoke Version).mp4", + "title": "Enter Sandman" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Kym Sims", + "playlist_title": "Too Blind To See It", + "found_song": { + "artist": "Kym Sims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e890ba5b-cd1c-c186-3cda-1a72f8b19d1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 837\\Kym Sims - Too Blind To See It - SFMW 837 -02.mp3", + "title": "Too Blind To See It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Metallica", + "playlist_title": "The Unforgiven", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "7eb0cde4-545c-1166-86d1-60905de6d2dc", + "path": "z://MP4\\KaraFun Karaoke\\The Unforgiven - Metallica Karaoke Version KaraFun.mp4", + "title": "The Unforgiven" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bonnie Raitt", + "playlist_title": "I Can t Make You Love Me", + "found_song": { + "artist": "Bonnie Raitt", + "disabled": false, + "favorite": false, + "guid": "2ee5f490-acc2-4ff1-fdd3-cf735b03f2a7", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Raitt - I Can't Make You Love Me (Karaoke Version).mp4", + "title": "I Can't Make You Love Me" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Right Said Fred", + "playlist_title": "I m Too Sexy", + "found_song": { + "artist": "Right Said Fred", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edafdc0d-d957-025e-4a62-0332a79d4eef", + "path": "z://MP4\\KaraokeOnVEVO\\Right Said Fred - I m Too Sexy.mp4", + "title": "I m Too Sexy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Mr. Big", + "playlist_title": "To Be With You", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "7239c35f-70f0-47ec-892a-839d36dccea5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be With You - Mr. Big.mp4", + "title": "To Be With You" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Jesus Jones", + "playlist_title": "Real Real Real", + "found_song": { + "artist": "Jesus Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a868484-036b-1f4b-549c-939d0211163f", + "path": "z://MP4\\KaraokeOnVEVO\\Jesus Jones - Real Real Real.mp4", + "title": "Real Real Real" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Give It Away", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "e49b0343-7cb3-283b-9e13-9721a1ccb37c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Away - Red Hot Chili Peppers.mp4", + "title": "Give It Away" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "UB40", + "playlist_title": "Groovin", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "496543d8-c2b4-89bc-4739-ff1311ec7a74", + "path": "z://MP4\\ZoomKaraokeOfficial\\UB40 - Groovin.mp4", + "title": "Groovin'" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "P.M. Dawn", + "playlist_title": "Set Adrift On Memory Bliss", + "found_song": { + "artist": "PM Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ea2f5cd0-8c61-f722-db78-d96006cb10e3", + "path": "z://MP4\\ZoomKaraokeOfficial\\PM Dawn - Set Adrift On Memory Bliss.mp4", + "title": "Set Adrift On Memory Bliss" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "George Michael/Elton John", + "playlist_title": "Don t Let The Sun Go Down On Me", + "found_song": { + "artist": "George Michael & Elton John", + "disabled": false, + "favorite": false, + "guid": "15a17820-f6f0-d83b-e542-c52a84305191", + "path": "z://CDG\\Various\\George Michael & Elton John - Don't Let The Sun Go Down On Me.mp3", + "title": "Don't Let The Sun Go Down On Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "M.C. Hammer", + "playlist_title": "Addams Groove", + "found_song": { + "artist": "MC Hammer", + "disabled": false, + "favorite": false, + "guid": "ab0352d1-15e0-a630-8fc8-3459c5a33487", + "path": "z://MP4\\KaraFun Karaoke\\Addams Groove - MC Hammer Karaoke Version KaraFun.mp4", + "title": "Addams Groove" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Scorpions", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "The Scorpions", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3bc15e6-8168-0504-beb1-4bdfc4b62cc5", + "path": "z://MP4\\KaraokeOnVEVO\\Scorpions - Send Me An Angel.mp4", + "title": "Send Me An Angel" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Color Me Badd", + "title": "All 4 Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "M.C. Hammer", + "title": "2 Legit 2 Quit", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Marky Mark", + "title": "Wildside", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Amy Grant", + "title": "That s What Love Is For", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Prince And The N.P.G.", + "title": "Cream", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gloria Estefan", + "title": "Live For Loving You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Roberta Flack With Maxi Priest", + "title": "Set The Night To Music", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rod Stewart", + "title": "Broken Arrow", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Natural Selection", + "title": "Do Anything", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Karyn White", + "title": "Romantic", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Prince And The N.P.G.", + "title": "Diamonds And Pearls", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tevin Campbell", + "title": "Tell Me What You Want Me To Do", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nia Peeples", + "title": "Street Of Dreams", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Karyn White", + "title": "The Way I Feel About You", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stacy Earl", + "title": "Love Me All Up", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Angelica", + "title": "Angel Baby", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Geto Boys", + "title": "Mind Playing Tricks On Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Cher", + "title": "Save Up All Your Tears", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Tracie Spencer", + "title": "Tender Kisses", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Vanessa Williams", + "title": "Running Back To You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Storm", + "title": "I ve Got A Lot To Learn About Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Van Halen", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Shabba Ranks/Maxi Priest", + "title": "Housecall", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Heavy D", + "title": "Is It Good To You", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "D.J. Jazzy Jeff", + "title": "Ring My Bell", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Lita Ford", + "title": "Shot Of Poison", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Party", + "title": "In My Dreams", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Public Enemy", + "title": "Can t Truss It", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Natural Selection", + "title": "Hearts Don t Think (They Feel)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Firehouse", + "title": "All She Wrote", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Icy Blu", + "title": "I Wanna Be Your Girl", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kid N Play", + "title": "Ain t Gonna Hurt Nobody", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Lighter Shade Of Brown", + "title": "On A Sunday Afternoon", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Digital Underground", + "title": "Kiss You Back", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "C+C Music Factory Presents Zelma Davis", + "title": "Just A Touch Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The Farm", + "title": "Groovy Train", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lisette Melendez", + "title": "A Day In My Life (Without You)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "M.C. Breed", + "title": "Ain t No Future In Yo Fronting", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Vanessa Williams", + "title": "The Comfort Zone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jody Watley", + "title": "I Want You", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The 2 Live Crew", + "title": "Pop That Coochie", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Ozzy Osbourne", + "title": "No More Tears", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Corina", + "title": "Whispers", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Atlantic Starr", + "title": "Love Crazy", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Laissez Faire", + "title": "In Paradise", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Voyce", + "title": "Within My Heart", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Boyz II Men", + "title": "Uhh Ahh", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "John Mellencamp", + "title": "Get A Leg Up", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tone-Loc", + "title": "All Through The Night", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kenny Loggins", + "title": "Conviction Of The Heart", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Big Audio", + "title": "Rush", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Eddie Money", + "title": "I ll Get By", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bette Midler", + "title": "Every Road Leads Back To You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bryan Adams", + "title": "There Will Never Be Another Tonight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Prince And The N.P.G.", + "title": "Insatiable", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Shamen", + "title": "Move Any Mountain", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Damian Dame", + "title": "Right Down To It", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "U2", + "title": "The Fly", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The KLF", + "title": "What Time Is Love?", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Simply Red", + "title": "Something Got Me Started", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Guns N Roses", + "title": "Live And Let Die", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Cathy Dennis", + "title": "Everybody Move", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Hi-Five", + "title": "Just Another Girlfriend", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "EMF", + "title": "Lies", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Blue Train", + "title": "All I Need Is You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 4, + "missing_count": 65, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1990 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "I ve Come To Expect It From You", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7171ebad-890c-1e5c-ac25-6b3a83c8bedc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I ve Come To Expect It From You.mp4", + "title": "I ve Come To Expect It From You" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Garth Brooks", + "playlist_title": "Unanswered Prayers", + "found_song": { + "artist": "Garth-Brooks", + "disabled": false, + "favorite": false, + "guid": "85d9afa3-4463-457c-5ed2-f71602529edb", + "path": "z://MP4\\Garth-Brooks - Unanswered Prayers.mp4", + "title": "Unanswered Prayers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vince Gill", + "playlist_title": "Never Knew Lonely", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7338b4f0-b537-ab01-3640-f93d79798e5f", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Never Knew Lonely.mp4", + "title": "Never Knew Lonely" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alan Jackson", + "playlist_title": "Chasin That Neon Rainbow", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "1f4d757b-ec54-88fd-f03d-41da67d548bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chasin That Neon Rainbow - Alan Jackson.mp4", + "title": "Chasin That Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Clint Black", + "playlist_title": "Put Yourself In My Shoes", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b54e0f62-c936-0492-0916-1d70204dcf07", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Put Yourself In My Shoes.mp4", + "title": "Put Yourself In My Shoes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alabama", + "playlist_title": "Forever s As Far As I ll Go", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7331ad34-7684-60cc-0cc7-4be3d96dc6a8", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Forever s As Far As I ll Go.mp4", + "title": "Forever s As Far As I ll Go" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "Crazy In Love", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23aaeedd-5628-5f88-240d-a284024ff0eb", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Crazy In Love.mp4", + "title": "Crazy In Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carlene Carter", + "playlist_title": "Come On Back", + "found_song": { + "artist": "Carlene Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de1c080a-408e-eb85-3eaf-5927177c2791", + "path": "z://MP4\\KaraokeOnVEVO\\Carlene Carter - Come On Back.mp4", + "title": "Come On Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Rumor Has It", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67ef65ba-e1f1-d297-283a-2d1a4d551b84", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Rumor Has It.mp4", + "title": "Rumor Has It" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paul Overstreet", + "playlist_title": "Daddy s Come Around", + "found_song": { + "artist": "Paul Overstreet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ffff8c62-b0b5-3c0d-a159-33c03eedc4e1", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Overstreet - Daddy s Come Around.mp4", + "title": "Daddy s Come Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kathy Mattea", + "playlist_title": "A Few Good Things Remain", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efc0c893-ac6b-c34d-42a6-48f5036867a5", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - A Few Good Things Remain.mp4", + "title": "A Few Good Things Remain" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Turn It On, Turn It Up, Turn Me Loose", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "da1650dd-17cd-c70a-693d-77c02a9eea3d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turn It On, Turn It Up, Turn Me Loose - Dwight Yoakam.mp4", + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mary Chapin Carpenter", + "playlist_title": "You Win Again", + "found_song": { + "artist": "Mary Chapin Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de29ae80-7768-60c6-2281-43c68f98af22", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Chapin Carpenter - You Win Again.mp4", + "title": "You Win Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "Brother Jukebox", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9a38dce4-0a1a-8410-aa38-089a4cfedc98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brother Jukebox - Mark Chesnutt.mp4", + "title": "Brother Jukebox" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Joe Diffie", + "playlist_title": "Home", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16b97bca-38eb-c147-549e-5c60fab53c52", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Diffie - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Doug Stone", + "playlist_title": "These Lips Don t Know How To Say Goodbye", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b6f266d-8466-8d58-43ce-bf013b52aad7", + "path": "z://MP4\\KaraokeOnVEVO\\Doug Stone - These Lips Don t Know How To Say Goodbye.mp4", + "title": "These Lips Don t Know How To Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lee Greenwood", + "playlist_title": "We ve Got It Made", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40750c64-ccfe-efa6-bbbf-f9bf4d03faa3", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - We ve Got It Made.mp4", + "title": "We ve Got It Made" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 5, + "artist": "Shenandoah", + "title": "Ghost In This House", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ricky Van Shelton", + "title": "Life s Little Ups And Downs", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "K.T. Oslin", + "title": "Come Next Monday", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tanya Tucker", + "title": "It Won t Be Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Don Williams", + "title": "Back In My Younger Days", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Holly Dunn", + "title": "You Really Had Me Going", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rodney Crowell", + "title": "Now That We re Alone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Highway 101", + "title": "Someone Else s Trouble Now", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1990 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Madonna", + "playlist_title": "Justify My Love", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "027a9080-c23c-4af1-49fd-ebdf02ca6a1d", + "path": "z://CDG\\Various\\Madonna - Justify My Love.mp3", + "title": "Justify My Love" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bette Midler", + "playlist_title": "From A Distance", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "971de806-b070-b373-30ce-fc3defc13194", + "path": "z://MP4\\Sing King Karaoke\\Bette Midler - From A Distance.mp4", + "title": "From A Distance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Damn Yankees", + "playlist_title": "High Enough", + "found_song": { + "artist": "Damn Yankees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1fea1177-67b3-0780-245e-d14ab7ab9d6d", + "path": "z://MP4\\KaraokeOnVEVO\\Damn Yankees - High Enough.mp4", + "title": "High Enough" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Whitney Houston", + "playlist_title": "I m Your Baby Tonight", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "969aea33-8b24-da72-42ca-b042d429c1a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Your Baby Tonight - Whitney Houston.mp4", + "title": "I m Your Baby Tonight" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "George Michael", + "playlist_title": "Freedom", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "a2751f93-c22f-3774-7f92-07fca42db542", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Freedom! (Karaoke Version).mp4", + "title": "Freedom!" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "UB40", + "playlist_title": "The Way You Do The Things You Do", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "f97c55d2-758f-ae52-5eb7-e12f0c13b8a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way You Do The Things You Do - UB40.mp4", + "title": "The Way You Do The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Janet Jackson", + "playlist_title": "Love Will Never Do (Without You)", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "251b34a9-44d2-8773-8553-047b7e1da66f", + "path": "z://MP4\\TheKARAOKEChannel\\Love Will Never Do (Without You) in the Style of Janet Jackson with lyrics (no lead vocal).mp4", + "title": "Love Will Never Do (Without You)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Poison", + "playlist_title": "Something To Believe In", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78fefc5e-1ce9-20df-e7ec-70b3fc95b711", + "path": "z://MP4\\KaraokeOnVEVO\\Poison - Something To Believe In.mp4", + "title": "Something To Believe In" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "Love Takes Time", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "351212cb-054f-e1be-c23d-e2a93c6df695", + "path": "z://CDG\\Various\\Mariah Carey - Love Takes Time.mp3", + "title": "Love Takes Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Deee-Lite", + "playlist_title": "Groove Is In The Heart", + "found_song": { + "artist": "Deee-Lite", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9947fed-be89-b209-24bb-e15de90d1150", + "path": "z://MP4\\ZoomKaraokeOfficial\\Deee-Lite - Groove Is In The Heart.mp4", + "title": "Groove Is In The Heart" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Winger", + "playlist_title": "Miles Away", + "found_song": { + "artist": "Winger", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0b8442-d996-b273-6e79-3a2ab336ca71", + "path": "z://MP4\\KaraokeOnVEVO\\Winger - Miles Away.mp4", + "title": "Miles Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "C+C Music Factory", + "playlist_title": "Gonna Make You Sweat", + "found_song": { + "artist": "C+C Music Factory", + "disabled": false, + "favorite": false, + "guid": "98203f13-37df-0c6a-9023-ac84ea2a1f67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gonna Make You Sweat - C+C Music Factory.mp4", + "title": "Gonna Make You Sweat" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tony Toni Tone", + "playlist_title": "Feels Good", + "found_song": { + "artist": "Tony! Toni! Tone!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fc77353-14b6-c1e1-a746-6547cdbbceed", + "path": "z://MP4\\KaraokeOnVEVO\\Tony Toni Tone - Feels Good.mp4", + "title": "Feels Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cathy Dennis", + "playlist_title": "Just Another Dream", + "found_song": { + "artist": "Cathy Dennis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73a19ec-d659-e99f-f1be-2b2e290ffa6e", + "path": "z://MP4\\KaraokeOnVEVO\\Cathy Dennis - Just Another Dream.mp4", + "title": "Just Another Dream" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Heart", + "playlist_title": "Stranded", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "a4f68878-b6b2-04f4-82c9-6c86c3848781", + "path": "z://CDG\\Various\\Heart - Stranded.mp3", + "title": "Stranded" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Vanilla Ice", + "playlist_title": "Ice Ice Baby", + "found_song": { + "artist": "Vanilla Ice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13790e7e-e1df-0c18-73b9-ab8afb3f33cc", + "path": "z://MP4\\Sing King Karaoke\\Vanilla Ice - Ice Ice Baby.mp4", + "title": "Ice Ice Baby" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Keith Sweat", + "playlist_title": "I ll Give All My Love To You", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "838309b4-f814-6852-5aec-cf023efac09e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Give All My Love To You - Keith Sweat.mp4", + "title": "I ll Give All My Love To You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "INXS", + "playlist_title": "Disappear", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "0e411e68-daed-393b-6afd-8e8b75fa7289", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Disappear - INXS.mp4", + "title": "Disappear" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Don Henley", + "playlist_title": "New York Minute", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e26ca3ad-9f89-fdbe-c0ba-d299cbedc74b", + "path": "z://CDG\\Various\\Don Henley - New York Minute.mp3", + "title": "New York Minute" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Cher", + "playlist_title": "The Shoop Shoop Song (It s In His Kiss)", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ae96369d-b0cf-a310-0795-673f8a6dd273", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Shoop Shoop Song (It s In His Kiss) - Cher.mp4", + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Black Crowes", + "playlist_title": "Hard To Handle", + "found_song": { + "artist": "The Black Crowes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af840a87-8f6d-ebb2-f103-53532ea5e605", + "path": "z://MP4\\KaraokeOnVEVO\\The Black Crowes - Hard To Handle.mp4", + "title": "Hard To Handle" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Celine Dion", + "playlist_title": "Where Does My Heart Beat Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "0b2bf51a-d9a8-5d69-47d9-7401c1133a01", + "path": "z://CDG\\Various\\Celine Dion - Where Does My Heart Beat Now.mp3", + "title": "Where Does My Heart Beat Now" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Depeche Mode", + "playlist_title": "World In My Eyes", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71d9f2ad-d5e7-16c8-fe95-b62ed71e0ea2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 851\\Depeche Mode - World In My Eyes - SFMW 851-09.mp3", + "title": "World In My Eyes" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Whitney Houston", + "playlist_title": "All The Man That I Need", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "2f74e069-a0e7-4c1c-c9e5-1c8d22d89cbc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Man That I Need - Whitney Houston.mp4", + "title": "All The Man That I Need" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Pebbles", + "playlist_title": "Love Makes Things Happen", + "found_song": { + "artist": "Pebbles & Babyface", + "disabled": false, + "favorite": false, + "guid": "05597459-80e6-33e2-09e0-0896d77372c5", + "path": "z://MP4\\Let's Sing Karaoke\\Pebbles & Babyface - Love Makes Things Happen (Karaoke & Lyrics).mp4", + "title": "Love Makes Things Happen" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "James Ingram", + "playlist_title": "I Don t Have The Heart", + "found_song": { + "artist": "James Ingram", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e5a6ef5-164c-33b6-449a-349ad4d43237", + "path": "z://MP4\\Sing King Karaoke\\James Ingram - I Don t Have The Heart.mp4", + "title": "I Don t Have The Heart" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Chris Isaak", + "playlist_title": "Wicked Game", + "found_song": { + "artist": "Chris Isaak", + "disabled": false, + "favorite": false, + "guid": "8f5ca710-d98d-e0da-db14-012c7c7297ea", + "path": "z://MP4\\KtvEntertainment\\Chris Isaak - Wicked Game (Karaoke without Vocal).mp4", + "title": "Wicked Game" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Trixter", + "playlist_title": "Give It To Me Good", + "found_song": { + "artist": "Trixter", + "disabled": false, + "favorite": false, + "guid": "9079e6bb-ae71-9036-c044-886ceac3ff1f", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Trixter - Give It To Me Good (Karaoke).mp4", + "title": "Give It To Me Good" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Styx", + "playlist_title": "Show Me The Way", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "76b5e4bf-8b57-e722-bf19-18649764966a", + "path": "z://CDG\\Various\\Styx - Show Me The Way.mp3", + "title": "Show Me The Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Maxi Priest", + "playlist_title": "Just A Little Bit Longer", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc070b88-692a-92a0-1e40-3351ef55c415", + "path": "z://MP4\\ZoomKaraokeOfficial\\Maxi Priest - Just A Little Bit Longer.mp4", + "title": "Just A Little Bit Longer" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Oleta Adams", + "playlist_title": "Get Here", + "found_song": { + "artist": "Oleta Adams", + "disabled": false, + "favorite": false, + "guid": "091c8094-150b-91f9-50d7-61b3fe788e46", + "path": "z://MP4\\Sing King Karaoke\\Oleta Adams - Get Here (Karaoke Version).mp4", + "title": "Get Here" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Billy Joel", + "playlist_title": "And So It Goes", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89e13044-84d2-deb1-eff3-2ad65f2efb29", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - And So It Goes.mp4", + "title": "And So It Goes" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Warrant", + "playlist_title": "Cherry Pie", + "found_song": { + "artist": "Warrant", + "disabled": false, + "favorite": false, + "guid": "4a14271c-2e7b-a663-7e26-09713db0fa4f", + "path": "z://MP4\\Sing King Karaoke\\Warrant - Cherry Pie (Karaoke Version).mp4", + "title": "Cherry Pie" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Janet Jackson", + "playlist_title": "Black Cat", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22d3eb8a-8dee-5998-9c56-8d925e0777ec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Janet Jackson - Black Cat - SFMW 833 -03.mp3", + "title": "Black Cat" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Phil Collins", + "playlist_title": "Something Happened On The Way To Heaven", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46580e8c-6842-1216-71ca-9375e5626e65", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Something Happened On The Way To Heaven.mp4", + "title": "Something Happened On The Way To Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 54, + "playlist_artist": "Soho", + "playlist_title": "Hippychick", + "found_song": { + "artist": "Soho", + "disabled": false, + "favorite": false, + "guid": "51749412-32a6-3304-0897-736eadbb7d50", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 877\\Soho - Hippy Chick - SFMW877 - 06.mp3", + "title": "Hippy Chick" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "AC/DC", + "playlist_title": "Moneytalks", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "d9e7b6cd-416d-a36b-38ea-c3f76291586c", + "path": "z://MP4\\Let's Sing Karaoke\\Ac-Dc - Moneytalks (Karaoke & Lyrics).mp4", + "title": "Moneytalks" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paul Simon", + "playlist_title": "The Obvious Child", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "8a5a1cad-2c8f-e8c7-3c56-cdda2599601b", + "path": "z://CDG\\Various\\Paul Simon - Obvious Child.mp3", + "title": "Obvious Child" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Nelson", + "playlist_title": "(Can t Live Without Your) Love And Affection", + "found_song": { + "artist": "Nelson", + "disabled": false, + "favorite": false, + "guid": "2174d830-407e-e804-6600-31cf763d656b", + "path": "z://CDG\\Various\\Nelson - Can T Live Without Your Love An.mp3", + "title": "Can T Live Without Your Love An" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Stevie B", + "title": "Because I Love You (The Postman Song)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Wilson Phillips", + "title": "Impulsive", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "DNA Featuring Suzanne Vega", + "title": "Tom s Diner", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ralph Tresvant", + "title": "Sensitivity", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jon Bon Jovi", + "title": "Miracle (From \"Young Guns II\")", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Surface", + "title": "The First Time", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Steve Winwood", + "title": "One And Only Man", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2 In A Room", + "title": "Wiggle It", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Nelson", + "title": "After The Rain", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Vanilla Ice", + "title": "Play That Funky Music", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Will To Power", + "title": "I m Not In Love", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Outfield", + "title": "For You", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Phil Collins", + "title": "Hang In Long Enough", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Alias", + "title": "More Than Words Can Say", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Elisa Fiorillo", + "title": "On The Way Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Gill", + "title": "Fairweather Friend", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Debbie Gibson", + "title": "Anything Is Possible", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Robert Palmer", + "title": "You re Amazing", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Dino", + "title": "Gentle", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Donny Osmond", + "title": "My Love Is A Fire", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Candyman", + "title": "Knockin Boots", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "LL Cool J", + "title": "Around The Way Girl", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Daryl Hall John Oates", + "title": "So Close", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Breathe Featuring David Glasper", + "title": "Does She Love That Man?", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Too Short", + "title": "The Ghetto", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Elton John", + "title": "You Gotta Love Someone", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Warrant", + "title": "I Saw Red", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "M.C. Hammer", + "title": "Pray", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bad Company", + "title": "If You Needed Somebody", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bell Biv Devoe", + "title": "B.B.D. (I Thought It Was Me)?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "George LaMond (Duet With Brenda K. Starr)", + "title": "No Matter What", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Iggy Pop With Kate Pierson", + "title": "Candy", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "After 7", + "title": "Heat Of The Moment", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Maxi Priest", + "title": "Close To You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Guy", + "title": "I Wanna Get With U", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tony Toni Tone", + "title": "It Never Rains (In Southern California)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Cinderella", + "title": "Shelter Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Black Box", + "title": "I Don t Know Anybody Else", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "After 7", + "title": "Can t Stop", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Joey B. Ellis", + "title": "Go For It! (Heart And Fire)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jude Cole", + "title": "House Full Of Reasons", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Information Society", + "title": "Think", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Tevin Campbell", + "title": "Round And Round", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pebbles", + "title": "Giving You The Benefit", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Urban Dance Squad", + "title": "Deeper Shade Of Soul", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "TKA Featuring Michelle Visage", + "title": "Crash (Have Some Fun)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Concrete Blonde", + "title": "Joey", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Pat", + "title": "Use It Up And Wear It Out", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Candyman", + "title": "Melt In Your Mouth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "2nu", + "title": "This Is Ponderous", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "David Cassidy", + "title": "Lyin To Myself", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Al B. Sure!", + "title": "Missunderstanding", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Tracie Spencer", + "title": "This House", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Notorious", + "title": "The Swalk", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Party", + "title": "I Found Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Timmy T.", + "title": "One More Try", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Cheap Trick", + "title": "Wherever Would I Be", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Slaughter", + "title": "Spend My Life", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Special Generation", + "title": "Love Me Just For Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 4, + "missing_count": 59, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1989 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Highway 101", + "playlist_title": "Who s Lonely Now", + "found_song": { + "artist": "Highway 101", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d063d77-8486-1553-0917-d32b286d8eae", + "path": "z://MP4\\KaraokeOnVEVO\\Highway 101 - Who s Lonely Now.mp4", + "title": "Who s Lonely Now" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lorrie Morgan", + "playlist_title": "Out Of Your Shoes", + "found_song": { + "artist": "Lorrie Morgan", + "disabled": false, + "favorite": false, + "guid": "86630e60-6858-3f31-7ee1-5e7f9e5b20ef", + "path": "z://MP4\\KaraokeOnVEVO\\Lorrie Morgan - Out Of Your Shoes (Karaoke).mp4", + "title": "Out Of Your Shoes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Keith Whitley", + "playlist_title": "It Ain t Nothin", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463ab131-3c82-65b6-1fd3-849e6246d0a1", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - It Ain t Nothin.mp4", + "title": "It Ain t Nothin" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "My Arms Stay Open All Night", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8971e0d-81db-a24e-2a2a-0000b7a78136", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - My Arms Stay Open All Night.mp4", + "title": "My Arms Stay Open All Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Clint Black", + "playlist_title": "Nobody s Home", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04e7d09c-155b-490b-3b48-b602609a0381", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Nobody s Home.mp4", + "title": "Nobody s Home" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "A Woman In Love", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9c0f048-2710-8ecc-c088-f50ba68e4d81", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - A Woman In Love.mp4", + "title": "A Woman In Love" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Judds", + "playlist_title": "One Man Woman", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "54853e74-6b41-552a-63cd-80af084d17c8", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - One Man Woman (Karaoke).mp4", + "title": "One Man Woman" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kathy Mattea", + "playlist_title": "Where ve You Been", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534dd446-c533-362c-5e75-26e3a873dd80", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - Where ve You Been.mp4", + "title": "Where ve You Been" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Alabama", + "playlist_title": "Southern Star", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce2a832e-dc0d-f144-0aac-e073dfd2a840", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Southern Star.mp4", + "title": "Southern Star" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Holly Dunn", + "playlist_title": "There Goes My Heart Again", + "found_song": { + "artist": "Holly Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab97c128-e58d-c8eb-7efb-c26891ce2ac5", + "path": "z://MP4\\KaraokeOnVEVO\\Holly Dunn - There Goes My Heart Again.mp4", + "title": "There Goes My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "George Strait", + "playlist_title": "Overnight Success", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24cd4634-1252-4f6c-a97d-a9154c2a1c1e", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Overnight Success.mp4", + "title": "Overnight Success" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "The Charlie Daniels Band", + "playlist_title": "Simple Man", + "found_song": { + "artist": "The Charlie Daniels Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f59da77-18d5-d21a-018f-928cd5679075", + "path": "z://MP4\\KaraokeOnVEVO\\The Charlie Daniels Band - Simple Man.mp4", + "title": "Simple Man" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Shenandoah", + "playlist_title": "Two Dozen Roses", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "93afc720-61d0-98b3-76dc-171b538f5865", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - Two Dozen Roses.mp4", + "title": "Two Dozen Roses" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Billy Joe Royal", + "title": "Till I Can t Take It Anymore", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rodney Crowell", + "title": "Many A Long", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Glen Campbell", + "title": "She s Gone, Gone, Gone", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Vern Gosdin", + "title": "That Just About Does It", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Skip Ewing", + "title": "It s You Again", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Willie Nelson", + "title": "There You Are", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Nitty Gritty Dirt Band", + "title": "When It s Gone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Steve Wariner", + "title": "When I Could Come Home To You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lionel Cartwright", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "Start All Over Again", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ricky Van Shelton", + "title": "Statue Of A Fool", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Baillie And The Boys", + "title": "I Can t Turn The Tide", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 2, + "missing_count": 12, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1989 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Phil Collins", + "playlist_title": "Another Day In Paradise", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a5d9f17-9d7c-072c-7a96-aa6ab601a7f7", + "path": "z://MP4\\Sing King Karaoke\\Phil Collins - Another Day In Paradise.mp4", + "title": "Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Janet Jackson", + "playlist_title": "Rhythm Nation", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "f794088a-ebfe-c50d-7d12-4fbd81ff9ba1", + "path": "z://CDG\\Various\\Janet Jackson - Rhythm Nation.mp3", + "title": "Rhythm Nation" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Technotronic", + "playlist_title": "Pump Up The Jam", + "found_song": { + "artist": "Technotronic", + "disabled": false, + "favorite": false, + "guid": "c79f887c-7f69-3a38-eee0-91594df9cc2b", + "path": "z://MP4\\TheKARAOKEChannel\\Technotronic - Pump Up The Jam (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Pump Up The Jam" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Michael Bolton", + "playlist_title": "How Am I Supposed To Live Without You", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "fc93b3a0-c1f3-7592-65ca-47c27e8dc00a", + "path": "z://MP4\\Sing King Karaoke\\Michael Bolton - How Am I Supposed To Live Without You (Karaoke Version).mp4", + "title": "How Am I Supposed To Live Without You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cher", + "playlist_title": "Just Like Jesse James", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "d50c21b2-2272-88f8-c110-036cac8975d4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Jesse James - Cher.mp4", + "title": "Just Like Jesse James" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Billy Joel", + "playlist_title": "We Didn t Start The Fire", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "c43446fe-12a8-0a44-d231-ca4a11416b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Didn t Start the Fire - Billy Joel.mp4", + "title": "We Didn t Start the Fire" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tom Petty", + "playlist_title": "Free Fallin", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d79efc4f-76b4-e4b6-4e0d-3ce1d3d36bbd", + "path": "z://MP4\\Sing King Karaoke\\Tom Petty - Free Fallin.mp4", + "title": "Free Fallin" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tesla", + "playlist_title": "Love Song", + "found_song": { + "artist": "Tesla", + "disabled": false, + "favorite": false, + "guid": "c9ee3818-5bf8-5ff1-60d5-3dc410b49fee", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Tesla - Love Song (Karaoke).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rod Stewart", + "playlist_title": "Downtown Train", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd06a362-8001-5e1c-c853-98efe87f09d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Downtown Train.mp4", + "title": "Downtown Train" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Joe Cocker", + "playlist_title": "When The Night Comes", + "found_song": { + "artist": "Joe Cocker", + "disabled": false, + "favorite": false, + "guid": "26939ee7-7eca-d86a-bc1e-d025e2f83b02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Night Comes - Joe Cocker.mp4", + "title": "When The Night Comes" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Madonna", + "playlist_title": "Oh Father", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "1e2c4b5e-3fa8-d885-7323-9bd89565d61b", + "path": "z://CDG\\Various\\Madonna - Oh Father.mp3", + "title": "Oh Father" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Milli Vanilli", + "playlist_title": "Blame It On The Rain", + "found_song": { + "artist": "Milli Vanilli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dd1a04d-fabc-1e4e-cfb0-ffd7855d488c", + "path": "z://MP4\\Sing King Karaoke\\Milli Vanilli - Blame It On The Rain.mp4", + "title": "Blame It On The Rain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Skid Row", + "playlist_title": "I Remember You", + "found_song": { + "artist": "Skid Row", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1e41936-39c2-d9a5-e8b6-3e7defb9d60b", + "path": "z://MP4\\KaraokeOnVEVO\\Skid Row - I Remember You.mp4", + "title": "I Remember You" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Aerosmith", + "playlist_title": "Janie s Got A Gun", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "fa2499e1-8f53-eade-5920-2c1d324a18d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Janie s Got A Gun - Aerosmith.mp4", + "title": "Janie s Got A Gun" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Paula Abdul", + "playlist_title": "(It s Just) The Way That You Love Me", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d7e884e-0b33-dd56-4eda-a6ebf3384852", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - (It s Just) The Way That You Love Me.mp4", + "title": "(It s Just) The Way That You Love Me" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Young MC", + "playlist_title": "Bust A Move", + "found_song": { + "artist": "Young MC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d444fdc-75f3-1b6a-7544-4f5a1e8973ad", + "path": "z://MP4\\VocalStarKaraoke\\Young MC - Bust A Move.mp4", + "title": "Bust A Move" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bad English", + "playlist_title": "When I See You Smile", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "guid": "b3453c49-94a5-2b17-e340-108f36fa9df1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I See You Smile - Bad English.mp4", + "title": "When I See You Smile" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tina Turner", + "playlist_title": "Steamy Windows", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "b4f795f3-3605-bb63-ad7c-5b0ed84fb138", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steamy Windows - Tina Turner.mp4", + "title": "Steamy Windows" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Roxette", + "playlist_title": "Dangerous", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc1c30a3-9c3d-1f51-8720-d48b1424b885", + "path": "z://MP4\\KaraokeOnVEVO\\Roxette - Dangerous.mp4", + "title": "Dangerous" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Here We Are", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "0f088501-ac14-5ab6-ff4c-0c35813fe135", + "path": "z://MP4\\KaraFun Karaoke\\Here We Are - Gloria Estefan Karaoke Version KaraFun.mp4", + "title": "Here We Are" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Whitesnake", + "playlist_title": "Fool For Your Loving", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef3033ee-c51f-7be1-05c9-432a1a196962", + "path": "z://MP4\\ZoomKaraokeOfficial\\Whitesnake - Fool For Your Loving.mp4", + "title": "Fool For Your Loving" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Richard Marx", + "playlist_title": "Angelia", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7634f49d-0455-731a-a341-4926eab4863c", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Angelia.mp4", + "title": "Angelia" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bad English", + "playlist_title": "Price Of Love", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e60f89e-545c-d4b2-f7c6-ffdce48eff96", + "path": "z://CDG\\SBI\\SBI-03\\SB22764 - Bad English - Price Of Love.mp3", + "title": "Price Of Love" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tears For Fears", + "playlist_title": "Woman In Chains", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "guid": "8eba7e55-dd32-a261-578f-37ce32d324b6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Woman In Chains - Tears For Fears.mp4", + "title": "Woman In Chains" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Leave A Light On", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "331b436f-b84b-8bf6-3b66-775bbb94096b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave a Light On - Belinda Carlisle.mp4", + "title": "Leave a Light On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alice Cooper", + "playlist_title": "Poison", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "guid": "2f86e80a-138e-bd93-a717-17841597cd90", + "path": "z://MP4\\Sing King Karaoke\\Alice Cooper - Poison (Karaoke Version).mp4", + "title": "Poison" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Bonham", + "playlist_title": "Wait For You", + "found_song": { + "artist": "Bonham", + "disabled": false, + "favorite": false, + "guid": "7ae7401b-6477-faa6-8b9e-ad531e7263bb", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Bonham - Wait For You (Karaoke).mp4", + "title": "Wait For You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Marcia Griffiths", + "playlist_title": "Electric Boogie", + "found_song": { + "artist": "Marcia Griffiths", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0646d863-4b62-0e8f-0daf-a9585b70aba9", + "path": "z://MP4\\KaraokeOnVEVO\\Marcia Griffiths - Electric Boogie.mp4", + "title": "Electric Boogie" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Depeche Mode", + "playlist_title": "Personal Jesus", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "211cd52f-1037-568e-718d-f87ba33e7e0f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Personal Jesus - Depeche Mode.mp4", + "title": "Personal Jesus" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eric Clapton", + "playlist_title": "Pretending", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "480e9413-17fb-26e6-2d5a-a15bd3f5dd7a", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Clapton - Pretending.mp4", + "title": "Pretending" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Roxette", + "playlist_title": "Listen To Your Heart", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5081228e-459a-d3d2-06bb-83638ee05409", + "path": "z://MP4\\Sing King Karaoke\\Roxette - Listen To Your Heart.mp4", + "title": "Listen To Your Heart" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Smithereens", + "playlist_title": "A Girl Like You", + "found_song": { + "artist": "The Smithereens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c47f095f-0d19-cef8-799c-1197323fd0a6", + "path": "z://MP4\\KaraokeOnVEVO\\The Smithereens - A Girl Like You.mp4", + "title": "A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Get On Your Feet", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "f3a0c8df-3108-e1b2-006f-071f07ea2623", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Get On Your Feet - Gloria Estefan.mp4", + "title": "Get On Your Feet" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "The Cure", + "playlist_title": "Lullaby", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "6701acd1-d76a-7a37-c8b9-bfb6157baf8a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lullaby - The Cure.mp4", + "title": "Lullaby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Alannah Myles", + "playlist_title": "Black Velvet", + "found_song": { + "artist": "Alannah Myles", + "disabled": false, + "favorite": false, + "guid": "d5f74be8-234e-fa25-98a0-4054502366fd", + "path": "z://MP4\\Sing King Karaoke\\Alannah Myles - Black Velvet (Karaoke Version).mp4", + "title": "Black Velvet" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Janet Jackson", + "playlist_title": "Miss You Much", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dbbfe97-3881-a1c8-445d-ae3e149b7af1", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Miss You Much.mp4", + "title": "Miss You Much" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Cover Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "060143be-3b5e-38b7-4356-e6ac621c2b42", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - Cover Girl.mp4", + "title": "Cover Girl" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Linda Ronstadt (Featuring Aaron Neville)", + "playlist_title": "Don t Know Much", + "found_song": { + "artist": "Linda Ronstadt And Aaron Neville", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "38673847-a5ae-efcb-1ffa-db3b08c0afa1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Linda Ronstadt And Aaron Neville - Dont Know Much.mp4", + "title": "Don't Know Much" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Bon Jovi", + "playlist_title": "Living In Sin", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "cd295148-5c41-0ba3-8dfa-eb16dffb1142", + "path": "z://CDG\\Various\\Bon Jovi - Living In The Sun.mp3", + "title": "Living In The Sun" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The 2 Live Crew", + "playlist_title": "Me So Horny", + "found_song": { + "artist": "2 Live Crew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4b11a2-6ec2-45da-6e74-7e4db71e8aff", + "path": "z://CDG\\Various\\2 Live Crew - Me So Horny.mp3", + "title": "Me So Horny" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Luther Vandross", + "playlist_title": "Here And Now", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "56e48185-07a1-b089-19b3-0ccfafde3224", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here and Now - Luther Vandross.mp4", + "title": "Here and Now" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "The B-52 s", + "playlist_title": "Roam", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "9fa5cf7d-07c5-2a74-05d3-b45859af788c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Roam - The B-52 s.mp4", + "title": "Roam" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Taylor Dayne", + "title": "With Every Beat Of My Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "New Kids On The Block", + "title": "This One s For The Children", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jody Watley", + "title": "Everything", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Soul II Soul", + "title": "Back To Life", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jive Bunny", + "title": "Swing The Mood", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lou Gramm", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Seduction", + "title": "Two To Make It Right", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Rolling Stones", + "title": "Rock And A Hard Place", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Quincy Jones Featuring Ray Charles", + "title": "I ll Be Good To You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Babyface", + "title": "Tender Lover", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Eddie Money", + "title": "Peace In Our Time", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chicago", + "title": "What Kind Of Man Would I Be?", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Kix", + "title": "Don t Close Your Eyes", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Expose", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Paula Abdul (Duet With The Wild Pair)", + "title": "Opposites Attract", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Michael Damian", + "title": "Was It Nothing At All", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Young MC", + "title": "Principal s Office", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Motley Crue", + "title": "Kickstart My Heart", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Shana", + "title": "I Want You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Sybil", + "title": "Don t Make Me Over", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Poco", + "title": "Nothin To Hide", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Cover Girls", + "title": "We Can t Go Wrong", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Don Henley", + "title": "The Last Worthless Evening", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Michel le", + "title": "No More Lies", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Milli Vanilli", + "title": "All Or Nothing", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jaya", + "title": "If You Leave Me Now", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Fiona (Duet With Kip Winger)", + "title": "Everything You Do (You re Sexing Me)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Paul Carrack", + "title": "I Live By The Groove", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "D-Mob With Cathy Dennis", + "title": "C Mon And Get My Love", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "SaFire", + "title": "I Will Survive (From \"She-Devil\")", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Prince (With Sheena Easton)", + "title": "The Arms Of Orion", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jermaine Jackson", + "title": "Don t Take It Personal", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Kevin Paige", + "title": "Don t Shut Me Out", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Great White", + "title": "The Angel Song", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Pajama Party", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Kenny G", + "title": "Going Home", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Neneh Cherry", + "title": "Heart", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dino", + "title": "Never 2 Much Of U", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Christopher Max", + "title": "Serious Kinda Girl", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "New Kids On The Block", + "title": "Didn t I (Blow Your Mind)", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Brown", + "title": "Rock Wit cha", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Warrant", + "title": "Sometimes She Cries", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kiss", + "title": "Hide Your Heart", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Loverboy", + "title": "Too Hot", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Michael Penn", + "title": "No Myth", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Diving For Pearls", + "title": "Gimme Your Good Lovin", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lil Louis", + "title": "French Kiss", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Abstrac", + "title": "Right And Hype", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Michael Morales", + "title": "I Don t Know", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Stevie B", + "title": "Girl I Am Searching For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Starship", + "title": "I Didn t Mean To Stay All Night", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Sharon Bryant", + "title": "Foolish Heart", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Christopher Williams", + "title": "Talk To Myself", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "After 7", + "title": "Heat Of The Moment", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Hooters", + "title": "500 Miles", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Saraya", + "title": "Back To The Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chunky A", + "title": "Owwww!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 5, + "missing_count": 57, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1988 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Keith Whitley", + "playlist_title": "When You Say Nothing At All", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3cce4a7-dc68-ff72-deb2-70e2a7dad4e4", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - When You Say Nothing At All.mp4", + "title": "When You Say Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Hold Me", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07c9069a-e436-f589-f863-663ce2ef2dc6", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Hold Me.mp4", + "title": "Hold Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Judds", + "playlist_title": "Change Of Heart", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ac5b018-10b8-6ad6-254e-ad2e13d8c878", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Change Of Heart.mp4", + "title": "Change Of Heart" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Patty Loveless", + "playlist_title": "Blue Side Of Town", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abe31cb1-f020-7473-4ae0-45348990ab77", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - Blue Side Of Town.mp4", + "title": "Blue Side Of Town" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Alabama", + "playlist_title": "Song Of The South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1040781-3136-7881-173b-9b0caa59848c", + "path": "z://CDG\\Various\\Alabama - Song Of The South.mp3", + "title": "Song Of The South" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "I Sang Dixie", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7fb88921-88ab-22d1-7a41-ccd3e5740b69", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - I Sang Dixie.mp4", + "title": "I Sang Dixie" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Randy Travis", + "playlist_title": "Deeper Than The Holler", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f1f007dc-512c-3795-a116-b6cb206c07a6", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Travis - Deeper Than The Holler.mp4", + "title": "Deeper Than The Holler" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Paul Overstreet", + "title": "Love Helps Those", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Shenandoah", + "title": "Mama Knows", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rodney Crowell", + "title": "She s Crazy For Leaving", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Eddie Rabbitt", + "title": "We Must Be Doin Somethin Right", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baillie And The Boys", + "title": "Long Shot", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Restless Heart", + "title": "A Tender Lie", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Highway 101", + "title": "All The Reasons Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Steve Wariner", + "title": "Hold On (A Little Longer)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Statler Brothers", + "title": "Let s Get Started If We re Gonna Break My Heart", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Skip Ewing", + "title": "Burnin A Hole In My Heart", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Earl Thomas Conley", + "title": "What I d Say", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Hank Williams Jr.", + "title": "Early In The Morning And Late At Night", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Dan Seals", + "title": "Big Wheels In The Moonlight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kathy Mattea", + "title": "Life As We Knew It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Shooters", + "title": "Borderline", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Forester Sisters", + "title": "Sincerely", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Holly Dunn", + "title": "(It s Always Gonna Be) Someday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gene Watson", + "title": "Don t Waste It On The Blues", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 1, + "missing_count": 18, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1988 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Poison", + "playlist_title": "Every Rose Has Its Thorn", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "guid": "843a019e-53b2-390a-1bd1-5ee451844337", + "path": "z://MP4\\Sing King Karaoke\\Poison - Every Rose Has Its Thorn (Karaoke Version).mp4", + "title": "Every Rose Has Its Thorn" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Brown", + "playlist_title": "My Prerogative", + "found_song": { + "artist": "Bobby Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48d083f6-39cd-484f-9108-7b78209ce0ca", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Brown - My Prerogative.mp4", + "title": "My Prerogative" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chicago", + "playlist_title": "Look Away", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "7966ad8e-9750-e67f-9ebd-badaeb3483fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Look Away - Chicago.mp4", + "title": "Look Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Anita Baker", + "playlist_title": "Giving You The Best That I Got", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "f19d0c5f-df99-5be9-7715-58fa5120f3ee", + "path": "z://MP4\\Let's Sing Karaoke\\Baker, Anita - Giving You The Best That I Got (Karaoke & Lyrics).mp4", + "title": "Giving You The Best That I Got" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boy Meets Girl", + "playlist_title": "Waiting For A Star To Fall", + "found_song": { + "artist": "Boy Meets Girl", + "disabled": false, + "favorite": false, + "guid": "49f214c9-ab7d-5374-1979-a81b53015074", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting for a Star to Fall - Boy Meets Girl.mp4", + "title": "Waiting for a Star to Fall" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Phil Collins", + "playlist_title": "Two Hearts", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74ec3fcc-9629-d8e7-c7d1-413c98138f08", + "path": "z://MP4\\ZoomKaraokeOfficial\\Phil Collins - Two Hearts.mp4", + "title": "Two Hearts" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Guns N Roses", + "playlist_title": "Welcome To The Jungle", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "3be4e2af-c5c5-8662-730f-7ffecc5f7b09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To The Jungle - Guns N Roses.mp4", + "title": "Welcome To The Jungle" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Eddie Money", + "playlist_title": "Walk On Water", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "guid": "4028b71e-9ecb-b390-ba33-50747506db39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On Water - Eddie Money.mp4", + "title": "Walk On Water" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Don t Rush Me", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8bc07eb-7cc4-cf82-4d40-77981fa572bb", + "path": "z://MP4\\KaraokeOnVEVO\\Taylor Dayne - Don t Rush Me.mp4", + "title": "Don t Rush Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Michael Jackson", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "1588a558-9582-4b5f-b8d3-fb21cfb12e43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Michael Jackson.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Duran Duran", + "playlist_title": "I Don t Want Your Love", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "5384c5fb-67fe-4599-40f6-89f0f6a1cae6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - I Don't Want Your Love - SFG004 - 15.mp3", + "title": "I Don't Want Your Love" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Breathe", + "playlist_title": "How Can I Fall?", + "found_song": { + "artist": "Breathe", + "disabled": false, + "favorite": false, + "guid": "d4680b88-5c46-9f72-27a3-5b6bdd54b584", + "path": "z://MP4\\Let's Sing Karaoke\\Breathe - How Can I Fall (Karaoke & Lyrics).mp4", + "title": "How Can I Fall" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "When In Rome", + "playlist_title": "The Promise", + "found_song": { + "artist": "When In Rome", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06e11ff9-101e-e7aa-160d-93da5dbae664", + "path": "z://MP4\\KaraokeOnVEVO\\When In Rome - The Promise.mp4", + "title": "The Promise" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Annie Lennox", + "playlist_title": "Put A Little Love In Your Heart", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "2ed6cc1d-82b9-ace3-3e38-8f7262a194d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Put A Little Love In Your Heart - Annie Lennox.mp4", + "title": "Put A Little Love In Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Robert Palmer", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb8983aa-e05c-2da8-30de-023f32314b6e", + "path": "z://MP4\\KaraokeOnVEVO\\Robert Palmer - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tiffany", + "playlist_title": "All This Time", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "350e6960-7760-7411-54e8-de5b965eb0c5", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - All This Time (Karaoke Version).mp4", + "title": "All This Time" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "White Lion", + "playlist_title": "When The Children Cry", + "found_song": { + "artist": "White Lion", + "disabled": false, + "favorite": false, + "guid": "13d46af3-ff8a-5a08-7786-a5c8f85f0929", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Children Cry - White Lion.mp4", + "title": "When The Children Cry" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bon Jovi", + "playlist_title": "Born To Be My Baby", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "d652d0f8-35dd-c6b1-e949-7f3e5ccbfdfe", + "path": "z://CDG\\Various\\Bon Jovi - Born To Be My Baby.mp3", + "title": "Born To Be My Baby" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Steve Winwood", + "playlist_title": "Holding On", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "guid": "69598642-9d7d-79d9-a1d8-b9ce3fcc1ccf", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Winwood - Holding On (Karaoke).mp4", + "title": "Holding On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Maxi Priest", + "playlist_title": "Wild World", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "guid": "2292f122-a7ae-f988-cd82-3870eeba2871", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Maxi Priest.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Samantha Fox", + "playlist_title": "I Wanna Have Some Fun", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "guid": "cf73cf9a-69fa-1898-3486-42800b78a79b", + "path": "z://CDG\\Various\\Samantha Fox - I Wanna Have Some Fun.mp3", + "title": "I Wanna Have Some Fun" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Paula Abdul", + "playlist_title": "Straight Up", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bdbaff-639d-96c3-3d9f-b9fb67a4fe4b", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Straight Up.mp4", + "title": "Straight Up" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Desire", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cdac18f-d5e4-bdc1-7ccc-40d0834fe1c7", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Desire.mp4", + "title": "Desire" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Tone-Loc", + "playlist_title": "Wild Thing", + "found_song": { + "artist": "Tone Loc", + "disabled": false, + "favorite": false, + "guid": "44bbe03b-643b-ed9b-c5d2-c56ed259e20b", + "path": "z://MP4\\Let's Sing Karaoke\\Tone Loc - Wild Thing (Karaoke & Lyrics).mp4", + "title": "Wild Thing" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Bon Jovi", + "playlist_title": "Bad Medicine", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "732b4b3f-b868-a553-c4e3-17b10ecee80c", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Bad Medicine (Karaoke Version).mp4", + "title": "Bad Medicine" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rick Astley", + "playlist_title": "She Wants To Dance With Me", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf93a099-30de-dc5a-e96c-5b9ccda23ef6", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Astley - She Wants To Dance With Me.mp4", + "title": "She Wants To Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Edie Brickell", + "playlist_title": "What I Am", + "found_song": { + "artist": "Edie Brickell", + "disabled": false, + "favorite": false, + "guid": "013bd844-ef0e-d927-7fd1-b348fb6e4c57", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What I Am - Edie Brickell.mp4", + "title": "What I Am" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "New Kids On The Block", + "playlist_title": "You Got It (The Right Stuff)", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17b2d73f-f93b-2c12-4bf2-a069122ac1c3", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - You Got It (The Right Stuff.mp4", + "title": "You Got It (The Right Stuff)" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Baby Can I Hold You", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "f6d684e6-c96d-0cd9-2bb8-21c4fe1fabf0", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Baby Can I Hold You (Karaoke Version).mp4", + "title": "Baby Can I Hold You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kylie Minogue", + "playlist_title": "The Loco-Motion", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed27ee4a-1f84-0a6b-612f-bc4173100836", + "path": "z://MP4\\Sing King Karaoke\\Kylie Minogue - The Loco Motion.mp4", + "title": "The Loco Motion" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "U2", + "playlist_title": "Angel Of Harlem", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef9260e-8305-8fdb-c94e-321a3d1a49c4", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Angel Of Harlem.mp4", + "title": "Angel Of Harlem" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Erasure", + "playlist_title": "A Little Respect", + "found_song": { + "artist": "Erasure", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8034434b-38d9-0f24-b237-bf8945c4a573", + "path": "z://CDG\\Various\\Erasure - A Little Respect.mp3", + "title": "A Little Respect" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Phil Collins", + "playlist_title": "Groovy Kind Of Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "99763a6a-8799-5364-6750-c3ac0737ff48", + "path": "z://MP4\\Let's Sing Karaoke\\Collins, Phil - Groovy Kind Of Love (Karaoke & Lyrics).mp4", + "title": "Groovy Kind Of Love" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "As Long As You Follow", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41f38a9e-247b-f36c-8e1a-de8a0131c183", + "path": "z://MP4\\KaraokeOnVEVO\\Fleetwood Mac - As Long As You Follow.mp4", + "title": "As Long As You Follow" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Michael", + "playlist_title": "Kissing A Fool", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "d570b4d7-77c3-f106-0825-d52d22dbd874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kissing a Fool - George Michael.mp4", + "title": "Kissing a Fool" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rod Stewart", + "playlist_title": "My Heart Can t Tell You No", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5a0ddb9-f89e-0d5d-4e80-a40aae620105", + "path": "z://MP4\\KaraokeOnVEVO\\Rod Stewart - My Heart Can t Tell You No.mp4", + "title": "My Heart Can t Tell You No" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Alphaville", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c37bf32-76ae-e13a-3691-8e5732002f2c", + "path": "z://MP4\\Sing King Karaoke\\Alphaville - Forever Young.mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "UB40", + "playlist_title": "Red Red Wine", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "25c549fb-8a28-8530-4142-8f6479539bb6", + "path": "z://MP4\\Sing King Karaoke\\UB40 - Red Red Wine (Karaoke Version) (2).mp4", + "title": "Red Red Wine" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Rod Stewart", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "aa97b8b4-2f2f-030c-1611-e35cd9f34d7d", + "path": "z://MP4\\Stingray Karaoke\\Rod Stewart - Forever Young (Karaoke Version).mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Mike", + "playlist_title": "Nobody s Perfect", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ccab1e2-09fa-6510-54b4-7d005afb09b3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Nobodys Perfect.mp4", + "title": "Nobody's Perfect" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "INXS", + "playlist_title": "Never Tear Us Apart", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "4a8eaec9-5ec2-22ef-cc5d-b3658fcf2300", + "path": "z://MP4\\Sing King Karaoke\\INXS - Never Tear Us Apart (Karaoke Version).mp4", + "title": "Never Tear Us Apart" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Duran Duran", + "playlist_title": "All She Wants Is", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "2864f66e-fb8f-3f3c-c6c2-714e2d5d4408", + "path": "z://MP4\\KaraokeOnVEVO\\Duran Duran - All She Wants Is (Karaoke).mp4", + "title": "All She Wants Is" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Fairground Attraction", + "playlist_title": "Perfect", + "found_song": { + "artist": "Fairground Attraction", + "disabled": false, + "favorite": false, + "guid": "06772cdc-41e0-bb6d-6367-104651cfef0e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect - Fairground Attraction.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Def Leppard", + "playlist_title": "Love Bites", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6ab8aed-74ab-b82a-042f-f583966a2d67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Def Leppard - Love Bites.mp4", + "title": "Love Bites" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Please Don t Go Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "guid": "c87d7bb4-a751-7ead-98fb-7a4aa0ae26a6", + "path": "z://MP4\\TheKARAOKEChannel\\Please Don t Go Girl in the Style of New Kids on the Block with lyrics (no lead vocal).mp4", + "title": "Please Don t Go Girl" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "L Trimm", + "playlist_title": "Cars With The Boom", + "found_song": { + "artist": "L'Trimm", + "disabled": false, + "favorite": false, + "guid": "1cafd931-7216-c491-af44-9d98477b9eda", + "path": "z://CDG\\Various\\L'Trimm - Cars With The Boom.mp3", + "title": "Cars With The Boom" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Moment In Time", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "d3b1affb-7cab-f284-c2d7-650f854f2892", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - One Moment In Time (Karaoke Version).mp4", + "title": "One Moment In Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Bangles", + "playlist_title": "In Your Room", + "found_song": { + "artist": "The Bangles", + "disabled": false, + "favorite": false, + "guid": "90aa7021-8320-a4b9-cd02-82a810603d8d", + "path": "z://MP4\\Let's Sing Karaoke\\Bangles, The - In Your Room (Karaoke & Lyrics).mp4", + "title": "In Your Room" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Will To Power", + "playlist_title": "Baby, I Love Your Way/Freebird Medley", + "found_song": { + "artist": "Will To Power", + "disabled": false, + "favorite": false, + "guid": "02401d3b-f5c0-a23c-0cbd-428d56dfa273", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Will To Power - Baby I Love Your Wayfreebird Medl - SF006 - 13.mp3", + "title": "Baby I Love Your Wayfreebird Medl" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Traveling Wilburys", + "playlist_title": "Handle With Care", + "found_song": { + "artist": "Travelling Wilburys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a99278-b83d-51b6-4eaf-40748a5e6dae", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Travelling Wilburys - Handle With Care - SFMW 876 -14.mp3", + "title": "Handle With Care" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Till I Loved You", + "found_song": { + "artist": "Barbra Streisand ft. Don Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af2f90d5-ca04-6a37-1c7b-d8c0df35f753", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barbra Streisand feat Don Johnson - Till I Loved You.mp4", + "title": "Till I Loved You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Def Leppard", + "title": "Armageddon It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Boys Club", + "title": "I Remember Holding You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kenny G", + "title": "Silhouette", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Van Halen", + "title": "Finish What Ya Started", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Was (Not Was)", + "title": "Spy In The House Of Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Karyn White", + "title": "The Way You Love Me", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sheriff", + "title": "When I m With You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Joan Jett And The Blackhearts", + "title": "Little Liar", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cheryl \"Pepsii\" Riley", + "title": "Thanks For My Child", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Cheap Trick", + "title": "Ghost Town", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sheena Easton", + "title": "The Lover In Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Beach Boys", + "title": "Kokomo (From The \"Cocktail\" Soundtrack)", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Escape Club", + "title": "Wild, Wild West", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Art Of Noise Featuring Tom Jones", + "title": "Kiss", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Information Society", + "title": "Walking Away", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Robbie Nevil", + "title": "Back On Holiday", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Boys", + "title": "Dial My Heart", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ivan Neville", + "title": "Not Just Another Girl", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Judson Spence", + "title": "Yeah, Yeah, Yeah", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Cinderella", + "title": "Don t Know What You Got (Till It s Gone)", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Escape Club", + "title": "Shake For The Sheik", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Eighth Wonder", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kylie Minogue", + "title": "It s No Secret", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Siouxsie and The Banshees", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Georgia Satellites", + "title": "Hippy Hippy Shake (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tracie Spencer", + "title": "Symptoms Of True Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Basia", + "title": "New Day For You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "D.J. Jazzy Jeff", + "title": "Girls Ain t Nothing But Trouble", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Pet Shop Boys", + "title": "Domino Dancing", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Vixen", + "title": "Edge Of A Broken Heart", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bobby McFerrin", + "title": "Don t Worry, Be Happy (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Randy Newman", + "title": "It s Money That Matters", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Giant Steps", + "title": "Another Lover", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Michelle Shocked", + "title": "Anchorage", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Conwell And The Young Rumblers", + "title": "If We Never Meet Again", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ann Wilson", + "title": "Surrender To Me (From \"Tequila Sunrise\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Starship", + "title": "Wild Again (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Al B. Sure!", + "title": "Killing Me Softly", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Timelords", + "title": "Doctorin The Tardis", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Kon Kan", + "title": "I Beg Your Pardon", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bobby Brown", + "title": "Don t Be Cruel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "SaFire", + "title": "Boy, I ve Been Told", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Martika", + "title": "More Than You Know", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "J.J. Fad", + "title": "Is It Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Taylor Dayne", + "title": "I ll Always Love You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Sir Mix-A-Lot", + "title": "Posse On Broadway", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Luther Vandross", + "title": "Any Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Camouflage", + "title": "The Great Commandment", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Information Society", + "title": "What s On Your Mind (Pure Energy)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 4, + "missing_count": 49, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1987 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Rogers", + "playlist_title": "I Prefer The Moonlight", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "3a29e174-a6d5-46ac-cd31-4e83595fa1f5", + "path": "z://MP4\\Stingray Karaoke\\I Prefer The Moonlight Kenny Rogers Karaoke with Lyrics.mp4", + "title": "I Prefer The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan Seals", + "playlist_title": "One Friend", + "found_song": { + "artist": "Dan Seals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86b2c164-6056-c31a-be29-f1d090ce2cd2", + "path": "z://MP4\\Sing King Karaoke\\Dan Seals - One Friend.mp4", + "title": "One Friend" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Do Ya'", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "guid": "1140d2e7-9623-4a69-4de6-c46ff8683344", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Do Ya (Karaoke).mp4", + "title": "Do Ya" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Restless Heart", + "playlist_title": "Wheels", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9727a829-9531-aee9-5360-85593796f1b7", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - Wheels.mp4", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rosanne Cash", + "playlist_title": "Tennessee Flat Top Box", + "found_song": { + "artist": "Rosanne Cash", + "disabled": false, + "favorite": false, + "guid": "529b5b5c-b547-8afe-a1a5-e6fd27856ac9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tennessee Flat Top Box - Rosanne Cash.mp4", + "title": "Tennessee Flat Top Box" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Merle Haggard", + "playlist_title": "Twinkle, Twinkle Lucky Star", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f4a3ad-4ec1-43d9-6345-6a14e83f39a5", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Twinkle, Twinkle Lucky Star.mp4", + "title": "Twinkle, Twinkle Lucky Star" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Highway 101", + "title": "Somewhere Tonight", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Exile", + "title": "I Can't Get Close Enough", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Hank Williams Jr.", + "title": "Heaven Can't Be Found", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Ronnie Milsap", + "title": "Where Do The Nights Go", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kathy Mattea", + "title": "Goin' Gone", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Glen Campbell", + "title": "Still Within The Sound Of My Voice", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Michael Johnson", + "title": "Crying Shame", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The O'Kanes", + "title": "Just Lovin' You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lyle Lovett", + "title": "Give Back My Heart", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Joe Royal", + "title": "I'll Pin A Note On Your Pillow", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle", + "title": "Only Love Can Save Me Now", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Don Williams", + "title": "I Wouldn't Be A Man", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "One Step Forward", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ricky Skaggs", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Forester Sisters", + "title": "Lyin' In His Arms Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "T.G. Sheppard", + "title": "One For The Money", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Waylon Jennings", + "title": "Rough And Rowdy Days", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster & Lloyd", + "title": "Sure Thing", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dwight Yoakam", + "title": "Please Please Baby", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1987 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Michael", + "playlist_title": "Faith", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "42a06cdd-53a7-bfb6-2d83-be4381fd6c0a", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Faith (Karaoke Version).mp4", + "title": "Faith" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Whitney Houston", + "playlist_title": "So Emotional", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "446228c5-28be-4b1d-6c04-d584b722a52d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Emotional - Whitney Houston.mp4", + "title": "So Emotional" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Whitesnake", + "playlist_title": "Is This Love", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "a31763aa-607c-1e58-0472-b399d372e48f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Is This Love - Whitesnake.mp4", + "title": "Is This Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Harrison", + "playlist_title": "Got My Mind Set On You", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "guid": "872b0858-3437-3351-aaf3-e6709c16244a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Got My Mind Set On You - George Harrison.mp4", + "title": "Got My Mind Set On You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Debbie Gibson", + "playlist_title": "Shake Your Love", + "found_song": { + "artist": "Debbie Gibson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8263e56c-9328-b627-d8ce-7f608ff5d046", + "path": "z://MP4\\KaraokeOnVEVO\\Debbie Gibson - Shake Your Love.mp4", + "title": "Shake Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jody Watley", + "playlist_title": "Don't You Want Me", + "found_song": { + "artist": "Jody Watley", + "disabled": false, + "favorite": false, + "guid": "603e1140-4f15-0b09-5cef-6d4bd9727d82", + "path": "z://CDG\\Various\\Jody Watley - Don't You Want Me.mp3", + "title": "Don't You Want Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Michael Jackson", + "playlist_title": "The Way You Make Me Feel", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "d2aaf344-5359-7b0a-5bdc-e972a01bd0ca", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - The Way You Make Me Feel (Karaoke Version).mp4", + "title": "The Way You Make Me Feel" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "John Mellencamp", + "playlist_title": "Cherry Bomb", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "ea00035f-fa54-4434-b237-e30f08e6fded", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cherry Bomb - John Mellencamp.mp4", + "title": "Cherry Bomb" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "INXS", + "playlist_title": "Need You Tonight", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "9901bafd-a18c-9628-7b24-6b57c58b135a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Need You Tonight - INXS.mp4", + "title": "Need You Tonight" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Winwood", + "playlist_title": "Valerie", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60719277-a695-f172-5104-a2cf883fd31a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Steve Winwood - Valerie.mp4", + "title": "Valerie" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Tell It To My Heart", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "guid": "500436af-78fd-c7a3-9890-4f0ea421350a", + "path": "z://MP4\\Sing King Karaoke\\Taylor Dayne - Tell It To My Heart (Karaoke Version).mp4", + "title": "Tell It To My Heart" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Elton John", + "playlist_title": "Candle In The Wind", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "f8d39005-d27b-c2e9-2c05-f5ce9f021581", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Candle In The Wind - Elton John.mp4", + "title": "Candle In The Wind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Aerosmith", + "playlist_title": "Dude (Looks Like A Lady)", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "04b60bf2-2d50-db44-fcc1-41687e0a7da5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dude (Looks Like A Lady) - Aerosmith.mp4", + "title": "Dude (Looks Like A Lady)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tiffany", + "playlist_title": "Could've Been", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "1b8ece7d-ebd9-c8e3-729e-e0978b56a1cb", + "path": "z://MP4\\KaraokeOnVEVO\\Tiffany - Could've Been (Karaoke).mp4", + "title": "Could've Been" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Heaven Is A Place On Earth", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "6c3c8d9a-0a82-1286-8f4c-4025abb780d5", + "path": "z://MP4\\Sing King Karaoke\\Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version).mp4", + "title": "Heaven Is A Place On Earth" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Def Leppard", + "playlist_title": "Animal", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "81f094b5-7c83-e4fa-8bf4-d16d2eb1dd77", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Animal (Karaoke).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Expose", + "playlist_title": "Seasons Change", + "found_song": { + "artist": "Expose'", + "disabled": false, + "favorite": false, + "guid": "208c8eca-6261-f1de-3830-369260024379", + "path": "z://MP4\\Let's Sing Karaoke\\Expose' - Seasons Change (Karaoke & Lyrics).mp4", + "title": "Seasons Change" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Icehouse", + "playlist_title": "Crazy", + "found_song": { + "artist": "icehouse", + "disabled": false, + "favorite": false, + "guid": "0b8a6974-54c8-c142-35c2-f20831236821", + "path": "z://MP4\\KaraokeOnVEVO\\icehouse - Crazy (Karaoke).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Richard Marx", + "playlist_title": "Should've Known Better", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ca6240d-b430-ff58-46f3-73ca8b2e5ba1", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Should've Known Better.mp4", + "title": "Should've Known Better" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Tunnel Of Love", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a21f4ff9-99a3-8db5-7e81-d7613d041ec6", + "path": "z://CDG\\Various\\Bruce Springsteen - Tunnel Of Love.mp3", + "title": "Tunnel Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "New Order", + "playlist_title": "True Faith", + "found_song": { + "artist": "New Order", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5599ad26-6872-fd6d-87b6-18fae8fa060a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 846\\New Order - True Faith - SFMW 846 -03.mp3", + "title": "True Faith" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Foreigner", + "playlist_title": "Say You Will", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17f445a8-893e-2cf1-9422-e334f767119f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Foreigner - Say You Will.mp4", + "title": "Say You Will" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Paul Carrack", + "playlist_title": "Don't Shed A Tear", + "found_song": { + "artist": "Paul Carrack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fd877d4-d49b-7629-1fc2-569f87ebf34f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul Carrack - Dont Shed A Tear.mp4", + "title": "Don't Shed A Tear" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a90475de-b588-bfc8-0ef4-20399b879c79", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Everywhere (Karaoke Version).mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "R.E.M.", + "playlist_title": "The One I Love", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87581bfc-a58d-7be5-8381-be041fd77430", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The One I Love.mp4", + "title": "The One I Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tiffany", + "playlist_title": "I Think We're Alone Now", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "d611b7ab-2187-a96d-2b1c-accfaffdf367", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - I Think We're Alone Now (Karaoke Version).mp4", + "title": "I Think We're Alone Now" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cher", + "playlist_title": "I Found Someone", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ce977529-7052-694e-952c-89ed928376f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Found Someone - Cher.mp4", + "title": "I Found Someone" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billy Idol", + "playlist_title": "Mony Mony", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "6beb21d8-00d8-b5f3-630f-bd0cb4286bfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mony Mony - Billy Idol.mp4", + "title": "Mony Mony" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Billy Idol", + "playlist_title": "Hot In The City", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33059386-c382-10e8-54b0-06c7c59b6ba5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Idol - Hot In The City.mp4", + "title": "Hot In The City" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rick Astley", + "playlist_title": "Never Gonna Give You Up", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "guid": "134b4cab-8a52-2d6c-8eaf-13d346132591", + "path": "z://MP4\\Sing King Karaoke\\Rick Astley - Never Gonna Give You Up (Karaoke Version).mp4", + "title": "Never Gonna Give You Up" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dan Hill", + "playlist_title": "Never Thought (That I Could Love)", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5028061b-753c-4c80-1884-7cc6c34c7e89", + "path": "z://MP4\\Sing King Karaoke\\Dan Hill - Never Thought (That I Could Love.mp4", + "title": "Never Thought (That I Could Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kiss", + "playlist_title": "Reason To Live", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fadba494-9085-ee9c-4952-d1d0c2675946", + "path": "z://MP4\\KaraokeOnVEVO\\Kiss - Reason To Live.mp4", + "title": "Reason To Live" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Little Lies", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "0693fcba-4905-6fef-7e6c-00e915cc1357", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Little Lies (Karaoke Version).mp4", + "title": "Little Lies" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Swing Out Sister", + "playlist_title": "Breakout", + "found_song": { + "artist": "Swing Out Sister", + "disabled": false, + "favorite": false, + "guid": "83ef9c4f-9205-e798-01d6-8602ad9409c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breakout - Swing Out Sister.mp4", + "title": "Breakout" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Brilliant Disguise", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "0f594bc2-a360-47a8-2bf8-b22d49a25ed0", + "path": "z://MP4\\Let's Sing Karaoke\\Bruce Springsteen - Brilliant Disguise (Karaoke & Lyrics).mp4", + "title": "Brilliant Disguise" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "It's A Sin", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58731317-fd9e-5f43-3644-59069c8dcbd9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Pet Shop Boys - It's A Sin - SFMW 807 -01.mp3", + "title": "It's A Sin" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Depeche Mode", + "playlist_title": "Never Let Me Down Again", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "584f630c-409b-ceca-347d-d3eef8f1ff26", + "path": "z://MP4\\KaraFun Karaoke\\Never Let Me Down Again - Depeche Mode Karaoke Version KaraFun.mp4", + "title": "Never Let Me Down Again" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Madonna", + "playlist_title": "Causing A Commotion", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d0e7743-ea55-1bde-4e4b-b7539a23a2b1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - Causing A Commotion.mp4", + "title": "Causing A Commotion" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Whitesnake", + "playlist_title": "Here I Go Again", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "fbb5546c-2309-8d04-d82e-b7001ced7993", + "path": "z://MP4\\Sing King Karaoke\\Whitesnake - Here I Go Again (Karaoke Version).mp4", + "title": "Here I Go Again" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "(I've Had) The Time Of My Life", + "found_song": { + "artist": "Bill Medley, Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5914e17-396c-e9c9-0f5c-6aa24b030f94", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley, Jennifer Warnes - (Ive Had) The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Pet Shop Boys & Dusty Springfield", + "playlist_title": "What Have I Done To Deserve This?", + "found_song": { + "artist": "Dusty Springfield & Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b2d2421-1089-52da-4a61-e29cef77271a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 836\\Dusty Springfield & Pet Shop Boys - What Have I Done To Deserve This - SFMW 836 -15.mp3", + "title": "What Have I Done To Deserve This" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "U2", + "playlist_title": "In God's Country", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "386de8d5-fab3-1fa6-8d7a-b9ae2dfbf8ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - In Gods Country - SFG009 - 09.mp3", + "title": "In Gods Country" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Alexander O'Neal", + "playlist_title": "Criticize", + "found_song": { + "artist": "Alexander O'Neal", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f73d7a2-280f-af2f-9209-e427aeec6fc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alexander ONeal - Criticize.mp4", + "title": "Criticize" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Pretty Poison", + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Bangles", + "title": "Hazy Shade Of Winter", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Heart", + "title": "There's The Girl", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Prince", + "title": "I Could Never Take The Place Of Your Man", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Michael Bolton", + "title": "That's What Love Is All About", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eric Carmen", + "title": "Hungry Eyes (From \"Dirty Dancing\")", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Roger", + "title": "I Want To Be Your Man", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Laura Branigan", + "title": "Power Of Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Sting", + "title": "We'll Be Together", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Natalie Cole", + "title": "I Live For Your Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Men Without Hats", + "title": "Pop Goes The World", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stryper", + "title": "Honestly", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Kane Gang", + "title": "Motortown", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Gloria Estefan & Miami Sound Machine", + "title": "Can't Stay Away From You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "M/A/R/R/S", + "title": "Pump Up The Volume", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bourgeois Tagg", + "title": "I Don't Mind At All", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Bananarama", + "title": "I Can't Help It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Stevie Wonder", + "title": "Skeletons", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Jets", + "title": "I Do You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Cover Girls", + "title": "Because Of You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Deja", + "title": "You And Me Tonight", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Patrick Swayze (Featuring Wendy Fraser)", + "title": "She's Like The Wind", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Squeeze", + "title": "853-5937", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Cutting Crew", + "title": "I've Been In Love Before", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Shanice Wilson", + "title": "(Baby Tell Me) Can You Dance", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Georgio", + "title": "Lover's Lane", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Squeeze", + "title": "Hourglass", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Powersource (Solo...Sharon)", + "title": "Dear Mr. Jesus", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Yes", + "title": "Rhythm Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Earth, Wind & Fire", + "title": "System Of Survival", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Buster Poindexter & His Banshees Of Blue", + "title": "Hot Hot Hot", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Poison", + "title": "I Won't Forget You", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Eurythmics", + "title": "I Need A Man", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Yes", + "title": "Love Will Find A Way", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Prince", + "title": "U Got The Look", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Swing Out Sister", + "title": "Twilight World", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Mick Jagger", + "title": "Throwaway", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "REO Speedwagon", + "title": "In My Dreams", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Boy George", + "title": "Live My Life (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "The Alarm", + "title": "Rain In The Summertime", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Dokken", + "title": "Burning Like A Flame", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tony Terry", + "title": "She's Fly", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Noel", + "title": "Silent Morning", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Europe", + "title": "Cherokee", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "title": "Someone To Love Me For Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Glenn Jones", + "title": "We've Only Just Begun (The Romance Is Not Over)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Glenn Medeiros", + "title": "Lonely Won't Leave Me Alone", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Expose", + "title": "Let Me Be The One", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Smokey Robinson", + "title": "What's Too Much", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Motley Crue", + "title": "You're All I Need", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kool & The Gang", + "title": "Special Way", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sammy Hagar", + "title": "Eagles Fly", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Heart", + "title": "Who Will You Run To", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Martha Davis", + "title": "Don't Tell Me The Time", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Kenny G. (Vocal By Lenny Williams)", + "title": "Don't Make Me Wait For Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 41, + "fuzzy_match_count": 4, + "missing_count": 55, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1986 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Mind Your Own Business", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "72d7f586-9651-3aaf-5304-8108b7e8ed49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mind Your Own Business - Hank Williams, Jr..mp4", + "title": "Mind Your Own Business" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Michael Johnson", + "playlist_title": "Give Me Wings", + "found_song": { + "artist": "Michael Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b2f0138-1453-74ee-49a6-dd8f359cb91f", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Johnson - Give Me Wings.mp4", + "title": "Give Me Wings" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Reba McEntire", + "playlist_title": "What Am I Gonna Do About You", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9afc812-7a4a-8120-26a3-937344c01ff3", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What Am I Gonna Do About You.mp4", + "title": "What Am I Gonna Do About You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Love s Gonna Get You Someday", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dc0e507-984b-c03e-a66e-46873080cb56", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Love s Gonna Get You Someday.mp4", + "title": "Love s Gonna Get You Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Judds", + "playlist_title": "Cry Myself To Sleep", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db6eb4c0-f414-f219-e352-da183af2fa1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Cry Myself To Sleep.mp4", + "title": "Cry Myself To Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lionel Richie", + "playlist_title": "Deep River Woman", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e3eaec07-7108-bc0b-2284-d6fe8203de1b", + "path": "z://MP4\\Let's Sing Karaoke\\Richie, Lionel - Deep River Woman (Karaoke & Lyrics) (2).mp4", + "title": "Deep River Woman" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Tanya Tucker", + "playlist_title": "I ll Come Back As Another Woman", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "610dbca7-2545-49b1-cd32-bb28a1f329aa", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - I ll Come Back As Another Woman.mp4", + "title": "I ll Come Back As Another Woman" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Whitley", + "playlist_title": "Homecoming 63", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "guid": "de97d8c2-a418-c012-63eb-341b72987b1d", + "path": "z://CDG\\Sound Choice Karaoke\\SC2328\\SC2328-06 - Whitley, Keith - Homecoming '63.mp3", + "title": "Homecoming '63" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 6, + "artist": "Don Williams", + "title": "Then It s Love", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Conway Twitty", + "title": "Fallin For You For Years", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "T.G. Sheppard", + "title": "Half Past Forever (Till I m Blue In The Heart)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan Seals", + "title": "You Still Move Me", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The O Kanes", + "title": "Oh Darlin", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Judy Rodman", + "title": "She Thinks That She ll Marry", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Pake McEntire", + "title": "Bad Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "John Conlee", + "title": "The Carpenter", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Gary Morris", + "title": "Leave Me Lonely", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bellamy Brothers With the Forester Sisters", + "title": "Too Much Is Not Enough", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Eddie Rabbitt", + "title": "Gotta Have You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lyle Lovett", + "title": "Cowboy Man", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ronnie Milsap", + "title": "How Do I Turn You On", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Crystal Gayle", + "title": "Straight To The Heart", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Nitty Gritty Dirt Band", + "title": "Fire In The Sky", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eddy Raven", + "title": "Right Hand Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Mel McDaniel", + "title": "Stand On It", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1986 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bangles", + "playlist_title": "Walk Like An Egyptian", + "found_song": { + "artist": "Bangles", + "disabled": false, + "favorite": false, + "guid": "535ea9a5-390c-9a1c-0ce0-b163f098a545", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF056\\Bangles - Walk Like An Egyptian - SF056 - 01.mp3", + "title": "Walk Like An Egyptian" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Wang Chung", + "playlist_title": "Everybody Have Fun Tonight", + "found_song": { + "artist": "Wang Chung", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "799cc229-3e92-55c5-aee9-a9c824aea8cb", + "path": "z://MP4\\KaraokeOnVEVO\\Wang Chung - Everybody Have Fun Tonight.mp4", + "title": "Everybody Have Fun Tonight" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Notorious", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "028634c9-d1bd-0e77-bb1d-e90a32e6a8ad", + "path": "z://MP4\\ZoomKaraokeOfficial\\Duran Duran - Notorious.mp4", + "title": "Notorious" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Gregory Abbott", + "playlist_title": "Shake You Down", + "found_song": { + "artist": "Gregory Abbott", + "disabled": false, + "favorite": false, + "guid": "6ab98a45-9ca7-72b0-5be3-fd8e74fb4d58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake You Down - Gregory Abbott.mp4", + "title": "Shake You Down" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Hornsby", + "playlist_title": "The Way It Is", + "found_song": { + "artist": "Bruce Hornsby & The Range", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73334334-06d7-3fa1-db73-cf7d87489fdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\Bruce Hornsby & The Range - The Way It Is - SFMW 854 -05.mp3", + "title": "The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Robbie Nevil", + "playlist_title": "C est La Vie", + "found_song": { + "artist": "Robbie Nevil", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ccca090f-db51-9576-b023-8de19c55a7e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Robbie Nevil - Cest La Vie.mp4", + "title": "C'est La Vie" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "War", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a49b97e5-2723-95d7-07e9-5a97d8a6b281", + "path": "z://CDG\\Various\\Bruce Springsteen - War.mp3", + "title": "War" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billy Idol", + "playlist_title": "To Be A Lover", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "33b225a9-9789-4a30-ea5b-fa13c9d141d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be A Lover - Billy Idol.mp4", + "title": "To Be A Lover" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "Land Of Confusion", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c115062b-b12c-b340-d98e-9cea50b8ba27", + "path": "z://MP4\\KaraokeOnVEVO\\Genesis - Land Of Confusion.mp4", + "title": "Land Of Confusion" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kool", + "playlist_title": "Victory", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "9ee61916-0618-26ef-9847-4e848d5c95e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Victory - Kool And The Gang.mp4", + "title": "Victory" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Billy Vera", + "playlist_title": "At This Moment", + "found_song": { + "artist": "Billy Vera", + "disabled": false, + "favorite": false, + "guid": "db902703-dc31-1225-0b40-16fa61097133", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At This Moment - Billy Vera.mp4", + "title": "At This Moment" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Timbuk 3", + "playlist_title": "The Future s So Bright, I Gotta Wear Shades", + "found_song": { + "artist": "Timbuk 3", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca5a2dca-1c88-105e-1c62-2a65dfdb6b41", + "path": "z://MP4\\KaraokeOnVEVO\\Timbuk 3 - The Future s So Bright, I Gotta Wear Shades.mp4", + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Huey Lewis", + "playlist_title": "Hip To Be Square", + "found_song": { + "artist": "Huey Lewis and the News", + "disabled": false, + "favorite": false, + "guid": "1af987f2-3c6b-adf2-b8bd-a28a2ca18ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hip To Be Square - Huey Lewis and the News.mp4", + "title": "Hip To Be Square" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Madonna", + "playlist_title": "Open Your Heart", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "db9817a8-2537-efba-6091-82ac91f977e7", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Open Your Heart (Karaoke Version).mp4", + "title": "Open Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kansas", + "playlist_title": "All I Wanted", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2b5d93a-b225-fa84-31e6-a8f0cf32c451", + "path": "z://MP4\\KaraokeOnVEVO\\Kansas - All I Wanted.mp4", + "title": "All I Wanted" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bon Jovi", + "playlist_title": "You Give Love A Bad Name", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "4414e37b-a09e-132e-af78-2c29187ad2ba", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - You Give Love A Bad Name (Karaoke Version).mp4", + "title": "You Give Love A Bad Name" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carly Simon", + "playlist_title": "Coming Around Again", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7cce267-9dd4-1478-eba0-724de7dbebbd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Carly Simon - Coming Around Again.mp4", + "title": "Coming Around Again" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Samantha Fox", + "playlist_title": "Touch Me (I Want Your Body)", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44f5a88a-89b2-e85d-f19f-b13c63f64653", + "path": "z://MP4\\ZoomKaraokeOfficial\\Samantha Fox - Touch Me (I Want Your Body).mp4", + "title": "Touch Me (I Want Your Body)" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Run-D.M.C.", + "playlist_title": "You Be Illin", + "found_song": { + "artist": "Run D.M.C.", + "disabled": false, + "favorite": false, + "guid": "3df6d509-c75b-8eba-255f-d498230a3272", + "path": "z://MP4\\Let's Sing Karaoke\\Run DMC - You Be Illin' (Karaoke & Lyrics).mp4", + "title": "You Be Illin'" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Georgia Satellites", + "playlist_title": "Keep Your Hands To Yourself", + "found_song": { + "artist": "The Georgia Satellites", + "disabled": false, + "favorite": false, + "guid": "d39653f2-5d09-52b2-dfe6-3f86c3ccf2ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Keep Your Hands To Yourself - The Georgia Satellites.mp4", + "title": "Keep Your Hands To Yourself" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Tina Turner", + "playlist_title": "Two People", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "128cb37e-1b72-5a8e-f6fa-d121a1a9d213", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD045 - Tina Turner\\Tina Turner - Two People - SFG045 - 06.mp3", + "title": "Two People" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Cameo", + "playlist_title": "Word Up", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "guid": "487a4169-ec16-b5c0-dbea-215863ef6626", + "path": "z://MP4\\Sing King Karaoke\\Cameo - Word Up (Karaoke Version).mp4", + "title": "Word Up" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Human League", + "playlist_title": "Human", + "found_song": { + "artist": "The Human League", + "disabled": false, + "favorite": false, + "guid": "2a9e4eda-c0f8-bca4-3e49-6f6a027dc428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF143\\The Human League - Human - SF143 - 10.mp3", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Lionel Richie", + "playlist_title": "Love Will Conquer All", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "b79a8954-2a3f-70e3-4f73-abb94ca19693", + "path": "z://CDG\\Various\\Lionel Richie - Love Will Conquer All.mp3", + "title": "Love Will Conquer All" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "The Jets", + "playlist_title": "You Got It All", + "found_song": { + "artist": "The Jets", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10d52d0b-8bdf-2293-13a5-75257d77717d", + "path": "z://MP4\\Sing King Karaoke\\The Jets - You Got It All.mp4", + "title": "You Got It All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lionel Richie", + "playlist_title": "Ballerina Girl", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "a4c99f04-fd9e-f9f1-de16-89b6de59bdcb", + "path": "z://CDG\\Various\\Lionel Richie - Ballerina Girl.mp3", + "title": "Ballerina Girl" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cinderella", + "playlist_title": "Nobody s Fool", + "found_song": { + "artist": "Cinderella", + "disabled": false, + "favorite": false, + "guid": "20d03842-36d1-da7a-46f9-50f833671cad", + "path": "z://CDG\\Various\\Cinderella - Nobody's Fool.mp3", + "title": "Nobody's Fool" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin On A Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Big Time", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e5cad6-2471-0b64-e300-200dbdc57158", + "path": "z://MP4\\KaraokeOnVEVO\\Peter Gabriel - Big Time.mp4", + "title": "Big Time" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Talking Heads", + "playlist_title": "Wild Wild Life", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df694940-eebf-534f-331a-07fa29976b3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - Wild Wild Life.mp4", + "title": "Wild Wild Life" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Anita Baker", + "playlist_title": "Caught Up In The Rapture", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "d2d79e64-1e91-03fb-908a-f382d59bbf38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caught Up in the Rapture - Anita Baker.mp4", + "title": "Caught Up in the Rapture" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Madonna", + "playlist_title": "True Blue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d319144-d969-3ea0-8069-7846e797f227", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - True Blue.mp4", + "title": "True Blue" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Boston", + "playlist_title": "Amanda", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "guid": "3380ea71-aa7a-4593-91ff-7eb76aaa29b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amanda - Boston.mp4", + "title": "Amanda" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Debbie Harry", + "playlist_title": "French Kissin", + "found_song": { + "artist": "Debbie Harry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeabe10b-3fd6-ebb1-327b-8eb72d36ce14", + "path": "z://CDG\\Sunfly Collection\\Sunfly Aribter\\FLY023\\Debbie Harry - French Kissin' - FLY023 - 06.mp3", + "title": "French Kissin'" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Toto", + "playlist_title": "I ll Be Over You", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "769822b4-4f1e-ae25-eda0-b325f75622a1", + "path": "z://MP4\\Sing King Karaoke\\Toto - I ll Be Over You.mp4", + "title": "I ll Be Over You" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eddie Money", + "playlist_title": "I Wanna Go Back", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3c0323c-9cd6-268c-9b90-e63238c536f0", + "path": "z://CDG\\Various\\Eddie Money - I Wanna Go Back.mp3", + "title": "I Wanna Go Back" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Beastie Boys", + "playlist_title": "(You Gotta) Fight For Your Right (To Party!)", + "found_song": { + "artist": "Beastie Boys", + "disabled": false, + "favorite": false, + "guid": "6b159db1-23cd-cc60-b83a-527d41058920", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Gotta) Fight For Your Right (To Party!) - Beastie Boys.mp4", + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Grace Jones", + "playlist_title": "I m Not Perfect (But I m Perfect For You)", + "found_song": { + "artist": "Grace Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b9a31bd-42df-88b9-5982-5abbc5983fad", + "path": "z://MP4\\KaraokeOnVEVO\\Grace Jones - I m Not Perfect (But I m Perfect For You.mp4", + "title": "I m Not Perfect (But I m Perfect For You)" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Oran Juice Jones", + "playlist_title": "The Rain", + "found_song": { + "artist": "Oran Juice Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edb70ccd-b0df-ff58-1299-ea55d6fe17c1", + "path": "z://MP4\\KaraokeOnVEVO\\Oran Juice Jones - The Rain.mp4", + "title": "The Rain" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "Suburbia", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bda5144-039e-c530-9f4f-169ed3f2ecfd", + "path": "z://CDG\\SBI\\SBI-01\\SB02858 - Pet Shop Boys - Suburbia.mp3", + "title": "Suburbia" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toto", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77ab272b-54ca-fec6-9acd-c7ceb0604b97", + "path": "z://MP4\\VocalStarKaraoke\\Toto - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Robert Palmer", + "playlist_title": "I Didn t Mean To Turn You On", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "guid": "80b0629e-0830-10fa-d05e-4a59996d7d04", + "path": "z://MP4\\Stingray Karaoke\\I Didn't Mean To Turn You On Robert Palmer Karaoke with Lyrics.mp4", + "title": "I Didn't Mean To Turn You On" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Cameo", + "playlist_title": "Candy", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ace4d3f-3f85-1cdd-2204-f69a9c8f44fc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cameo - Candy.mp4", + "title": "Candy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Paul Simon", + "playlist_title": "Graceland", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "fd0a1d48-19fb-e944-6cf6-71bcb0cb6a74", + "path": "z://CDG\\Various\\Paul Simon - Graceland.mp3", + "title": "Graceland" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Eurythmics", + "playlist_title": "Thorn In My Side", + "found_song": { + "artist": "Eurythmics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5d2b9c3-2202-61f5-f248-22773bd083c9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eurythmics - Thorn In My Side.mp4", + "title": "Thorn In My Side" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "True Colors", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "df588642-a090-1073-ee1a-6ef9ddd75f31", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - True Colors (Karaoke Version).mp4", + "title": "True Colors" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Anita Baker", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ccff3-039f-09a9-4792-a2fb5af2967b", + "path": "z://MP4\\KaraokeOnVEVO\\Anita Baker - Sweet Love.mp4", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Rod Stewart", + "playlist_title": "Every Beat Of My Heart", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09de27fd-2942-9efe-4f9e-ac91c0bfb7c8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Every Beat Of My Heart.mp4", + "title": "Every Beat Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Pretenders", + "playlist_title": "Don't Get Me Wrong", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "f00f171e-5f05-1343-352d-59ec762272ef", + "path": "z://MP4\\KaraokeOnVEVO\\The Pretenders - Don't Get Me Wrong (Karaoke).mp4", + "title": "Don't Get Me Wrong" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Luther Vandross", + "playlist_title": "Stop To Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89195cca-23da-c3a8-4b80-9551ff511f3e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Stop To Love.mp4", + "title": "Stop To Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Goldmine", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Corey Hart", + "playlist_title": "Can t Help Falling In Love", + "found_song": { + "artist": "Haley Reinhart", + "disabled": false, + "favorite": false, + "guid": "a8a6a73a-6e12-a12d-9ed9-53f251d32c53", + "path": "z://MP4\\KtvEntertainment\\Haley Reinhart - Can't Help Falling In Love Karaoke Lyrics.mp4", + "title": "Can't Help Falling In Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Communards", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Communards", + "disabled": false, + "favorite": false, + "guid": "05ae843e-356d-0866-6ee4-fa337bfa316a", + "path": "z://CDG\\Various\\Communards - Don't Leave Me This Way.mp3", + "title": "Don't Leave Me This Way" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Janet Jackson", + "title": "Control", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Survivor", + "title": "Is This Love", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "John Berry", + "title": "Love Is Forever", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Howard Jones", + "title": "You Know I Love You ... Don t You?", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Glass Tiger", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Peter Cetera With Amy Grant", + "title": "The Next Time I Fall", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Cyndi Lauper", + "title": "Change Of Heart", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Gloria Estefan", + "title": "Falling In Love (Uh-Oh)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nancy Martinez", + "title": "For Tonight", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Billy Joel", + "title": "This Is The Time", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Boston", + "title": "We re Ready", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chicago", + "title": "Will You Still Love Me?", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Chico DeBarge", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Ready For The World", + "title": "Love You Down", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Benjamin Orr", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Freddie Jackson", + "title": "Tasty Love", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Journey", + "title": "I ll Be Alright Without You", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Aretha Franklin", + "title": "Jimmy Lee", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Jesse Johnson (Featuring Sly Stone)", + "title": "Crazay", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Human League", + "title": "I Need Your Loving", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Don Johnson", + "title": "Heartache Away", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Eddie Money", + "title": "Take Me Home Tonight", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jeff Lorber", + "title": "Facts Of Love", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dead Or Alive", + "title": "Brand New Lover", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ann Wilson", + "title": "The Best Man In The World", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Linda Ronstadt", + "title": "Somewhere Out There (From \"An American Tail\")", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Orchestral Manoeuvres In The Dark", + "title": "(Forever) Live And Die", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bobby Brown", + "title": "Girlfriend", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Stacey Q", + "title": "We Connect", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Paul Young", + "title": "Some People", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Commodores", + "title": "Goin To The Bank", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "David", + "title": "Welcome To The Boomtown", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ric Ocasek", + "title": "True To You", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bob Geldof", + "title": "This Is The World Calling", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Lisa Lisa", + "title": "All Cried Out", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Daryl Hall", + "title": "Foolish Pride", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ric Ocasek", + "title": "Emotion In Motion", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bob Seger", + "title": "Miami", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "John Parr", + "title": "Blame It On The Radio", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "El DeBarge", + "title": "Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Secret Ties", + "title": "Dancin In My Sleep", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Uptown", + "title": "(I Know) I m Losing You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Bananarama", + "title": "A Trick Of The Night", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Stacy Lattisaw", + "title": "Nail It To The Wall", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Five Star", + "title": "If I Say Yes", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Steve Winwood", + "title": "Freedom Overspill", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 5, + "missing_count": 46, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1985 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Have Mercy", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31759cc0-f9d9-d134-92b7-88ce959d8076", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Have Mercy.mp4", + "title": "Have Mercy" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Reba McEntire", + "playlist_title": "Only In My Mind", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6454ac1f-0855-ddd2-ed1e-e9fe1939477d", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Only In My Mind.mp4", + "title": "Only In My Mind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Gene Watson", + "playlist_title": "Memories To Burn", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576ca423-0ede-9116-3ce7-3a70214a135a", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Memories To Burn.mp4", + "title": "Memories To Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Strait", + "playlist_title": "The Chair", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "73393c7f-5eea-fb52-a1a1-c8a23c7319a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chair - George Strait.mp4", + "title": "The Chair" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Jones", + "playlist_title": "The One I Loved Back Then (The Corvette Song)", + "found_song": { + "artist": "George Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc8709cb-5a3e-f1c4-1e1d-c86b1ac1f41d", + "path": "z://MP4\\KaraokeOnVEVO\\George Jones - The One I Loved Back Then (The Corvette Song.mp4", + "title": "The One I Loved Back Then (The Corvette Song)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Kenny Rogers", + "title": "Morning Desire", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Dan Seals", + "title": "Bop", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Rosanne Cash", + "title": "Never Be You", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Nitty Gritty Dirt Band", + "title": "Home Again In My Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Janie Frickie", + "title": "Somebody Else s Fire", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Forester Sisters", + "title": "Just In Case", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Eddie Rabbitt", + "title": "A World Without Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Restless Heart", + "title": "(Back To The) Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Juice Newton", + "title": "Hurt", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "John Conlee", + "title": "Old School", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle And Gary Morris", + "title": "Makin Up For Lost Time", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T. Graham Brown", + "title": "I Tell It Like It Used To Be", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sawyer Brown", + "title": "Betty s Bein Bad", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marie Osmond", + "title": "There s No Stopping Your Heart", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Conway Twitty", + "title": "The Legend And The Man", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Billy Joe Royal", + "title": "Burned Like A Rocket", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Steve Wariner", + "title": "You Can Dream Of Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Oak Ridge Boys", + "title": "Come On In (You Did The Best You Could)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Waylon Jennings", + "title": "The Devil s On The Loose", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Glen Campbell", + "title": "It s Just A Matter Of Time", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 0, + "missing_count": 20, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1985 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Simple Minds", + "playlist_title": "Alive And Kicking", + "found_song": { + "artist": "Simple Minds", + "disabled": false, + "favorite": false, + "guid": "4165362f-c7c4-758e-3994-d15ad685b507", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Alive And Kicking - Simple Minds.mp4", + "title": "Alive And Kicking" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dionne", + "playlist_title": "That s What Friends Are For", + "found_song": { + "artist": "Dionne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2246dd3-47b0-a4b0-8432-a8cfbac00351", + "path": "z://MP4\\VocalStarKaraoke\\Dionne - That s What Friends Are For.mp4", + "title": "That s What Friends Are For" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Mellencamp", + "playlist_title": "Small Town", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "a34ca4f1-44a5-2103-4c07-2cd19507085c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Small Town - John Mellencamp.mp4", + "title": "Small Town" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mr. Mister", + "playlist_title": "Broken Wings", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "53ec7d17-c49c-8290-7aa6-deeee71f9c2d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Mister - Broken Wings (Karaoke Version).mp4", + "title": "Broken Wings" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Nicks", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Stevie Nicks", + "disabled": false, + "favorite": false, + "guid": "cda52c4e-6e79-8b12-5275-6045360a015c", + "path": "z://MP4\\Let's Sing Karaoke\\Nicks, Stevie - Talk To Me (Karaoke & Lyrics).mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dire Straits", + "playlist_title": "Walk Of Life", + "found_song": { + "artist": "Dire Straits", + "disabled": false, + "favorite": false, + "guid": "92cbb9f9-4b0b-6a6a-9d9d-7504d57ba0b1", + "path": "z://MP4\\TheKARAOKEChannel\\Dire Straits - Walk Of Life (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Walk Of Life" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Survivor", + "playlist_title": "Burning Heart", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17fa371c-1d2e-0fcb-babc-556cfd85e614", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - Burning Heart.mp4", + "title": "Burning Heart" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "My Hometown", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "b933e80f-8805-ba31-a7f7-4d2b0037325a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Hometown - Bruce Springsteen.mp4", + "title": "My Hometown" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Wham!", + "playlist_title": "I m Your Man", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5af17784-ed9c-e250-fc3d-a7eecef71097", + "path": "z://MP4\\Sing King Karaoke\\Wham! - I m Your Man.mp4", + "title": "I m Your Man" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Miami Sound Machine", + "playlist_title": "Conga", + "found_song": { + "artist": "Miami Sound Machine", + "disabled": false, + "favorite": false, + "guid": "0d26ee70-143d-b435-f65d-c20a28b1f733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Conga - Miami Sound Machine.mp4", + "title": "Conga" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Paul McCartney", + "playlist_title": "Spies Like Us", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0325025b-cc3a-73a1-bb04-b2a857f1f61d", + "path": "z://MP4\\KaraokeOnVEVO\\Paul McCartney - Spies Like Us.mp4", + "title": "Spies Like Us" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Heart", + "playlist_title": "Never", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ffa400a-a5d7-7936-05ff-2c69b7039bed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heart - Never.mp4", + "title": "Never" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Starship", + "playlist_title": "We Built This City", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": true, + "guid": "2cbdbb6e-b85c-603b-fe4c-bba61bf733b1", + "path": "z://MP4\\Sing King Karaoke\\Starship - We Built This City (Karaoke Version).mp4", + "title": "We Built This City" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pat Benatar", + "playlist_title": "Sex As A Weapon", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "2654cae5-7229-d408-21f1-a5c19da9e2c0", + "path": "z://MP4\\Let's Sing Karaoke\\Benatar, Pat - Sex As A Weapon (Karaoke & Lyrics).mp4", + "title": "Sex As A Weapon" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Whitney Houston", + "playlist_title": "How Will I Know", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "fef371b0-6bfb-2dd4-36e5-448bfddc02be", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - How Will I Know (Karaoke Version).mp4", + "title": "How Will I Know" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Sade", + "playlist_title": "The Sweetest Taboo", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8948469-9173-9993-6c4b-6c01d9380d6a", + "path": "z://MP4\\KaraokeOnVEVO\\Sade - The Sweetest Taboo.mp4", + "title": "The Sweetest Taboo" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Thompson Twins", + "playlist_title": "Lay Your Hands On Me", + "found_song": { + "artist": "Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e589d85-1641-554a-267a-a9bf9a3e3bd1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thompson Twins - Lay Your Hands On Me.mp4", + "title": "Lay Your Hands On Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "A-Ha", + "playlist_title": "The Sun Always Shines on T.V.", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b06ef4d-5e09-3e16-88af-43a113d9813b", + "path": "z://MP4\\ZoomKaraokeOfficial\\A-ha - The Sun Always Shines On TV.mp4", + "title": "The Sun Always Shines On T.V." + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "James Brown", + "playlist_title": "Living In America", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60a1c1ad-2c1f-7320-a648-564c9ae9971d", + "path": "z://MP4\\KaraokeOnVEVO\\James Brown - Living In America.mp4", + "title": "Living In America" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Dream Academy", + "playlist_title": "Life In A Northern Town", + "found_song": { + "artist": "The Dream Academy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab450d32-3d66-3561-c1d6-e716abea6d85", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dream Academy - Life In A Northern Town.mp4", + "title": "Life In A Northern Town" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Glenn Frey", + "playlist_title": "You Belong To The City", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1bb175c-281b-2fcb-d05c-0a2120b65748", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Glenn Frey - You Belong To The City - SFMW 812 -15.mp3", + "title": "You Belong To The City" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mr. Mister", + "playlist_title": "Kyrie", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "84447bd2-35e6-3062-7111-bce495e6aa32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kyrie - Mr. Mister.mp4", + "title": "Kyrie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Mike", + "playlist_title": "Silent Running", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91c6fbd1-9968-149e-30ab-97205f4129e2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Silent Running.mp4", + "title": "Silent Running" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Part-Time Lover", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c493a02-6891-f493-1abd-8ed5b4e6e696", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Part Time Lover (2.mp4", + "title": "Part Time Lover" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Freddie Jackson", + "playlist_title": "You Are My Lady", + "found_song": { + "artist": "Freddie Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1598cd6e-36ac-bb9f-9a1a-353a6fffa2a4", + "path": "z://MP4\\KaraokeOnVEVO\\Freddie Jackson - You Are My Lady.mp4", + "title": "You Are My Lady" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Queen", + "playlist_title": "One Vision", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "8e934654-67ff-dcb8-4bca-0058dd8f558c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Vision - Queen.mp4", + "title": "One Vision" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Starship", + "playlist_title": "Sara", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": false, + "guid": "d99b8b63-5b2c-40bf-19e0-6ddd6d9ce9f3", + "path": "z://MP4\\Let's Sing Karaoke\\Starship - Sara (Karaoke & Lyrics) (2).mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "guid": "6c75d46d-966e-b68c-0f03-e4f260e19b43", + "path": "z://MP4\\TheKARAOKEChannel\\Kate Bush - Running Up That Hill (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Running Up That Hill" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Atlantic Starr", + "playlist_title": "Secret Lovers", + "found_song": { + "artist": "Atlantic Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83b352fc-9837-58b2-56f5-daf8ef3c8b77", + "path": "z://MP4\\ZoomKaraokeOfficial\\Atlantic Starr - Secret Lovers.mp4", + "title": "Secret Lovers" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Whitney Houston", + "playlist_title": "Saving All My Love For You", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "1edc1b52-4d78-eb42-aedf-b4eba09dbe4f", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - Saving All My Love For You (Karaoke Version).mp4", + "title": "Saving All My Love For You" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Talking Heads", + "playlist_title": "And She Was", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d427f184-9105-d62f-4938-9c777d5914d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - And She Was.mp4", + "title": "And She Was" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "A-Ha", + "playlist_title": "Take On Me", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "guid": "90fe4ebf-e5df-fddf-f68f-032c283b1635", + "path": "z://MP4\\Sing King Karaoke\\a-ha - Take On Me (Karaoke Version).mp4", + "title": "Take On Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Sting", + "playlist_title": "Fortress Around Your Heart", + "found_song": { + "artist": "Sting", + "disabled": false, + "favorite": false, + "guid": "b985d911-381c-606f-8b75-49a4ec30c087", + "path": "z://MP4\\Let's Sing Karaoke\\Sting - Fortress Around Your Heart (Karaoke & Lyrics).mp4", + "title": "Fortress Around Your Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 69, + "playlist_artist": "Tears For Fears", + "playlist_title": "Head Over Heels", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56c0b508-53dc-1031-ae69-0e8c19695894", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Tears For Fears - Head Over Heals - SFMW 850 -11.mp3", + "title": "Head Over Heals" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Sly Fox", + "playlist_title": "Let s Go All The Way", + "found_song": { + "artist": "Sly Fox", + "disabled": false, + "favorite": false, + "guid": "6c7f2840-8f53-e3dd-40f8-f955c1379e81", + "path": "z://CDG\\Various\\Sly Fox - Lets Go All The Way.mp3", + "title": "Lets Go All The Way" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Freedom", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "John Mellencamp", + "playlist_title": "Lonely Ol Night", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "guid": "53bcf35d-9188-fc91-f317-363fb2dd6853", + "path": "z://MP4\\Let's Sing Karaoke\\Mellencamp, John Cougar - Lonely Ol' Night (Karaoke & Lyrics).mp4", + "title": "Lonely Ol' Night" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Lionel Richie", + "title": "Say You, Say Me (Title Song From White Nights)", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Eddie Murphy", + "title": "Party All The Time", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Klymaxx", + "title": "I Miss You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Phil Collins/Marilyn Martin", + "title": "Separate Lives (Theme From White Nights)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Cars", + "title": "Tonight She Comes", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Arcadia", + "title": "Election Day", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "ZZ Top", + "title": "Sleeping Bag", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Scritti Politti", + "title": "Perfect Way", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sting", + "title": "Love Is The Seventh Wave", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Kool", + "title": "Emergency", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bryan Adams/Tina Turner", + "title": "It s Only Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Stevie Wonder", + "title": "Go Home", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clarence Clemons", + "title": "You re A Friend Of Mine", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Night Ranger", + "title": "Goodbye", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ta Mara", + "title": "Everybody Dance", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Starpoint", + "title": "Object Of My Desire", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jellybean", + "title": "Sidewalk Talk", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Billy Ocean", + "title": "When The Going Gets Tough (Jewel Of The Nile Theme)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Pete Townsend", + "title": "Face The Face", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Aretha Franklin", + "title": "Who s Zoomin Who", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Elton John", + "title": "Wrap Her Up", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sheila E", + "title": "A Love Bizarre", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Corey Hart", + "title": "Everything In My Heart", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Artists United Against Apartheid", + "title": "Sun City", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eurythmics And Aretha Franklin", + "title": "Sisters Are Doing It For Themselves", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Baltimora", + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Rush", + "title": "The Big Money", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sheena Easton", + "title": "Do It For Love", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Wang Chung", + "title": "To Live And Die In L.A.", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Asia", + "title": "Go", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Ready For The World", + "title": "Digital Display", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "New Edition", + "title": "Count Me Out", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Twisted Sister", + "title": "Leader Of The Pack", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Paul Young", + "title": "Everything Must Change", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Jack Wagner", + "title": "Too Young", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jan Hammer", + "title": "Miami Vice Theme", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Freddie Jackson", + "title": "He ll Never Love You (Like I Do)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Barbra Streisand", + "title": "Somewhere (From West Side Story)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Hooters", + "title": "Day By Day", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Isley/Jasper/Isley", + "title": "Caravan Of Love", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "David Foster", + "title": "Love Theme From St. Elmo s Fire (Instrumental)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lisa Lisa", + "title": "Can You Feel The Beat", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "James Taylor", + "title": "Everyday", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Kenny Rogers", + "title": "Morning Desire", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Tina Turner", + "title": "One Of The Living", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Charlie Sexton", + "title": "Beat s So Lonely", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "El DeBarge With DeBarge", + "title": "The Heart Is Not So Smart", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "O.M.D.", + "title": "Secret", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Chaka Khan", + "title": "Own The Night", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "ABC", + "title": "Be Near Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Nick Lowe", + "title": "I Knew The Bride (When She Use To Rock N Roll)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Eugene Wilde", + "title": "Don t Say No Tonight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "John Cafferty", + "title": "Small Town Girl", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Loverboy", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Fortune", + "title": "Stacy", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Alisha", + "title": "Baby Talk", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Joni Mitchell", + "title": "Good Friends", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Roger Daltrey", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kiss", + "title": "Tears Are Falling", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Alarm", + "title": "Strength", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Loverboy", + "title": "Lovin Every Minute Of It", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Olivia Newton-John", + "title": "Soul Kiss", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ray Parker Jr.", + "title": "Girls Are More Fun", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 4, + "missing_count": 63, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1984 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Why Not Me", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "6b549b5b-0dd6-12f8-a166-76b508324dc3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Not Me - The Judds.mp4", + "title": "Why Not Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Strait", + "playlist_title": "Does Fort Worth Ever Cross Your Mind", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "f66875ad-ae08-50a2-b8a4-160a542fe2e6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Does Fort Worth Ever Cross Your Mind - George Strait.mp4", + "title": "Does Fort Worth Ever Cross Your Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "How Blue", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "4ae4cc67-66bc-92fd-ac37-57137eec7803", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Blue - Reba McEntire.mp4", + "title": "How Blue" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "All My Rowdy Friends Are Coming Over Tonight", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "deaab90c-9941-816b-3e42-2516d10e604b", + "path": "z://MP4\\KaraokeOnVEVO\\Hank Williams Jr. - All My Rowdy Friends Are Coming Over Tonight.mp4", + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "John Conlee", + "playlist_title": "Years After You", + "found_song": { + "artist": "John Conlee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "955947bd-a1f4-fe1c-fbe6-d68c7eccb054", + "path": "z://MP4\\KaraokeOnVEVO\\John Conlee - Years After You.mp4", + "title": "Years After You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Watson", + "playlist_title": "Got No Reason Now For Goin' Home", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4ecb4f-eb1b-01f7-336b-a1e2b2c22cc9", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Got No Reason Now For Goin Home.mp4", + "title": "Got No Reason Now For Goin' Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Something In My Heart", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd27195-6594-6cd0-6d1b-4cbdd6bf88eb", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Something In My Heart.mp4", + "title": "Something In My Heart" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Conway Twitty", + "playlist_title": "Ain't She Something Else", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80a1a4b3-51a3-e6bd-24b2-305535950679", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Aint She Something Else.mp4", + "title": "Ain't She Something Else" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Waylon Jennings", + "playlist_title": "America", + "found_song": { + "artist": "Waylon Jennings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33acb1fd-a859-e251-9ca0-5b75aec15208", + "path": "z://MP4\\KaraokeOnVEVO\\Waylon Jennings - Amanda.mp4", + "title": "Amanda" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Anne Murray & Dave Loggins", + "playlist_title": "Nobody Loves Me Like You Do", + "found_song": { + "artist": "Anne Murray ft. Dave Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69b91963-ec09-6145-ed71-d294bc761a80", + "path": "z://MP4\\KaraokeOnVEVO\\Anne Murray & Dave Loggins - Nobody Loves Me Like You Do.mp4", + "title": "Nobody Loves Me Like You Do" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Merle Haggard", + "playlist_title": "A Place To Fall Apart", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "504d5e79-c99d-49db-02a8-a66427b95a02", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - Place To Fall Apart, A (Karaoke & Lyrics).mp4", + "title": "Place To Fall Apart, A" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "George Jones", + "title": "She's My Rock", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Nitty Gritty Dirt Band", + "title": "I Love Only You", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Eddie Rabbitt", + "title": "The Best Year Of My Life", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mark Gray", + "title": "Diamond In The Dust", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Barbara Mandrell", + "title": "Crossword Puzzle", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Crystal Gayle", + "title": "Me Against The Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alabama", + "title": "(There's A) Fire In The Night", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Bellamy Brothers", + "title": "World's Greatest Lover", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Oak Ridge Boys", + "title": "Make My Life With You", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Keith Stegall", + "title": "Whatever Turns You On", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "T.G. Sheppard", + "title": "One Owner Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sawyer Brown", + "title": "Leona", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ed Bruce", + "title": "You Turn Me On (Like A Radio)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "B.J. Thomas", + "title": "The Girl Most Likely to", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 3, + "missing_count": 14, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1984 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Madonna", + "playlist_title": "Like A Virgin", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82924b53-0656-f1bd-6d2b-1307d37b1a33", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Like A Virgin.mp4", + "title": "Like A Virgin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Duran Duran", + "playlist_title": "The Wild Boys", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "d1f36c85-476c-0801-8043-2ca41db04fad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wild Boys - Duran Duran.mp4", + "title": "The Wild Boys" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Honeydrippers", + "playlist_title": "Sea Of Love", + "found_song": { + "artist": "The Honeydrippers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50e2318f-4b67-19ff-4ad2-0561af9ab40c", + "path": "z://MP4\\KaraokeOnVEVO\\The Honeydrippers - Sea Of Love.mp4", + "title": "Sea Of Love" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "New Edition", + "playlist_title": "Cool It Now", + "found_song": { + "artist": "New Edition", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9dcd1472-3cbd-b3a3-42bd-a7d013fd7f1e", + "path": "z://CDG\\SBI\\SBI-03\\SB23442 - New Edition - Cool It Now.mp3", + "title": "Cool It Now" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Pat Benatar", + "playlist_title": "We Belong", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "0eb67fb4-8755-3f0f-a920-a06488014cd7", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - We Belong (Karaoke Version).mp4", + "title": "We Belong" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Chaka Khan", + "playlist_title": "I Feel For You", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "guid": "ffe9871c-be9a-a8f3-bcd3-45abee3dda83", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel For You - Chaka Khan.mp4", + "title": "I Feel For You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Paul McCartney", + "playlist_title": "No More Lonely Nights", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "73fd43a4-c100-bb3e-06b0-371e4c9d0591", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Lonely Nights - Paul McCartney.mp4", + "title": "No More Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Wagner", + "playlist_title": "All I Need", + "found_song": { + "artist": "Jack Wagner", + "disabled": false, + "favorite": false, + "guid": "9df9004e-9734-4b81-6b71-bab6400bf8bf", + "path": "z://MP4\\Let's Sing Karaoke\\Wagner, Jack - All I Need (Karaoke & Lyrics).mp4", + "title": "All I Need" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wham!", + "playlist_title": "Wake Me Up Before You Go-Go", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f190073d-007d-fc5c-9ab1-fa26472afd1e", + "path": "z://MP4\\Sing King Karaoke\\Wham - Wake Me Up Before You Go Go (2.mp4", + "title": "Wake Me Up Before You Go Go" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Bryan Adams", + "playlist_title": "Run To You", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "893cf134-64de-00fe-1430-17fd0cc26b1b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run To You - Bryan Adams.mp4", + "title": "Run To You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "All Through The Night", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "e3dcb50d-db37-1b61-0dfa-4c8fd7070c11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Through The Night - Cyndi Lauper.mp4", + "title": "All Through The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Born In The USA", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "ba0ac141-5074-6d79-4394-1c37b9e0f402", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Born In The USA - Bruce Springsteen.mp4", + "title": "Born In The USA" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chicago", + "playlist_title": "You're The Inspiration", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "d94f3e40-7ca5-0b43-df1b-42b41368e34a", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - You're The Inspiration (Karaoke).mp4", + "title": "You're The Inspiration" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Survivor", + "playlist_title": "I Can't Hold Back", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8d29fe9-ed97-27a7-919a-ac159c85add0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - I Cant Hold Back.mp4", + "title": "I Can't Hold Back" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jermaine Jackson", + "playlist_title": "Do What You Do", + "found_song": { + "artist": "Jermaine Jackson", + "disabled": false, + "favorite": false, + "guid": "9756e887-9d1d-f608-02cd-25ce4b46c6c4", + "path": "z://MP4\\KaraFun Karaoke\\Do What You Do - Jermaine Jackson Karaoke Version KaraFun.mp4", + "title": "Do What You Do" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lionel Richie", + "playlist_title": "Penny Lover", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "6f072691-39dd-3f0b-11c0-1d9ecf94e2d4", + "path": "z://CDG\\Various\\Lionel Richie - Penny Lover.mp3", + "title": "Penny Lover" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foreigner", + "playlist_title": "I Want To Know What Love Is", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "bf2b5cab-4445-1352-3688-5448fc48274f", + "path": "z://MP4\\Sing King Karaoke\\Foreigner - I Want To Know What Love Is (Karaoke Version).mp4", + "title": "I Want To Know What Love Is" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Sheena Easton", + "playlist_title": "Strut", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "14cd4990-3022-16fa-353b-0055f980dabb", + "path": "z://CDG\\Various\\Sheena Easton - Strut.mp3", + "title": "Strut" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tina Turner", + "playlist_title": "Better Be Good To Me", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5646a295-c515-d339-de6a-d0d4a3084e71", + "path": "z://MP4\\KaraokeOnVEVO\\Tina Turner - Better Be Good To Me.mp4", + "title": "Better Be Good To Me" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Billy Ocean", + "playlist_title": "Lover Boy", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec34902f-3d28-fea5-fd17-f5f506cd5946", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ocean - Lover Boy.mp4", + "title": "Lover Boy" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "U2", + "playlist_title": "(Pride) In The Name Of Love", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "f39db30c-bd34-38d6-617b-72cd1f0c2ab8", + "path": "z://CDG\\Various\\U2 - Pride In The Name Of Love.mp3", + "title": "Pride In The Name Of Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Perry", + "playlist_title": "Foolish Heart", + "found_song": { + "artist": "Steve Perry", + "disabled": false, + "favorite": false, + "guid": "2ffe5cec-42e1-3082-21b0-cbd00222e4fd", + "path": "z://MP4\\Let's Sing Karaoke\\Perry, Steve - Foolish Heart (Karaoke & Lyrics) (2).mp4", + "title": "Foolish Heart" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Midnight Star", + "playlist_title": "Operator", + "found_song": { + "artist": "Midnight Star", + "disabled": false, + "favorite": false, + "guid": "4107e753-68a9-2ee0-e393-c2fa3a062f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Midnight Star - Operator - SF068 - 10.mp3", + "title": "Operator" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Frankie Goes To Hollywood", + "playlist_title": "Two Tribes", + "found_song": { + "artist": "Frankie Goes To Hollywood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a1645fe-d66e-acb7-9116-6b1774df0f4e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Goes To Hollywood - Two Tribes.mp4", + "title": "Two Tribes" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "General Public", + "playlist_title": "Tenderness", + "found_song": { + "artist": "General Public", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72772726-b1b9-7217-25e9-267561a8f7de", + "path": "z://MP4\\KaraokeOnVEVO\\General Public - Tenderness.mp4", + "title": "Tenderness" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Glenn Frey", + "playlist_title": "The Heat Is On", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25a34bc0-89c9-9634-1ab1-ff4ae0a5ca68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 803\\Glenn Frey - The Heat Is On - SFMW 803 -15.mp3", + "title": "The Heat Is On" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Tonight", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7c6a67b4-37df-ec1d-93bf-f0ac98a034c1", + "path": "z://CDG\\Various\\David Bowie - Tonight.mp3", + "title": "Tonight" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Money Changes Everything", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02b63ce1-0256-de3f-6f36-bcc16b05e5cb", + "path": "z://MP4\\KaraokeOnVEVO\\Cyndi Lauper - Money Changes Everything.mp4", + "title": "Money Changes Everything" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "John Fogerty", + "playlist_title": "The Old Man Down The Road", + "found_song": { + "artist": "John Fogerty", + "disabled": false, + "favorite": false, + "guid": "1e91541f-36f7-9c68-b793-85ea0c5652ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Old Man Down The Road - John Fogerty.mp4", + "title": "The Old Man Down The Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Billy Ocean", + "playlist_title": "Caribbean Queen (No More Love On The Run)", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "guid": "136ebf1e-172c-0c1c-a522-9f0740bbf0d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caribbean Queen (No More Love On The Run) - Billy Ocean.mp4", + "title": "Caribbean Queen (No More Love On The Run)" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Just Called To Say I Love You", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "cd80213b-8611-c5ea-8582-a6ffdd76694f", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - I Just Called To Say I Love You (Karaoke Version).mp4", + "title": "I Just Called To Say I Love You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "George Benson", + "playlist_title": "20/20", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "c357fc23-a259-892a-2e6c-2db41a85bfd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 20 20 - George Benson.mp4", + "title": "20 20" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Alphaville", + "playlist_title": "Big In Japan", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "guid": "f5601635-c590-4f96-aef6-b89f0954ed1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF037\\Alphaville - Big In Japan - SF037 - 04.mp3", + "title": "Big In Japan" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Temptations", + "playlist_title": "Treat Her Like A Lady", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "8edad771-ef84-b372-0a3a-de188f639bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Treat Her Like a Lady - The Temptations.mp4", + "title": "Treat Her Like a Lady" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bronski Beat", + "playlist_title": "Small Town Boy", + "found_song": { + "artist": "Bronski Beat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc159e6-62c4-3a1f-849f-9a4b07485630", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 829\\Bronski Beat - Small Town Boy - SFMW 829 -05.mp3", + "title": "Small Town Boy" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "David Bowie", + "playlist_title": "Blue Jean", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "c21d8c5c-1fd8-9194-7600-9f7447b401b7", + "path": "z://MP4\\TheKARAOKEChannel\\Blue Jean in the Style of David Bowie with lyrics (no lead vocal).mp4", + "title": "Blue Jean" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Julian Lennon", + "playlist_title": "Valotte", + "found_song": { + "artist": "Julian Lennon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa527f38-faae-e19a-937f-352dcd04de76", + "path": "z://MP4\\ZoomKaraokeOfficial\\Julian Lennon - Saltwater.mp4", + "title": "Saltwater" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Don Henley", + "playlist_title": "The Boys Of Summer", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e3998085-037c-f55d-c728-269d825f090e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF123\\Don Henley - Boys Of Summer - SF123 - 16.mp3", + "title": "Boys Of Summer" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Band-Aid", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band-Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f33d73bf-e949-f418-a1f6-4472956bc908", + "path": "z://MP4\\Sing King Karaoke\\Band-Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Teena Marie", + "playlist_title": "Lover Girl", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "caa815e7-f62f-54e3-0c95-9a9e01ac5372", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lovergirl - Teena Marie.mp4", + "title": "Lovergirl" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Daryl Hall John Oates", + "title": "Out Of Touch", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bob Seger", + "title": "Understanding", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Cars", + "title": "Hello Again", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Philip Bailey With Phil Collins", + "title": "Easy Lover", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rebbie Jackson", + "title": "Centipede", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Ray Parker Jr.", + "title": "Jamie", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Huey Lewis & The News", + "title": "Walking On A Thin Line", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Dan Hartman", + "title": "We Are The Young", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Toto", + "title": "Stranger In Town", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Prince And The Revolution", + "title": "I Would Die 4 U", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rick Springfield", + "title": "Bruce", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sheila E", + "title": "The Belle Of St. Mark", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "John Cafferty & The Beaver Brown Band", + "title": "Tender Years", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stevie Wonder", + "title": "Love Light In Flight", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Wham! Featuring George Michael", + "title": "Careless Whisper", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Pointer Sisters", + "title": "Neutron Dance", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Giuffria", + "title": "Call To The Heart", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Daryl Hall John Oates", + "title": "Method Of Modern Love", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Elton John", + "title": "In Neon", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Corey Hart", + "title": "It Ain't Enough", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Ashford & Simpson", + "title": "Solid", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Kool & The Gang", + "title": "Misled", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Time", + "title": "Jungle Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Culture Club", + "title": "Mistake No. 3", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Prince And The Revolution", + "title": "Purple Rain", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Laura Branigan", + "title": "Ti Amo", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Diana Ross", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Barbra Streisand With Kim Carnes", + "title": "Make No Mistake, He's Mine", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "REO Speedwagon", + "title": "I Do'wanna Know", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Sheena Easton", + "title": "Sugar Walls", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jeffrey Osborne", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Roger Hodgson", + "title": "Had A Dream (Sleeping With The Enemy)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dennis DeYoung", + "title": "Desert Moon", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Billy Idol", + "title": "Catch My Fall", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "John Hunter", + "title": "Tragedy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Shalamar", + "title": "Amnesia", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rick Dees", + "title": "Eat My Shorts", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "John Parr", + "title": "Naughty Naughty", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Shaw", + "title": "Lonely School", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Billy Squier", + "title": "Eye On You", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "New Edition", + "title": "Mr. Telephone Man", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Rod Stewart", + "title": "All Right Now", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "John Waite", + "title": "Tears", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kenny Rogers", + "title": "The Greatest Gift Of All", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Rick Springfield With Randy Crawford", + "title": "Taxi Dancing", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Kinks", + "title": "Do It Again", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "title": "What About Me?", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Autograph", + "title": "Turn Up The Radio", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Sammy Hagar", + "title": "I Can't Drive 55", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Bananarama", + "title": "The Wild Life", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Dazz Band", + "title": "Let It All Blow", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Culture Club", + "title": "The War Song", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Peter Wolf", + "title": "I Need You Tonight", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Scandal Featuring Patty Smyth", + "title": "Hands Tied", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dennis DeYoung", + "title": "Don't Wait For Heroes", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Melissa Manchester", + "title": "Thief Of Hearts", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 4, + "missing_count": 56, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1983 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "You Look So Good In Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "c4acd2f2-90c8-bc73-709f-40173edbf3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Look So Good In Love - George Strait.mp4", + "title": "You Look So Good In Love" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "You Made A Wanted Man Of Me", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "760331bc-e0ee-1111-3312-3fb97acb2292", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - You Made A Wanted Man Of Me.mp4", + "title": "You Made A Wanted Man Of Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Show Her", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48b23b7a-80a9-1cf1-d77e-b23f4de9e76c", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - Show Her.mp4", + "title": "Show Her" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Merle Haggard", + "playlist_title": "That's The Way Love Goes", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "3a5f9151-0205-8864-edb8-b6b1aca0aa59", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - That's The Way Love Goes (Karaoke & Lyrics).mp4", + "title": "That's The Way Love Goes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Larry Gatlin & The Gatlin Brothers", + "title": "Houston (Means I'm One Day Closer To You)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "T.G. Sheppard", + "title": "Slow Burn", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "John Anderson", + "title": "Black Sheep", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Charley Pride", + "title": "Ev'ry Heart Should Have One", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Oak Ridge Boys", + "title": "Ozark Mountain Jubilee", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "John Conlee", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Nitty Gritty Dirt Band", + "title": "Dance Little Jean", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Vern Gosdin", + "title": "I Wonder Where We'd Be Tonight", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Crystal Gayle", + "title": "The Sound Of Goodbye", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Hank Williams Jr.", + "title": "Queen Of My Heart", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Willie Nelson With Waylon Jennings", + "title": "Take It To The Limit", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Waylon Jennings With Hank Williams, Jr.", + "title": "The Conversation", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Joe Stampley", + "title": "Double Shot (Of My Baby's Love)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Charly McClain", + "title": "Sentimental Ol' You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Gail Davies", + "title": "You're A Hard Dog (To Keep Under The Porch)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mark Gray", + "title": "Wounded Hearts", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Shelly West", + "title": "Another Motel Memory", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ed Bruce", + "title": "After All", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Louise Mandrell", + "title": "Runaway Heart", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mel McDaniel", + "title": "I Call It Love", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kathy Mattea", + "title": "Street Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 4, + "fuzzy_match_count": 0, + "missing_count": 21, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1983 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Union Of The Snake", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "a78e3d90-aef2-21a0-de4d-3b96dc938f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - Union Of The Snake - SFG004 - 05.mp3", + "title": "Union Of The Snake" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Yes", + "playlist_title": "Owner Of A Lonely Heart", + "found_song": { + "artist": "Yes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "827c4888-be91-7b5f-8738-dde120311a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\Yes - Owner Of A Lonely Heart.mp4", + "title": "Owner Of A Lonely Heart" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lionel Richie", + "playlist_title": "All Night Long (All Night)", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c59709f-6a27-9526-1881-89175c309d53", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - All Night Long (All Night.mp4", + "title": "All Night Long (All Night)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Billy Joel", + "playlist_title": "Uptown Girl", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99e893ce-527a-2962-e735-ea73561cd2cc", + "path": "z://MP4\\Sing King Karaoke\\Billy Joel - Uptown Girl.mp4", + "title": "Uptown Girl" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Matthew Wilder", + "playlist_title": "Break My Stride", + "found_song": { + "artist": "Matthew Wilder", + "disabled": false, + "favorite": false, + "guid": "1ed1dcdf-fd83-2b45-be09-6ec26dda28b3", + "path": "z://MP4\\Sing King Karaoke\\Matthew Wilder - Break My Stride (Karaoke Version).mp4", + "title": "Break My Stride" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elton John", + "playlist_title": "I Guess That's Why They Call It The Blues", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "576176e2-d104-3d21-b39a-fdd740fd449c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Guess That s Why They Call It The Blues - Elton John.mp4", + "title": "I Guess That s Why They Call It The Blues" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Romantics", + "playlist_title": "Talking In Your Sleep", + "found_song": { + "artist": "The Romantics", + "disabled": false, + "favorite": false, + "guid": "0532d2e4-80e2-c8cb-4a62-9e1ed94dce09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talking In Your Sleep - The Romantics.mp4", + "title": "Talking In Your Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Culture Club", + "playlist_title": "Church Of The Poison Mind", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4f6ae87-86ed-bbd0-ad44-52e03e38813e", + "path": "z://MP4\\KaraokeOnVEVO\\Culture Club - Church Of The Poison Mind.mp4", + "title": "Church Of The Poison Mind" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Police", + "playlist_title": "Synchronicity II", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "072b6bd8-442d-38df-4fa0-35a64c8a4bf2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Synchronicity II - The Police.mp4", + "title": "Synchronicity II" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Culture Club", + "playlist_title": "Karma Chameleon", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "3b5f86cf-f3d6-65c3-1259-341b308eb1d8", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Karma Chameleon (Karaoke Version).mp4", + "title": "Karma Chameleon" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Big Country", + "playlist_title": "In A Big Country", + "found_song": { + "artist": "Big Country", + "disabled": false, + "favorite": false, + "guid": "747b5418-d3f9-1609-77d5-6c6c3c933c44", + "path": "z://MP4\\Let's Sing Karaoke\\Big Country - In A Big Country (Karaoke & Lyrics).mp4", + "title": "In A Big Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lionel Richie", + "playlist_title": "Running With The Night", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f662e4-5410-6426-772a-94326ef773a2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 869\\Lionel Richie - Running With The Night - SFMW 869 -11.mp3", + "title": "Running With The Night" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Barry Manilow", + "playlist_title": "Read 'Em And Weep", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "5d835c02-69d9-663c-ccb9-49b700d2d50e", + "path": "z://MP4\\Let's Sing Karaoke\\Manilow, Barry - Read 'em And Weep (Karaoke & Lyrics).mp4", + "title": "Read 'em And Weep" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "John Cougar Mellencamp", + "playlist_title": "Crumblin' Down", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9554f85-df2c-9620-1721-29b1d5a4d4dc", + "path": "z://MP4\\KaraokeOnVEVO\\John Cougar Mellencamp - Crumblin' Down.mp4", + "title": "Crumblin' Down" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Genesis", + "playlist_title": "That's All", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "guid": "3128ece3-39c3-405a-82d9-280fb3a2cfcb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke That s All - Genesis.mp4", + "title": "That s All" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "John Mellencamp", + "playlist_title": "Pink Houses", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "640e1694-54ac-e4a1-7079-38e32ddc9b5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pink Houses - John Mellencamp.mp4", + "title": "Pink Houses" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Madonna", + "playlist_title": "Holiday", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67c34432-f5d0-3085-6d4b-e4375c43ac56", + "path": "z://MP4\\KaraokeOnVEVO\\Madonna - Holiday.mp4", + "title": "Holiday" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Jump 'n The Saddle", + "playlist_title": "The Curly Shuffle", + "found_song": { + "artist": "Jump 'n The Saddle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72fcc8ab-3e2a-cb57-5099-e4e16a4005c8", + "path": "z://MP4\\KaraokeOnVEVO\\Jump n The Saddle - The Curly Shuffle.mp4", + "title": "The Curly Shuffle" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "Stay With Me Tonight", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "guid": "3058e9a9-1a92-c83e-72d3-6bb1889f9377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stay With Me Tonight - Jeffrey Osborne.mp4", + "title": "Stay With Me Tonight" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Christopher Cross", + "playlist_title": "Think Of Laura", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31716e96-c609-b341-ba11-cfb191555e4e", + "path": "z://MP4\\KaraokeOnVEVO\\Christopher Cross - Think Of Laura.mp4", + "title": "Think Of Laura" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Deborah Allen", + "playlist_title": "Baby I Lied", + "found_song": { + "artist": "Deborah Allen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "761b09d6-6bf0-70c4-4cc6-1927e9196a75", + "path": "z://CDG\\Various\\Deborah Allen - Baby I Lied.mp3", + "title": "Baby I Lied" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Rick Springfield", + "playlist_title": "Souls", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aea6f2d4-14d9-6941-9d12-88e8eb6ddaed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Souls.mp4", + "title": "Souls" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Shannon", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Shannon", + "disabled": false, + "favorite": false, + "guid": "00a29a83-4e81-e2cf-18a4-9fddcd4686c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Shannon - Let The Music Play - SF068 - 03.mp3", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Billy Joel", + "playlist_title": "An Innocent Man", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0a117e9-30bd-8a5d-8174-55c385692f3f", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - An Innocent Man.mp4", + "title": "An Innocent Man" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Real Life", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "Real Life", + "disabled": false, + "favorite": false, + "guid": "25a42944-9bff-3a17-4ecd-4261a77471dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Me an Angel - Real Life.mp4", + "title": "Send Me an Angel" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Stray Cats", + "playlist_title": "I Won't Stand In Your Way", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6639c134-d7e9-b3be-c218-59ef470e752b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Stray Cats - I Wont Stand In Your Way.mp4", + "title": "I Won't Stand In Your Way" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Dolly Parton", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "0920ff49-12b3-a9d0-e996-c1ea4eb8ef63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - Dolly Parton.mp4", + "title": "Save The Last Dance For Me" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Nena", + "playlist_title": "99 Luftballons", + "found_song": { + "artist": "Nena", + "disabled": false, + "favorite": false, + "guid": "fc881f99-ac9e-d864-0e56-d6ecc0fc2cf8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 99 Luftballons - Nena.mp4", + "title": "99 Luftballons" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Sheena Easton", + "playlist_title": "Almost Over You", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "e5925a6d-aaae-dac2-b223-0504c4b49794", + "path": "z://MP4\\Sing King Karaoke\\Sheena Easton - Almost Over You (Karaoke Version).mp4", + "title": "Almost Over You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Kiss", + "playlist_title": "Lick It Up", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7ca643ed-37e5-7d2e-b69e-2b6378d5076b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lick It Up - Kiss.mp4", + "title": "Lick It Up" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "KC", + "playlist_title": "Give It Up", + "found_song": { + "artist": "KC & The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "b4df5498-504a-d9ed-0c17-9e1309fac8f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Up - KC & The Sunshine Band.mp4", + "title": "Give It Up" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse Of The Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Girls Just Want To Have Fun", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "fbdad3e5-f94f-43d8-d3e0-d36580a98832", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - Girls Just Want To Have Fun (Karaoke Version).mp4", + "title": "Girls Just Want To Have Fun" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Air Supply", + "playlist_title": "Making Love Out Of Nothing At All", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf25b9e1-d366-5b61-aa82-cbb35bcf52a4", + "path": "z://MP4\\Sing King Karaoke\\Air Supply - Making Love Out Of Nothing At All.mp4", + "title": "Making Love Out Of Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Journey", + "playlist_title": "Send Her My Love", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "cd455c8d-fb4e-62ab-7a69-8e29b0ac1f4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Her My Love - Journey.mp4", + "title": "Send Her My Love" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "The Fixx", + "playlist_title": "One Thing Leads To Another", + "found_song": { + "artist": "The Fixx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ab6a745-0fea-b36d-f221-b365323d7a71", + "path": "z://MP4\\VocalStarKaraoke\\The Fixx - One Thing Leads To Another.mp4", + "title": "One Thing Leads To Another" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 18, + "playlist_artist": "Kenny Rogers with Dolly Parton", + "playlist_title": "Islands In The Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Rufus & Chaka Khan", + "playlist_title": "Ain't Nobody", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "guid": "a96beb12-bbfe-fecf-3e66-221d82ada324", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF011\\Chaka Khan - Ain't Nobody - SF011 - 01.mp3", + "title": "Ain't Nobody" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Spandau Ballet", + "playlist_title": "Gold", + "found_song": { + "artist": "Spandau Ballet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26d63853-3390-33b4-d814-c06e184ee1e9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Spandau Ballet - Gold.mp4", + "title": "Gold" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way He Makes Me Feel", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "a10d9af8-0699-947a-b707-e377f744aa28", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way He Makes Me Feel - Barbra Streisand.mp4", + "title": "The Way He Makes Me Feel" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Peabo Bryson/Roberta Flack", + "playlist_title": "Tonight, I Celebrate My Love", + "found_song": { + "artist": "Peabo Bryson And Roberta Flack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0c1ad71-569a-759e-5430-f3775b4d3ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Peabo Bryson And Roberta Flac - Tonight I Celebrate My Love.mp4", + "title": "Tonight I Celebrate My Love" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Industry", + "playlist_title": "State Of The Union", + "found_song": { + "artist": "Industry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f50f0481-b332-b7af-adca-4f909e3fb96c", + "path": "z://CDG\\SBI\\SBI-04\\SB17815 - Industry - State Of The Nation.mp3", + "title": "State Of The Nation" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Paul McCartney And Michael Jackson", + "title": "Say Say Say", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Daryl Hall John Oates", + "title": "Say It Isn't So", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Rolling Stones", + "title": "Undercover Of The Night", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Peter Schilling", + "title": "Major Tom (Coming Home)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Quiet Riot", + "title": "Cum On Feel The Noize", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Irene Cara", + "title": "Why Me?", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kool & The Gang", + "title": "Joanna", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Thirty Eight Special", + "title": "If I'd Been The One", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Debarge", + "title": "Time Will Reveal", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ray Parker Jr.", + "title": "I Still Can't Get Over Loving You", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Fixx", + "title": "The Sign Of Fire", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Huey Lewis & The News", + "title": "Heart And Soul", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Naked Eyes", + "title": "When The Lights Go Out", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Robert Plant", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Pretenders", + "title": "Middle Of The Road", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Motels", + "title": "Remember The Night", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Stevie Nicks", + "title": "Nightbird", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Paul McCartney", + "title": "So Bad", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "James Ingram With Michael McDonald", + "title": "Yah Mo B There", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Bonnie Tyler", + "title": "Take Me Back", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Rick James And Smokey Robinson", + "title": "Ebony Eyes", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "title": "What's New", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Alan Parsons Project", + "title": "You Don't Believe", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Eddie Money", + "title": "Big Crash", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Irene Cara", + "title": "The Dream", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Re-flex", + "title": "The Politics Of Dancing", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Night Ranger", + "title": "(You Can Still) Rock In America", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Midnight Star", + "title": "Wet My Whistle", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Talking Heads", + "title": "This Must Be The Place", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Sheena Easton", + "title": "Telefone (long Distance Love Affair)", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Motels", + "title": "Suddenly Last Summer", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Doors", + "title": "Gloria", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Peabo Bryson & Roberta Flack", + "title": "You're Looking Like Love To Me", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rainbow", + "title": "Street Of Dreams", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jackson Browne", + "title": "Tender Is The Night", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Herb Alpert", + "title": "Red Hot", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Asia", + "title": "The Smile Has Left Your Eyes", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Michael Stanley Band", + "title": "Someone Like You", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Prince And The Revolution", + "title": "Let's Pretend We're Married/Irresistible Bitch", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Diana Ross", + "title": "Let's Go Up", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Crystal Gayle", + "title": "The Sound Of Goodbye", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Bob Dylan", + "title": "Sweetheart Like You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rodney Dangerfield", + "title": "Rappin' Rodney", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Atlantic Starr", + "title": "Touch A Four Leaf Clover", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pointer Sisters", + "title": "I Need You", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Headpins", + "title": "Just One More Time", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Twilight 22", + "title": "Electric Kingdom", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Jennifer Holliday", + "title": "I Am Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Earth, Wind & Fire", + "title": "Magnetic", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Kim Carnes", + "title": "Invisible Hands", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Paul Simon", + "title": "Allergies", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Streets", + "title": "If Love Should Go", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Prince", + "title": "Delirious", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Dionne Warwick & Luther Vandross", + "title": "How Many Times Can We Say Goodbye", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 6, + "missing_count": 54, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1982 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 4, + "playlist_artist": "Reba McEntire", + "playlist_title": "Can't Even Get The Blues", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "a99b001d-c196-0701-86e8-450672c9507e", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Can't Even Get The Blues (Karaoke).mp4", + "title": "Can't Even Get The Blues" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Merle Haggard", + "playlist_title": "Going Where The Lonely Go", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb372ba0-43f7-eff3-43ea-1f6b271824e1", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Going Where The Lonely Go.mp4", + "title": "Going Where The Lonely Go" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "guid": "6f831da9-1d07-ac40-8875-16981af0b351", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talk To Me - Mickey Gilley.mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dolly Parton", + "playlist_title": "Hard Candy Christmas", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "dc1716de-cb3e-a91c-24eb-5141114ee302", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Candy Christmas - Dolly Parton.mp4", + "title": "Hard Candy Christmas" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Oak Ridge Boys", + "playlist_title": "Thank God For Kids", + "found_song": { + "artist": "The Oak Ridge Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95ad2919-4446-7116-04c2-e99c2d6864ae", + "path": "z://MP4\\KaraokeOnVEVO\\The Oak Ridge Boys - Thank God For Kids.mp4", + "title": "Thank God For Kids" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Vern Gosdin", + "playlist_title": "Today My World Slipped Away", + "found_song": { + "artist": "Vern Gosdin", + "disabled": false, + "favorite": false, + "guid": "97aab77f-4956-40a4-4a8b-fdda26e4c9c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Today My World Slipped Away - Vern Gosdin.mp4", + "title": "Today My World Slipped Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "John Anderson", + "title": "Wild And Blue", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Jerry Reed", + "title": "The Bird", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Kenny Rogers", + "title": "A Love Song", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "David Frizzell", + "title": "Lost My Baby Blues", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "George Strait", + "title": "Marina Del Rey", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Emmylou Harris", + "title": "(lost His Love) On Our Last Date", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Rosanne Cash", + "title": "I Wonder", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Johnny Lee And Friends", + "title": "Cherokee Fiddle", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "John Conlee", + "title": "I Don't Remember Loving You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Sylvia 1", + "title": "Like Nothing Ever Happened", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Waylon & Willie", + "title": "(Sittin' On) The Dock Of The Bay", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Earl Thomas Conley", + "title": "Somewhere Between Right And Wrong", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Charly McClain", + "title": "With You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Statler Brothers", + "title": "A Child Of The Fifties", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ronnie Milsap", + "title": "Inside/carolina Dreams", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moe Bandy", + "title": "Only If There Is Another You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gene Watson", + "title": "What She Don't Know Won't Hurt Her", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Crystal Gayle", + "title": "'til I Gain Control Again", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gail Davies", + "title": "Hold On", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1982 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Maneater", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toni Basil", + "playlist_title": "Mickey", + "found_song": { + "artist": "Toni Basil", + "disabled": false, + "favorite": true, + "guid": "f452d437-1255-fc82-fd0b-02d647970420", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mickey - Toni Basil.mp4", + "title": "Mickey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Don Henley", + "playlist_title": "Dirty Laundry", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91340bee-9f2c-ac03-fe02-3ae29cab0442", + "path": "z://CDG\\Various\\Don Henley - Dirty Laundry.mp3", + "title": "Dirty Laundry" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Laura Branigan", + "playlist_title": "Gloria", + "found_song": { + "artist": "Laura Branigan", + "disabled": false, + "favorite": false, + "guid": "258b3b09-3ef0-8c3c-95ad-9d2f2c89fe7a", + "path": "z://MP4\\Let's Sing Karaoke\\Branigan, Laura - Gloria (Karaoke & Lyrics).mp4", + "title": "Gloria" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Joe Jackson", + "playlist_title": "Steppin' Out", + "found_song": { + "artist": "Joe Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a6b4bb4-6747-3805-9be7-94b51eb98e06", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Jackson - Steppin Out.mp4", + "title": "Steppin' Out" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Sexual Healing", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "d78b429a-6b77-256d-709e-68de5bd086ab", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - Sexual Healing (Karaoke Version).mp4", + "title": "Sexual Healing" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Men At Work", + "playlist_title": "Down Under", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "5ba85df6-af7f-f304-53c4-c0f39160a8a3", + "path": "z://MP4\\Sing King Karaoke\\Men At Work - Down Under (Karaoke Version).mp4", + "title": "Down Under" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stray Cats", + "playlist_title": "Rock This Town", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07b08819-32c5-ce35-1838-a4c7fc1ef54e", + "path": "z://MP4\\KaraokeOnVEVO\\Stray Cats - Rock This Town.mp4", + "title": "Rock This Town" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lionel Richie", + "playlist_title": "Truly", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "47279ab7-6289-7dfd-5a56-ac376a3d3a04", + "path": "z://CDG\\Various\\Lionel Richie - Truly.mp3", + "title": "Truly" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "078990d4-65d6-da0b-3ce1-8385f97b2d5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dionne Warwick - Heartbreaker.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Pat Benatar", + "playlist_title": "Shadows Of The Night", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "1eb35004-a5c6-2cda-c270-cef48ef085b9", + "path": "z://CDG\\Various\\Pat Benatar - Shadows Of The Night.mp3", + "title": "Shadows Of The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toto", + "playlist_title": "Africa", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "455450f7-3a43-a3a1-7a3d-166ca3f8327a", + "path": "z://MP4\\Sing King Karaoke\\TOTO - Africa (Karaoke Version).mp4", + "title": "Africa" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Clash", + "playlist_title": "Rock The Casbah", + "found_song": { + "artist": "The Clash", + "disabled": false, + "favorite": false, + "guid": "8995fab5-357f-998c-f0a2-5ef52fd406d0", + "path": "z://MP4\\Let's Sing Karaoke\\Clash, The - Rock The Casbah (Karaoke & Lyrics).mp4", + "title": "Rock The Casbah" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Phil Collins", + "playlist_title": "You Can't Hurry Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "9df0fd7c-cc7d-9837-9ee4-40ba92ac3e98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Can t Hurry Love - Phil Collins.mp4", + "title": "You Can t Hurry Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Joe Cocker And Jennifer Warnes", + "playlist_title": "Up Where We Belong", + "found_song": { + "artist": "Joe Cocker And Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7f7bc7a-a18f-89a7-3d3a-b87f31c1927c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Cocker And Jennifer Warnes - Up Where We Belong.mp4", + "title": "Up Where We Belong" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Adam Ant", + "playlist_title": "Goody Two Shoes", + "found_song": { + "artist": "Adam Ant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02e8f3ea-c7f4-5633-9d07-9af8d6300982", + "path": "z://MP4\\KaraokeOnVEVO\\Adam Ant - Goody Two Shoes.mp4", + "title": "Goody Two Shoes" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "On The Wings Of Love", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61bf6b5-3044-e5ac-50e0-034da1bc9ee0", + "path": "z://MP4\\KaraokeOnVEVO\\Jeffrey Osborne - On The Wings Of Love.mp4", + "title": "On The Wings Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billy Squier", + "playlist_title": "Everybody Wants You", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fd1a192-e016-bc8f-bad3-4ffe3a9b4444", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - Everybody Wants You.mp4", + "title": "Everybody Wants You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Moving Pictures", + "playlist_title": "What About Me", + "found_song": { + "artist": "Moving Pictures", + "disabled": false, + "favorite": false, + "guid": "dd4fba02-f7e1-d9ff-1801-c561de60e3d6", + "path": "z://MP4\\KtvEntertainment\\Moving Pictures - What About Me Karaoke Lyrics.mp4", + "title": "What About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Shock The Monkey", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "0c8e11ac-65b5-0aa0-e43c-24610bfe4cdc", + "path": "z://MP4\\Let's Sing Karaoke\\Gabriel, Peter - Shock The Monkey (Karaoke & Lyrics).mp4", + "title": "Shock The Monkey" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Joel", + "playlist_title": "Allentown", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "f750d441-0ed8-d2cb-c65b-5b7764c92317", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Allentown - Billy Joel.mp4", + "title": "Allentown" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Air Supply", + "playlist_title": "Two Less Lonely People In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b2dacac-aa1a-f2cd-adc3-58e633881517", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Two Less Lonely People In The World.mp4", + "title": "Two Less Lonely People In The World" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Diana Ross", + "playlist_title": "Muscles", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "c14d86d7-b189-6d8c-b6f1-744e8bc4207e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Muscles - Diana Ross.mp4", + "title": "Muscles" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Stray Cats", + "playlist_title": "Stray Cat Strut", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "guid": "e0fdf64b-d66b-29c4-926b-cce846b9cd3f", + "path": "z://MP4\\TheKARAOKEChannel\\Stray Cat Strut in the Style of Stray Cats karaoke video with lyrics (no lead vocal).mp4", + "title": "Stray Cat Strut" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Barry Manilow", + "playlist_title": "Memory", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "a52c7dcc-3811-513b-0cc1-8914a2512685", + "path": "z://CDG\\Various\\Barry Manilow - Memory.mp3", + "title": "Memory" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Culture Club", + "playlist_title": "Do You Really Want To Hurt Me", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "7bd8953b-3fd6-a7b6-32c3-71cc29c1e5d5", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Do You Really Want To Hurt Me (Karaoke Version).mp4", + "title": "Do You Really Want To Hurt Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Frida", + "playlist_title": "I Know There's Something Going On", + "found_song": { + "artist": "Frida", + "disabled": false, + "favorite": false, + "guid": "9c52c4b5-8815-04d1-a292-4e30ca7c0c4c", + "path": "z://MP4\\KaraFun Karaoke\\I Know There's Something Going On - Frida Karaoke Version KaraFun.mp4", + "title": "I Know There's Something Going On" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Musical Youth", + "playlist_title": "Pass The Dutchie", + "found_song": { + "artist": "Musical Youth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2bfc62d-4de7-2f40-bd36-5de8a8f6e0e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Musical Youth - Pass The Dutchie.mp4", + "title": "Pass The Dutchie" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Prince", + "playlist_title": "1999", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba961dc-e770-05b0-9718-05798dc42a89", + "path": "z://MP4\\KaraokeOnVEVO\\Prince - 1999.mp4", + "title": "1999" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Duran Duran", + "playlist_title": "Hungry Like The Wolf", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "14c7c6b1-7c32-c2ff-c7be-a582e7c78c72", + "path": "z://MP4\\Sing King Karaoke\\Duran Duran - Hungry Like The Wolf (Karaoke Version).mp4", + "title": "Hungry Like The Wolf" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Neil Diamond", + "playlist_title": "Heartlight", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa870010-5363-6122-e894-7cd2d4e17840", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Heartlight.mp4", + "title": "Heartlight" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Chicago", + "playlist_title": "Love Me Tomorrow", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "908ff4f5-cc88-69b9-225d-520c1fb23655", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Me Tomorrow - Chicago.mp4", + "title": "Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Sylvia", + "playlist_title": "Nobody", + "found_song": { + "artist": "Sylvia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd54b80f-102f-de00-22bc-8b92dc81cede", + "path": "z://MP4\\KaraokeOnVEVO\\Sylvia - Nobody.mp4", + "title": "Nobody" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Men At Work", + "playlist_title": "Who Can It Be Now?", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "f193a597-6aa5-f4d4-c719-1287a7a9fcb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Can It Be Now - Men At Work.mp4", + "title": "Who Can It Be Now" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 31, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Let's Go Dancin' (ooh La, La, La)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "97c95b5a-582e-7894-7407-2bb6cb2b15a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Go Dancin (Ooh La, La, La) - Kool And The Gang.mp4", + "title": "Let s Go Dancin (Ooh La, La, La)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Pretenders", + "playlist_title": "Back On The Chain Gang", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "88c9d1c3-9159-64ae-e834-00d380bac54c", + "path": "z://MP4\\KaraFun Karaoke\\Back On The Chain Gang - The Pretenders Karaoke Version KaraFun.mp4", + "title": "Back On The Chain Gang" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Santana", + "playlist_title": "Nowhere To Run", + "found_song": { + "artist": "Martha and the Vandellas", + "disabled": false, + "favorite": false, + "guid": "c34764c0-12ee-c4f7-58d0-7c73098ab396", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nowhere to Run - Martha and the Vandellas.mp4", + "title": "Nowhere to Run" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Michael Jackson And Paul McCartney", + "title": "The Girl Is Mine", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Supertramp Featuring Roger Hodgson", + "title": "It's Raining Again", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Eddie Rabbitt With Crystal Gayle", + "title": "You And I", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Patti Austin With James Ingram", + "title": "Baby, Come To Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Little River Band", + "title": "The Other Guy", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "ABC", + "title": "The Look Of Love (Part One)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kenny Loggins", + "title": "Heart To Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Dan Fogelberg", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Cougar", + "title": "Hand To Hold On To", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The J. Geils Band", + "title": "I Do", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Fleetwood Mac", + "title": "Love In Store", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tom Petty And The Heartbreakers", + "title": "You Got Lucky", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "Shame On The Moon", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Tavares", + "title": "A Penny For Your Thoughts", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Juice Newton", + "title": "Heart Of The Night", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Kim Carnes", + "title": "Does It Make You Remember", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Sammy Hagar", + "title": "Your Love Is Driving Me Crazy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "A Flock Of Seagulls", + "title": "Space Age Love Song", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Michael McDonald", + "title": "I Gotta Try", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Olivia Newton-John", + "title": "Heart Attack", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Ray Parker Jr.", + "title": "Bad Boy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "America", + "title": "Right Before Your Eyes", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Glenn Frey", + "title": "All Those Lies", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Sonny Charles", + "title": "Put It In A Magazine", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Golden Earring", + "title": "Twilight Zone", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Linda Ronstadt", + "title": "I Knew You When", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Luther Vandross", + "title": "Bad Boy/Having A Party", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Saga", + "title": "On The Loose", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Alan Parsons Project", + "title": "Psychobabble", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Jefferson Starship", + "title": "Be My Lady", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Donna Summer", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Joni Mitchell", + "title": "(you're So Square) Baby, I Don't Care", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Chilliwack", + "title": "Whatcha Gonna Do", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lanier & Co.", + "title": "After I Cry Tonight", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Wolf", + "title": "Papa Was A Rollin' Stone", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Steve Miller Band", + "title": "Give It Up", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Lee Ritenour", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Charlene & Stevie Wonder", + "title": "Used To Be", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Elvis Presley", + "title": "The Elvis Medley", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Commodores", + "title": "Painted Picture", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Janet Jackson", + "title": "Young Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Pia Zadora", + "title": "The Clapping Song", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Spinners", + "title": "Funny How Time Slips Away", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rough Trade", + "title": "All Touch", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Hot Chocolate", + "title": "Are You Getting Enough Happiness", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Poco", + "title": "Shoot For The Moon", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Who", + "title": "Eminence Front", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Little Steven", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Hughes/Thrall", + "title": "Beg, Borrow Or Steal", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Donald Fagen", + "title": "I.g.y. (what A Beautiful World)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Crosby, Stills & Nash", + "title": "Southern Cross", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Scandal Featuring Patty Smyth", + "title": "Goodbye To You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bill Conti", + "title": "Theme From Dynasty", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Tyrone Davis", + "title": "Are You Serious", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Michael Stanley Band", + "title": "Take The Time", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Unipop", + "title": "What If (I Said I Love You)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Missing Persons", + "title": "Destination Unknown", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Billy Joel", + "title": "Pressure", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Motels", + "title": "Forever Mine", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rodway", + "title": "Don't Stop Trying", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Steel Breeze", + "title": "You Don't Want Me Anymore", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Survivor", + "title": "American Heartbeat", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 3, + "missing_count": 62, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1981 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gene Watson", + "playlist_title": "Fourteen Karat Mind", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "522b3ef8-7111-fc5a-ad90-878ebecdadee", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Fourteen Karat Mind.mp4", + "title": "Fourteen Karat Mind" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mac Davis", + "playlist_title": "You're My Bestest Friend", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11bd61d5-72d0-3fba-913f-a5ade28277cf", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Youre My Bestest Friend.mp4", + "title": "You're My Bestest Friend" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Lonely Nights", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5cfe171-a9f3-da58-dc11-f3355e462ea8", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Lonely Nights.mp4", + "title": "Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Eddy Raven", + "playlist_title": "Who Do You Know In California", + "found_song": { + "artist": "Eddy Raven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "645817fc-e087-b932-edba-759b24e90f7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddy Raven - Who Do You Know In California.mp4", + "title": "Who Do You Know In California" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "Watchin' Girls Go By", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd313172-a52f-8c85-18f5-2d0c2c4532c5", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - Watchin Girls Go By.mp4", + "title": "Watchin' Girls Go By" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Greenwood", + "playlist_title": "It Turns Me Inside Out", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb734e20-b743-bdbc-e63b-559aa6b50440", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - It Turns Me Inside Out.mp4", + "title": "It Turns Me Inside Out" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Don Williams", + "playlist_title": "Lord, I Hope This Day Is Good", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "a269f092-ef3e-5c50-ca22-3d0bccf75018", + "path": "z://MP4\\KaraokeOnVEVO\\Don Williams - Lord, I Hope This Day Is Good (Karaoke).mp4", + "title": "Lord, I Hope This Day Is Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Alabama", + "title": "Love In The First Degree/Ride The Train", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Crystal Gayle", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Conway Twitty", + "title": "Red Neckin Love Makin Night", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Bellamy Brothers", + "title": "You're My Favorite Star", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Gary Morris", + "title": "Headed For A Heartache", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Moe Bandy", + "title": "Rodeo Romeo", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Earl Thomas Conley", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Statler Brothers", + "title": "Years Ago", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kenny Rogers", + "title": "Blaze Of Glory", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Dottie West", + "title": "It's High Time", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jim Reeves And Patsy Cline", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Leon Everette", + "title": "Midnight Rodeo", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kieran Kane", + "title": "It's Who You Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mel McDaniel", + "title": "Preaching Up A Storm", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Ray Price", + "title": "Diamonds In The Stars", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 0, + "missing_count": 15, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1981 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Physical", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "07a9e3ce-bd55-21ad-1f3b-8a95a4c343a3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Physical - Olivia Newton-John.mp4", + "title": "Physical" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Foreigner", + "playlist_title": "Waiting For A Girl Like You", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "b54e701b-b5fa-b734-a7b9-eae2cc4e954e", + "path": "z://MP4\\Let's Sing Karaoke\\Foreigner - Waiting For A Girl Like You (Karaoke & Lyrics).mp4", + "title": "Waiting For A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Quarterflash", + "playlist_title": "Harden My Heart", + "found_song": { + "artist": "Quarterflash", + "disabled": false, + "favorite": false, + "guid": "476449bc-f9c7-cb08-bf5b-bb36584249a7", + "path": "z://MP4\\Let's Sing Karaoke\\Quarterflash - Harden My Heart (Karaoke & Lyrics).mp4", + "title": "Harden My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Diana Ross", + "playlist_title": "Why Do Fools Fall In Love", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "710bba03-e9c8-527f-b5d3-b2021041b954", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Do Fools Fall In Love - Diana Ross.mp4", + "title": "Why Do Fools Fall In Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lindsey Buckingham", + "playlist_title": "Trouble", + "found_song": { + "artist": "Lindsey Buckingham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d5d7bc0-d272-59c4-c7a3-037b1711dc41", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 867\\Lindsey Buckingham - Trouble - SFMW 867 -03.mp3", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Neil Diamond", + "playlist_title": "Yesterday's Songs", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a43b3db-aeae-b63d-d2f7-362954d848b4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Yesterdays Songs.mp4", + "title": "Yesterday's Songs" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Benson", + "playlist_title": "Turn Your Love Around", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "60bcf99b-c37b-cd62-5979-f41ecd46d927", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF032\\George Benson - Turn Your Love Around - SF032 - 06.mp3", + "title": "Turn Your Love Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Paul Davis", + "playlist_title": "Cool Night", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "c2940e54-6b37-3875-de79-d02591ad4741", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - Cool Night (Karaoke & Lyrics).mp4", + "title": "Cool Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Police", + "playlist_title": "Every Little Thing She Does Is Magic", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "929a0857-1550-9c07-cb72-e0cadec75850", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Every Little Thing She Does Is Magic - The Police.mp4", + "title": "Every Little Thing She Does Is Magic" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Waiting On A Friend", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "76184c69-189e-5aed-1343-3b0c4a50d2fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting On A Friend - The Rolling Stones.mp4", + "title": "Waiting On A Friend" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "She's Got A Way", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "652741a1-e2e0-419c-8eaa-6df9db730a07", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s Got A Way - Billy Joel.mp4", + "title": "She s Got A Way" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Leader Of The Band", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "dc46c4e5-bd44-89ff-06f7-53f98d1d96f1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Band - Dan Fogelberg.mp4", + "title": "Leader Of The Band" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Don McLean", + "playlist_title": "Castles In The Air", + "found_song": { + "artist": "Don McLean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1003985-79c5-09e4-aab9-bb17b31cefa0", + "path": "z://MP4\\KaraokeOnVEVO\\Don McLean - Castles In The Air.mp4", + "title": "Castles In The Air" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Start Me Up", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "9dc329c6-3843-8393-8873-a6f16bc3eae4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Start Me Up - The Rolling Stones.mp4", + "title": "Start Me Up" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Loverboy", + "playlist_title": "Working For The Weekend", + "found_song": { + "artist": "Loverboy", + "disabled": false, + "favorite": false, + "guid": "31807eee-320d-045d-c543-09887806943f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working For The Weekend - Loverboy.mp4", + "title": "Working For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Air Supply", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bbad07f-33c9-f35a-a0b1-e885b5b67418", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Barry Manilow", + "playlist_title": "The Old Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0738d93d-ea47-a9c4-63e0-fba8c6d19da8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - The Old Songs.mp4", + "title": "The Old Songs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alabama", + "playlist_title": "Love In The First Degree", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "6972b03b-3df9-d22a-7a22-02e89af71d20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love In The First Degree - Alabama.mp4", + "title": "Love In The First Degree" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Christopher Cross", + "playlist_title": "Arthur's Theme (Best That You Can Do)", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39497573-7e0b-fc43-1a9c-62c29b8bb736", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Arthurs Theme (Best That You Can Do).mp4", + "title": "Arthur's Theme (Best That You Can Do)" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Billy Squier", + "playlist_title": "My Kinda Lover", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cf17a10-28c6-3658-4bdb-dbd55aed25fe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - My Kinda Lover.mp4", + "title": "My Kinda Lover" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bob Seger", + "playlist_title": "Tryin' To Live My Life Without You", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "09e3798e-718f-eac5-12b4-e6a566acea49", + "path": "z://MP4\\Let's Sing Karaoke\\Seger, Bob - Tryin' To Live My Life Without You (Karaoke & Lyrics).mp4", + "title": "Tryin' To Live My Life Without You" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Rick Springfield", + "playlist_title": "I've Done Everything For You", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4e2d9e5-e3e7-e9c3-fb3b-01888f1237ee", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Ive Done Everything For You.mp4", + "title": "I've Done Everything For You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Rush", + "playlist_title": "Closer To The Heart", + "found_song": { + "artist": "Rush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4324aa8-d9de-3f9a-8715-4f1d6e22cf30", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rush - Closer To The Heart.mp4", + "title": "Closer To The Heart" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Genesis", + "playlist_title": "Abacab", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a542e21e-57a9-bb79-e87c-79563cee1c92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - Abacab.mp4", + "title": "Abacab" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Four Tops", + "playlist_title": "When She Was My Girl", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6446bb2-31c2-488f-f749-083b451792bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Four Tops - When She Was My Girl - SF107 - 12.mp3", + "title": "When She Was My Girl" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Through The Years", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a66a9eb-5988-9d3c-2938-77d9a823ab02", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Through The Years.mp4", + "title": "Through The Years" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Al Jarreau", + "playlist_title": "We're In This Love Together", + "found_song": { + "artist": "Al Jarreau", + "disabled": false, + "favorite": false, + "guid": "8392305f-0ad2-5433-6f2e-9630d0723f9e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We re In This Love Together - Al Jarreau.mp4", + "title": "We re In This Love Together" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Carl Carlton", + "playlist_title": "She's A Bad Mama Jama (She's Built, She's Stacked)", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "guid": "e005caff-f6b3-feb7-8033-5758438d92c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s A Bad Mama Jama (She s Built, She s Stacked) - Carl Carlton.mp4", + "title": "She s A Bad Mama Jama (She s Built, She s Stacked)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sheena Easton", + "playlist_title": "For Your Eyes Only", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "f4cd6bf7-75b0-05f7-0128-9a9b5c9c3e14", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Eyes Only - Sheena Easton.mp4", + "title": "For Your Eyes Only" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Prince", + "playlist_title": "Controversy", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "d8cc1d0b-eac0-a120-3bd9-43be72e7615c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD022 - Prince\\Prince - Controversy - SFG022 - 13.mp3", + "title": "Controversy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Let's Groove", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3f91c47-1af8-d50a-506e-6efef683348a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - Lets Groove.mp4", + "title": "Let's Groove" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "The J. Geils Band", + "playlist_title": "Centerfold", + "found_song": { + "artist": "The J. Geils Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6d7faa9-d982-3193-68ad-fc5d4c5febe7", + "path": "z://MP4\\KaraokeOnVEVO\\The J. Geils Band - Centerfold.mp4", + "title": "Centerfold" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Comin' In And Out Of Your Life", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "88e47d96-bd4c-d234-5524-0366d5c56dbe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Comin' In And Out Of Your Life - SFG042 - 04.mp3", + "title": "Comin' In And Out Of Your Life" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Take My Heart (You Can Have It If You Want It)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "259469f4-953e-e5db-52d3-8c479a968eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take My Heart (You Can Have It If You Want It) - Kool And The Gang.mp4", + "title": "Take My Heart (You Can Have It If You Want It)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Go-Go's", + "playlist_title": "Our Lips Are Sealed", + "found_song": { + "artist": "The Go-Go's", + "disabled": false, + "favorite": false, + "guid": "39f3f1e4-0915-e205-9247-486aa427c706", + "path": "z://MP4\\KaraFun Karaoke\\Our Lips Are Sealed - The Go-Go's Karaoke Version KaraFun.mp4", + "title": "Our Lips Are Sealed" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54e03359-1c41-d7f9-28f0-f2b8ba9be660", + "path": "z://CDG\\Various\\David Bowie - Under Pressure.mp3", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Rick Springfield", + "playlist_title": "Love Is Alright Tonite", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11875738-bf02-a6b2-3bf2-104272904711", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Love Is Alright Tonight.mp4", + "title": "Love Is Alright Tonight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Luther Vandross", + "playlist_title": "Never Too Much", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "cde6a4ea-4ea3-ebb5-190c-570da149782b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Much - Luther Vandross.mp4", + "title": "Never Too Much" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Little River Band", + "playlist_title": "The Night Owls", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "e5ed2681-e656-5082-3912-690eb57fad22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Night Owls - Little River Band.mp4", + "title": "The Night Owls" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Twilight", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "82ff25f5-6a83-961e-cb28-2bee75bee48d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Blue - Electric Light Orchestra.mp4", + "title": "Midnight Blue" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Daryl Hall John Oates", + "title": "I Can't Go For That (No Can Do)", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rod Stewart", + "title": "Young Turks", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Stevie Nicks With Don Henley", + "title": "Leather And Lace", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Royal Philharmonic Orchestra", + "title": "Hooked On Classics", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Commodores", + "title": "Oh No", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Air Supply", + "title": "Here I Am (Just When I Thought I Was Over You)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Cars", + "title": "Shake It Up", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Stevie Woods", + "title": "Steal The Night", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chilliwack", + "title": "My Girl (Gone, Gone, Gone)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Beach Boys", + "title": "Come Go With Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sheena Easton", + "title": "You Could Have Been With Me", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Steve Miller Band", + "title": "Heart Like A Wheel", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Little River Band", + "title": "Take It Easy On Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sneaker", + "title": "More Than Just The Two Of Us", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Daryl Hall John Oates", + "title": "Private Eyes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lulu", + "title": "If I Were You", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bertie Higgins", + "title": "Key Largo", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Greg Lake", + "title": "Let Me Love You Once", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Genesis", + "title": "No Reply At All", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Ringo Starr", + "title": "Wrack My Brain", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Eddie Schwartz", + "title": "All Our Tomorrows", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Survivor", + "title": "Poor Man's Son", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Al Jarreau", + "title": "Breakin' Away", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mike Post featuring Larry Carlton", + "title": "The Theme From Hill Street Blues", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Sheila", + "title": "Little Darlin'", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Balance", + "title": "Falling In Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jennifer Warnes", + "title": "Could It Be Love", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Del Shannon", + "title": "Sea Of Love", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Bee Gees", + "title": "Living Eyes", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Barry Manilow", + "title": "Somewhere Down The Road", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Irene Cara", + "title": "Anyone Can See", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Steve Carlisle", + "title": "Wkrp In Cincinnati", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Quincy Jones Featuring James Ingram", + "title": "Just Once", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "Feel Like A Number", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Henry Paul Band", + "title": "Keeping Our Love Alive", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Carpenters", + "title": "Those Good Old Dreams", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Quincy Jones Featuring James Ingram", + "title": "One Hundred Ways", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Patti Austin", + "title": "Every Home Should Have One", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Crystal Gayle", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Donnie Iris", + "title": "Love Is Like A Rock", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Kiss", + "title": "A World Without Heroes", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Neil Young/Crazy Horse", + "title": "Southern Pacific", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Diesel", + "title": "Sausalito Summernight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The John Hall Band", + "title": "Crazy (Keep On Falling)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Leif Garrett", + "title": "Runaway Rita", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Bill Champlin", + "title": "Tonight Tonight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Vangelis", + "title": "Chariots Of Fire - Titles", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Kenny Rogers", + "title": "Blaze Of Glory", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Kano", + "title": "Can't Hold Back (Your Loving)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Dave Stewart and Barbara Gaskin", + "title": "It's My Party", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Kinks", + "title": "Better Things", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Rick James", + "title": "Super Freak (Part I)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Diana Ross & Lionel Richie", + "title": "Endless Love", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Dan Fogelberg", + "title": "Hard To Say", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Chris Christian", + "title": "I Want You, I Need You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Rufus With Chaka Khan", + "title": "Sharing The Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 34, + "fuzzy_match_count": 10, + "missing_count": 56, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "1980 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Johnny Lee", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Johnny Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01e09019-2703-0b07-1a58-b8d3b281a442", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Lee - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Merle Haggard", + "playlist_title": "I Think I'll Stay Here And Drink", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce1bdfd2-de35-f29e-fb80-b0a10dad4e84", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - I Think Ill Stay Here And Drink.mp4", + "title": "I Think I'll Stay Here And Drink" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Bellamy Brothers", + "playlist_title": "Lovers Live Longer", + "found_song": { + "artist": "The Bellamy Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad9e9bf5-3772-9072-09de-3a6587e28c9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Bellamy Brothers - Lovers Live Longer.mp4", + "title": "Lovers Live Longer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mickey Gilley", + "playlist_title": "That's All That Matters To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973e158b-56b2-782c-37f1-f3b159434180", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Thats All That Matters To Me.mp4", + "title": "That's All That Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "I Feel Like Loving You Again", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01ded068-f73a-519d-9e8c-75a0419990ea", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - I Feel Like Loving You Again.mp4", + "title": "I Feel Like Loving You Again" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Charly McClain", + "playlist_title": "Who's Cheatin' Who", + "found_song": { + "artist": "Charly McClain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af64da96-a7b5-dd67-bb67-b54101479725", + "path": "z://MP4\\KaraokeOnVEVO\\Charly McClain - Whos Cheatin Who.mp4", + "title": "Who's Cheatin' Who" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 4, + "artist": "Conway Twitty", + "title": "A Bridge That Just Won't Burn", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Barbara Mandrell", + "title": "The Best Of Strangers", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Leon Everette", + "title": "Giving Up Easy", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mac Davis", + "title": "Texas In My Rear View Mirror", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Janie Frickie", + "title": "Down To My Last Broken Heart", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Oak Ridge Boys", + "title": "Beautiful You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Terri Gibbs", + "title": "Somebodys Knockin'", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Gene Watson", + "title": "No One Will Ever Know", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Porter Wagoner", + "title": "If You Go, I'll Follow You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Statler Brothers", + "title": "Don't Forget Yourself", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Razzy Bailey", + "title": "I Keep Coming Back/True Life Country Music", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Bobby Goldsboro", + "title": "Goodbye Marie", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Johnny Duncan", + "title": "Acapulo", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ed Bruce", + "title": "Girls, Women Ladies", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gail Davies", + "title": "I'll Be There (If You Ever Want Me)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Anderson", + "title": "1959", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Susie Allanson", + "title": "Dance The Two Step", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1980 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "John Lennon", + "playlist_title": "(Just Like) Starting Over", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "9c6ae1d3-a1bb-f8d2-1518-9fd7eb035f2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Just Like) Starting Over - John Lennon.mp4", + "title": "(Just Like) Starting Over" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Neil Diamond", + "playlist_title": "Love On The Rocks", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3644b051-105d-fe04-51c9-1136874798bf", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Love On The Rocks.mp4", + "title": "Love On The Rocks" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Lady", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "d9e2445a-98a2-9c54-a0da-070cefe014be", + "path": "z://MP4\\KaraFun Karaoke\\Lady - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Hungry Heart", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b90d87d-e30f-201e-9055-a1043f0c4541", + "path": "z://MP4\\KaraokeOnVEVO\\Bruce Springsteen - Hungry Heart.mp4", + "title": "Hungry Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Air Supply", + "playlist_title": "Every Woman In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95bbb30c-34f4-69f5-3d73-b8397cd264bd", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Every Woman In The World.mp4", + "title": "Every Woman In The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blondie", + "playlist_title": "The Tide Is High", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1acf653d-d0b4-899c-e976-044aa98534df", + "path": "z://MP4\\KaraokeOnVEVO\\Blondie - The Tide Is High.mp4", + "title": "The Tide Is High" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Pat Benatar", + "playlist_title": "Hit Me With Your Best Shot", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "3d122f45-bef5-9448-31a6-586c77d18f68", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - Hit Me With Your Best Shot (Karaoke Version).mp4", + "title": "Hit Me With Your Best Shot" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Police", + "playlist_title": "De Do Do Do, De Da Da Da", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "e4d6a6e5-73a3-750a-df66-78d2a3c92327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke De Do Do Do, De Da Da Da - The Police.mp4", + "title": "De Do Do Do, De Da Da Da" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Master Blaster (Jammin')", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f471ec92-3eb8-52ab-8275-34c0a57b4025", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Master Blaster (Jammin ) - Stevie Wonder.mp4", + "title": "Master Blaster (Jammin )" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Made It Through The Rain", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a721918-21e5-f478-efce-a33532e9492c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - I Made It Through The Rain.mp4", + "title": "I Made It Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Korgis", + "playlist_title": "Everybody's Got To Learn Sometime", + "found_song": { + "artist": "The Korgis", + "disabled": false, + "favorite": false, + "guid": "987976db-6741-39f1-0fd4-74f971c9e3dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everybody s Got To Learn Sometime - The Korgis.mp4", + "title": "Everybody s Got To Learn Sometime" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Steely Dan", + "playlist_title": "Hey Nineteen", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ab920d9b-aace-6be1-f105-d11f4a102f49", + "path": "z://MP4\\Let's Sing Karaoke\\Steely Dan - Hey Nineteen (Karaoke & Lyrics).mp4", + "title": "Hey Nineteen" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Don Williams", + "playlist_title": "I Believe In You", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "8dd6f516-19cc-b930-b735-16700ac77539", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Believe In You - Don Williams.mp4", + "title": "I Believe In You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Devo", + "playlist_title": "Whip It", + "found_song": { + "artist": "Devo", + "disabled": false, + "favorite": false, + "guid": "4d82452e-af76-e04e-bdd3-de0b3efd993e", + "path": "z://CDG\\Sound Choice Karaoke\\SC2086\\SC2086-04 - Devo - Whip It.mp3", + "title": "Whip It" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Christopher Cross", + "playlist_title": "Never Be The Same", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc4676e4-1bf8-f414-901e-38eaced2ee47", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Never Be The Same.mp4", + "title": "Never Be The Same" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Diana Ross", + "playlist_title": "I'm Coming Out", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "e48b2163-f4c7-136c-31b2-cad8595ac337", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - I'm Coming Out (Karaoke Version).mp4", + "title": "I'm Coming Out" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Dr. Hook", + "playlist_title": "Girls Can Get It", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1fc3aef-88da-a07d-cbfa-5a3eb021760d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Girls Can Get It.mp4", + "title": "Girls Can Get It" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "ABBA", + "playlist_title": "The Winner Takes It All", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "45eb6ff0-a9ce-48ff-8447-717721417d4a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Winner Takes It All (Karaoke Version).mp4", + "title": "The Winner Takes It All" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Same Old Lang Syne", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "fb88cd10-bec5-76aa-72f4-c985e60d5bd3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Same Old Lang Syne - Dan Fogelberg.mp4", + "title": "Same Old Lang Syne" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "REO Speedwagon", + "playlist_title": "Keep On Loving You", + "found_song": { + "artist": "REO Speedwagon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bf7ae8d-b9ec-23f3-3e9c-626c46f08c56", + "path": "z://MP4\\KaraokeOnVEVO\\Reo Speedwagon - Keep On Loving You (2.mp4", + "title": "Keep On Loving You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Teena Marie", + "playlist_title": "I Need Your Lovin'", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "ddbff09c-8aa8-c09f-42c5-468f7dc25a88", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need Your Lovin - Teena Marie.mp4", + "title": "I Need Your Lovin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Smoky Mountain Rain", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05dafd5e-f338-d1f3-3dfe-2e82ff21051f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - Smoky Mountain Rain.mp4", + "title": "Smoky Mountain Rain" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "Love T.K.O.", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "guid": "4a1b802e-fbcc-21e7-4341-cf4af45cf3f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love T.K.O. - Teddy Pendergrass.mp4", + "title": "Love T.K.O." + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Eagles", + "playlist_title": "Seven Bridges Road", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "bca1053b-f35e-fc62-b317-3547ade37b94", + "path": "z://CDG\\Various\\Eagles - Seven Bridges Road.mp3", + "title": "Seven Bridges Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Supertramp", + "playlist_title": "Breakfast In America", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8232174-f1ee-11a8-b311-5cf609b86257", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Supertramp - Breakfast In America - SFMW 876 -04.mp3", + "title": "Breakfast In America" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Blues Brothers", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "guid": "48d7a720-f369-7eed-d518-0d619e776550", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD031 - The Full Monty & Blues Brothers\\Blues Brothers - Who's Making Love - SFG031 - 16.mp3", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Cliff Richard", + "playlist_title": "A Little In Love", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "662b7e3a-3476-f4aa-d3b0-8e1165921378", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cliff Richard - A Little In Love.mp4", + "title": "A Little In Love" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Stephanie Mills", + "playlist_title": "Never Knew Love Like This Before", + "found_song": { + "artist": "Stephanie Mills", + "disabled": false, + "favorite": false, + "guid": "833ec988-3ccf-4fdd-ecb9-3bc95ab1b0d7", + "path": "z://MP4\\Let's Sing Karaoke\\Mills, Stephanie - Never Knew Love Like This Before (Karaoke & Lyrics).mp4", + "title": "Never Knew Love Like This Before" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "David Bowie", + "playlist_title": "Fashion", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "a2457115-22b5-cc6f-af3c-745e0724a05e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD055 - David Bowie And Marc Bolan & T Rex\\David Bowie - Fashion - SFG055 - 08.mp3", + "title": "Fashion" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Vapors", + "playlist_title": "Turning Japanese", + "found_song": { + "artist": "The Vapors", + "disabled": false, + "favorite": false, + "guid": "196321c0-dda9-aa0c-bc3c-c6a32dc7d3ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turning Japanese - The Vapors.mp4", + "title": "Turning Japanese" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Roger Daltrey", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "McVicar Soundtrack / Roger Daltrey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "652151f4-44fb-ab13-179d-e85619a28a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\McVicar Soundtrack Roger Daltrey - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Diana Ross", + "playlist_title": "Upside Down", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c97907b-cd4d-d443-da42-b98677acc064", + "path": "z://MP4\\ZoomKaraokeOfficial\\Diana Ross - Upside Down.mp4", + "title": "Upside Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Outlaws", + "playlist_title": "(Ghost) Riders In The Sky", + "found_song": { + "artist": "Outlaws", + "disabled": false, + "favorite": false, + "guid": "d5b1a673-9042-4266-f3cd-3110c5ca64ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ghost Riders In The Sky - Outlaws.mp4", + "title": "Ghost Riders In The Sky" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Willie Nelson", + "playlist_title": "On The Road Again", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "7aa27b4c-5ee3-dc59-1131-70151271b395", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On The Road Again - Willie Nelson.mp4", + "title": "On The Road Again" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Irene Cara", + "playlist_title": "Out Here On My Own", + "found_song": { + "artist": "Irene Cara", + "disabled": false, + "favorite": false, + "guid": "b6696c92-08c6-1130-256c-8d1d1da6ced3", + "path": "z://MP4\\TheKARAOKEChannel\\Irene Cara - Out Here On My Own.mp4", + "title": "Out Here On My Own" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Carly Simon", + "playlist_title": "Jesse", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "eb146dd5-d382-ee15-21e0-7323ddedc6a4", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Jesse (Karaoke).mp4", + "title": "Jesse" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Celebration", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b430092-658e-ce97-6d8c-9d7b641ee2f5", + "path": "z://MP4\\Sing King Karaoke\\Kool & The Gang - Celebration (2.mp4", + "title": "Celebration" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Woman In Love", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd8e983-3178-9bb0-0ae6-06df3d4ec92a", + "path": "z://MP4\\VocalStarKaraoke\\Barbra Streisand - Woman In Love.mp4", + "title": "Woman In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Cliff Richard", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "d98b46e2-8133-b7eb-4683-405bd57fd0ac", + "path": "z://MP4\\KaraFun Karaoke\\Dreamin' - Cliff Richard Karaoke Version KaraFun.mp4", + "title": "Dreamin'" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Leo Sayer", + "title": "More Than I Can Say", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Barbra Streisand & Barry Gibb", + "title": "Guilty", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Heart", + "title": "Tell It Like It Is", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Rod Stewart", + "title": "Passion", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Diana Ross", + "title": "It's My Turn", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Andy Gibb", + "title": "Time Is Time", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Olivia Newton-John & Cliff Richard", + "title": "Suddenly", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Daryl Hall John Oates", + "title": "You've Lost That Lovin' Feeling", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Doobie Brothers", + "title": "One Step Closer", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Delbert McClinton", + "title": "Giving It Up For Your Love", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Tierra", + "title": "Together", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Boz Scaggs", + "title": "Miss Sun", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Waylon", + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harry Chapin", + "title": "Sequel", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Fred Knoblock & Susan Anton", + "title": "Killin' Time", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Donna Summer", + "title": "Cold Love", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Babys", + "title": "Turn And Walk Away", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Michael Stanley Band", + "title": "He Can't Love You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Queen", + "title": "Need Your Loving Tonight", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bette Midler", + "title": "My Mother's Eyes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "L.T.D.", + "title": "Shine On", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Climax Blues Band", + "title": "Gotta Have More Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Earth, Wind & Fire", + "title": "You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Jacksons", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Rockpile", + "title": "Teacher Teacher", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Alan Parsons Project", + "title": "Games People Play", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Stevie Wonder", + "title": "I Ain't Gonna Stand For It", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "John Cougar", + "title": "This Time", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Randy Meisner", + "title": "Deep Inside My Heart", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Donna Summer", + "title": "The Wanderer", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Rita Coolidge", + "title": "Fool That I Am", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Pointer Sisters", + "title": "He's So Shy", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bob Seger", + "title": "The Horizontal Bop", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Pointer Sisters", + "title": "Could I Be Dreaming", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Donnie Iris", + "title": "Ah! Leah!", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Oak", + "title": "Set The Night On Fire", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dionne Warwick", + "title": "Easy Love", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Jacksons", + "title": "Lovely One", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Shalamar", + "title": "Full Of Fire", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Dire Straits", + "title": "Skateaway", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Aretha Franklin", + "title": "United Together", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Willis The Guard & Vigorish", + "title": "Merry Christmas In The NFL", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Kings", + "title": "Switchin' To Glide/This Beat Goes On", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Stacy Lattisaw", + "title": "Let Me Be Your Angel", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Cheap Trick", + "title": "Stop This Game", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "J.D. Drews", + "title": "Don't Want No-Body", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Pendulum", + "title": "Gypsy Spirit", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kansas", + "title": "Got To Rock On", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 4 Seasons", + "title": "Spend The Night In Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Manhattan Transfer", + "title": "Trickle Trickle", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Paul Simon", + "title": "One-Trick Pony", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Reddings", + "title": "Remote Control", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Pure Prairie League", + "title": "I Can't Stop The Feelin'", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jackie English", + "title": "Once A Night", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Marcy Levy & Robin Gibb", + "title": "Help Me!", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jimmy Hall", + "title": "I'm Happy That Love Has Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 4, + "missing_count": 57, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1979 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rupert Holmes", + "playlist_title": "Escape (The Pina Colada Song)", + "found_song": { + "artist": "Rupert Holmes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e1fa6ca-0201-4faa-523a-8ab8f8613f4c", + "path": "z://MP4\\Sing King Karaoke\\Rupert Holmes - Escape (The Pina Colada Song.mp4", + "title": "Escape (The Pina Colada Song)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Styx", + "playlist_title": "Babe", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "e5776d60-84e6-7aa4-bcd3-c59bbfc4c40b", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Babe (Karaoke & Lyrics) (2).mp4", + "title": "Babe" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "J.D.Souther", + "playlist_title": "You're Only Lonely", + "found_song": { + "artist": "J. D. Souther", + "disabled": false, + "favorite": false, + "guid": "7a84d28a-9e4b-c930-1ec1-a7d66ffa7690", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re Only Lonely - J. D. Souther.mp4", + "title": "You re Only Lonely" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Supertramp", + "playlist_title": "Take The Long Way Home", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f7e2ab9-6a08-1c7d-64ec-24c8c4d7e9d4", + "path": "z://MP4\\KaraokeOnVEVO\\Supertramp - Take The Long Way Home.mp4", + "title": "Take The Long Way Home" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Michael Jackson", + "playlist_title": "Rock With You", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "77be5301-0d2d-5a5f-d5ee-cfb1dafffebb", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - Rock With You (Karaoke & Lyrics) (2) (2).mp4", + "title": "Rock With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cliff Richard", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "b381b1bd-aa48-d186-8949-2f8a746b19dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Don t Talk Anymore - Cliff Richard.mp4", + "title": "We Don t Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Foreigner", + "playlist_title": "Head Games", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7258bb94-d489-f049-ed96-71be0e29614b", + "path": "z://CDG\\Various\\Foreigner - Head Games.mp3", + "title": "Head Games" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dr. Hook", + "playlist_title": "Better Love Next Time", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4aef2358-9035-be2e-d12d-5a07748da747", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Better Love Next Time.mp4", + "title": "Better Love Next Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Heartache Tonight", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "79b795f7-47d0-a1f8-ac27-d8d3a12729b1", + "path": "z://CDG\\Various\\Eagles - Heartache Tonight.mp3", + "title": "Heartache Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Loggins", + "playlist_title": "This Is It", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31aa53d2-6eed-bb08-67b3-e932001f7c6b", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Loggins - This Is It.mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Coward Of The County", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "c73cf52d-1498-50fc-008e-562ef6488714", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Coward Of The County (Karaoke Version).mp4", + "title": "Coward Of The County" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Don't Do Me Like That", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6bd1e0-c98e-e3af-b5e6-9b1f349ca329", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Dont Do Me Like That.mp4", + "title": "Don't Do Me Like That" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Barry Manilow", + "playlist_title": "Ships", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "901d4952-0094-028d-c937-bbc27bdc7f34", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - Ships.mp4", + "title": "Ships" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "ABBA", + "playlist_title": "Chiquitita", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "8810d678-17bc-554f-430a-ca0cfe9485b1", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Chiquitita (Karaoke Version).mp4", + "title": "Chiquitita" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "M", + "playlist_title": "Pop Muzik", + "found_song": { + "artist": "M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1373d3b-2c44-ae19-bf98-3e9a34982b3e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 828\\M - Pop Muzik - SFMW 828 -10.mp3", + "title": "Pop Muzik" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", + "path": "z://MP4\\Let's Sing Karaoke\\Warwick, Dionne - Deja Vu (Karaoke & Lyrics).mp4", + "title": "Deja Vu" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Sara", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f69d0f15-1f84-f687-4476-282e21d387b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Fleetwood Mac - Sara.mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Anne Murray", + "playlist_title": "Broken Hearted Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2c04d1a-be06-8a44-2693-84f1a8a01a4a", + "path": "z://MP4\\Sing King Karaoke\\Anne Murray - Broken Hearted Me.mp4", + "title": "Broken Hearted Me" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Blackfoot", + "playlist_title": "Train, Train", + "found_song": { + "artist": "Blackfoot", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5819a31b-6820-7998-3d50-fc2b200c774d", + "path": "z://MP4\\KaraokeOnVEVO\\Blackfoot - Train, Train.mp4", + "title": "Train, Train" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Sugarhill Gang", + "playlist_title": "Rapper's Delight", + "found_song": { + "artist": "Sugarhill Gang", + "disabled": false, + "favorite": false, + "guid": "a3d371e0-a965-81e1-57e6-798847e7b1be", + "path": "z://CDG\\Various\\Sugarhill Gang - Rapper's Delight.mp3", + "title": "Rapper's Delight" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Buggles", + "playlist_title": "Video Killed The Radio Star", + "found_song": { + "artist": "The Buggles", + "disabled": false, + "favorite": false, + "guid": "4fe59e34-ea75-1fc8-cfe3-d2c7448b4ee9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Video Killed The Radio Star - The Buggles.mp4", + "title": "Video Killed The Radio Star" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Donna Summer", + "playlist_title": "Dim All The Lights", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "63cca6f3-6806-ce7d-c1e5-5db2ee8faaab", + "path": "z://CDG\\Various\\Donna Summer - Dim All The Lights.mp3", + "title": "Dim All The Lights" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Suzi Quatro", + "playlist_title": "She's In Love With You", + "found_song": { + "artist": "Suzi Quatro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc27d180-78ac-884f-2c24-9c5bfce44bcf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Suzi Quatro - Shes In Love With You.mp4", + "title": "She's In Love With You" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "TUSK", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "78e334f0-551c-d74f-65e0-85f5a13d0a0b", + "path": "z://MP4\\KaraFun Karaoke\\Tusk - Fleetwood Mac Karaoke Version KaraFun.mp4", + "title": "Tusk" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Rainbow", + "playlist_title": "Since You Been Gone", + "found_song": { + "artist": "Rainbow", + "disabled": false, + "favorite": false, + "guid": "9d547c31-f4ca-4ecf-8635-231b09122a4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since You Been Gone - Rainbow.mp4", + "title": "Since You Been Gone" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Last Train To London", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "81ef8af7-7b4d-2f4e-064c-788c3fe92a5c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Train To London - Electric Light Orchestra.mp4", + "title": "Last Train To London" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Fool In The Rain", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "672eec1e-83a4-0f82-0986-62ab8a357a44", + "path": "z://CDG\\Various\\Led Zeppelin - Fool In The Rain.mp3", + "title": "Fool In The Rain" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Neil Diamond", + "playlist_title": "September Morn'", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "4e22fa17-d416-ad7a-c208-6973aaf736e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke September Morn - Neil Diamond.mp4", + "title": "September Morn" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Anne Murray", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b01144c-bf70-c7b8-08dc-ab6f1a68a288", + "path": "z://MP4\\VocalStarKaraoke\\Anne Murray - Daydream Believer.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Police", + "playlist_title": "Message In A Bottle", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "fad72290-cd6e-21f5-8ceb-66d61017bd3d", + "path": "z://MP4\\Sing King Karaoke\\The Police - Message In A Bottle (Karaoke Version).mp4", + "title": "Message In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pat Benatar", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "4d122c4d-b3fc-560d-f634-e4734ffaa916", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbreaker - Pat Benatar.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Longer", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "3844c7cd-be87-40d7-2ba3-f458dd4398af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longer - Dan Fogelberg.mp4", + "title": "Longer" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Shalamar", + "playlist_title": "The Second Time Around", + "found_song": { + "artist": "Shalamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b19ad48-d74f-6e94-fc01-fbd671e03f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Shalamar - The Second Time Around.mp4", + "title": "The Second Time Around" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Rod Stewart", + "playlist_title": "I Don't Want To Talk About It", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "f69a81ed-efc1-7428-80cb-399901dc4bda", + "path": "z://MP4\\Sing King Karaoke\\Rod Stewart - I Don't Want To Talk About It (Karaoke Version).mp4", + "title": "I Don't Want To Talk About It" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Dollar", + "playlist_title": "Shooting Star", + "found_song": { + "artist": "Dollar", + "disabled": false, + "favorite": false, + "guid": "8a85919b-9119-c59c-afd8-004d722f3313", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 914\\Dollar - Shooting Star - SFMW914 - 10.mp3", + "title": "Shooting Star" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Jimmy Buffett", + "playlist_title": "Volcano", + "found_song": { + "artist": "Jimmy Buffett", + "disabled": false, + "favorite": false, + "guid": "7705c23b-7112-f884-10f7-2fe1d0af0715", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Volcano - Jimmy Buffett.mp4", + "title": "Volcano" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kenny Rogers", + "playlist_title": "You Decorated My Life", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "2886776b-05ba-46b6-7d83-39375645cfbf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Decorated My Life - Kenny Rogers.mp4", + "title": "You Decorated My Life" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Blondie", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "afec49e9-b92f-2989-cb63-97958fdc0eb0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Blondie - Dreaming.mp4", + "title": "Dreaming" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Kc And The Sunshine Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95faa1ff-36cb-3a07-2817-fac39fef97d8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 832\\Kc And The Sunshine Band - Please Don't Go - SFMW 832 -07.mp3", + "title": "Please Don't Go" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Send One Your Love", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "db22bd5e-2945-eb7a-ffae-8ee19ee508d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Love - Stevie Wonder.mp4", + "title": "For Your Love" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Commodores", + "playlist_title": "Still", + "found_song": { + "artist": "The Commodores", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e988415e-e8ee-dd82-7147-d50fe0081cef", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Commodores - Still.mp4", + "title": "Still" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Captain & Tennille", + "playlist_title": "Do That To Me One More Time", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "guid": "4a428cb9-beee-0645-ab0e-5833189a7971", + "path": "z://MP4\\Let's Sing Karaoke\\Captain & Tennille - Do That To Me One More Time (Karaoke & Lyrics).mp4", + "title": "Do That To Me One More Time" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Barbra Streisand/Donna Summer", + "playlist_title": "No More Tears (Enough Is Enough)", + "found_song": { + "artist": "Barbra Streisand/Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfefff5f-9d94-c39d-754b-70d2722f3113", + "path": "z://MP4\\KaraokeOnVEVO\\Barbra StreisandDonna Summer - No More Tears (Enough Is Enough.mp4", + "title": "No More Tears (Enough Is Enough)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Ladies Night", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "71134192-c701-e10b-13cf-a6ca0b1e72ac", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ladies Night - Kool And The Gang.mp4", + "title": "Ladies Night" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Little River Band", + "playlist_title": "Cool Change", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "88ba8128-3224-7a6a-c0c2-aa68e30b720c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cool Change - Little River Band.mp4", + "title": "Cool Change" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Eagles", + "playlist_title": "The Long Run", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92e004ca-1212-5e50-1a33-45763c4fb0e1", + "path": "z://CDG\\Various\\Eagles - Long Run.mp3", + "title": "Long Run" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Jane", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "7e51306e-2ade-7620-7113-99a611e2f229", + "path": "z://CDG\\Various\\Jefferson Starship - Sara.mp3", + "title": "Sara" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Pains", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Rita Coolidge", + "playlist_title": "I'd Rather Leave While I'm In Love", + "found_song": { + "artist": "Rita Colerid", + "disabled": false, + "favorite": false, + "guid": "8b9bb87b-0d9d-d54d-a45b-1ee37e02bc2c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF014\\Rita Colerid - I'd Rather Leave While I'm In Love - SF014 - 13.mp3", + "title": "I'd Rather Leave While I'm In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Spinners", + "playlist_title": "Working My Way Back To You/Forgive Me, Girl", + "found_song": { + "artist": "The Spinners", + "disabled": false, + "favorite": false, + "guid": "d61baec2-6093-c93a-78cc-90819cf7c968", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working My Way Back To You Forgive Me Girl (LP version) - The Spinners.mp4", + "title": "Working My Way Back To You Forgive Me Girl (LP version)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Billy Preston & Syreeta", + "playlist_title": "With You I'm Born Again", + "found_song": { + "artist": "Billy Preston", + "disabled": false, + "favorite": false, + "guid": "88bbb0b5-4e4b-f7d4-2d35-c12867a6be25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke With You I'm Born Again - Billy Preston.mp4", + "title": "With You I'm Born Again" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 15, + "artist": "Smokey Robinson", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Pablo Cruise", + "title": "I Want You Tonight", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Prince", + "title": "I Wanna Be Your Lover", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Crystal Gayle", + "title": "Half The Way", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Daryl Hall John Oates", + "title": "Wait For Me", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Alan Parsons Project", + "title": "Damned If I Do", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Isaac Hayes", + "title": "Don't Let Go", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Foghat", + "title": "Third Time Lucky (First Time I Was A Fool)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "John Cougar", + "title": "I Need A Lover", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Teri DeSario With K.C.", + "title": "Yes, I'm Ready", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Richie Furay", + "title": "I Still Have Dreams", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Herb Alpert", + "title": "Rotation", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The O'Jays", + "title": "Forever Mine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Tom Johnston", + "title": "Savannah Nights", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Kermit (Jim Henson)", + "title": "Rainbow Connection", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Steve Forbert", + "title": "Romeo's Tune", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Mistress", + "title": "Mistrusted Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Santana", + "title": "You Know That I Love You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Rufus & Chaka", + "title": "Do You Love What You Feel", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Robert John", + "title": "Lonely Eyes", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Cheap Trick", + "title": "Voices", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "John Stewart", + "title": "Lost Her In The Sun", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Flying Lizards", + "title": "Money", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Bar-Kays", + "title": "Move Your Boogie Body", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Joyce Cobb", + "title": "Dig The Gold", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Styx", + "title": "Why Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Commodores", + "title": "Wonderland", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Inmates", + "title": "Dirty Water", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Dirt Band", + "title": "An American Dream", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Dann Rogers", + "title": "Looks Like Love Again", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Pleasure", + "title": "Glide", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bonnie Raitt", + "title": "You're Gonna Get What's Coming", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Barry Manilow", + "title": "When I Wanted You", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Peter Brown", + "title": "Stargazer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Leif Garrett", + "title": "Memorize Your Number", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Earth, Wind & Fire", + "title": "Star", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Robert Palmer", + "title": "Can We Still Be Friends", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Toto", + "title": "99", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bonnie Pointer", + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jennifer Warnes", + "title": "Don't Make Me Over", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Cugini", + "title": "Let Me Sleep Alone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Switch", + "title": "I Call Your Name", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Lobo", + "title": "Holdin' On For Dear Love", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Chris Thompson & Night", + "title": "If You Remember Me", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Herb Alpert", + "title": "Rise", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Village People", + "title": "Ready For The 80's", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Frank Mills", + "title": "Peter Piper", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lauren Wood", + "title": "Please Don't Leave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 13, + "missing_count": 48, + "needs_manual_review": 13 + } + }, + { + "playlist_title": "1978 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chic", + "playlist_title": "Le Freak", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5abf394-6ffe-e92d-01ae-4f37994dd07d", + "path": "z://MP4\\Sing King Karaoke\\Chic - Le Freak.mp4", + "title": "Le Freak" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bee Gees", + "playlist_title": "Too Much Heaven", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "da4476fb-ab2f-b8e3-4925-72fef1b3d153", + "path": "z://CDG\\Various\\Bee Gees - Too Much Heaven.mp3", + "title": "Too Much Heaven" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Billy Joel", + "playlist_title": "My Life", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "275d0a4a-71ea-121a-8fe3-6776ad62624e", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - My Life.mp4", + "title": "My Life" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Dr. Hook", + "playlist_title": "Sharing The Night Together", + "found_song": { + "artist": "Dr. Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36213bb8-a127-1c6c-65d9-040c4d8019d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook - Sharing The Night Together.mp4", + "title": "Sharing The Night Together" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Toto", + "playlist_title": "Hold The Line", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "guid": "6a133bc5-c6b7-7174-48dd-040c1d50aadc", + "path": "z://MP4\\KaraFun Karaoke\\Hold the Line - Toto Karaoke Version KaraFun.mp4", + "title": "Hold the Line" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Ooh Baby Baby", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "6cafdf1d-b296-22b0-d6b4-d99251ec07c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ooh Baby Baby - Linda Ronstadt.mp4", + "title": "Ooh Baby Baby" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "MacArthur Park", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "87e8a086-df91-0b62-002b-c8f5767e7275", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke MacArthur Park - Donna Summer.mp4", + "title": "MacArthur Park" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "A Little More Love", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8cd8197-d049-dfd5-bddd-c6e7edfc13ac", + "path": "z://MP4\\ZoomKaraokeOfficial\\Olivia Newton-John - A Little More Love.mp4", + "title": "A Little More Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79ac7b14-6c5b-51d8-b2c0-4167170b196d", + "path": "z://MP4\\KaraokeOnVEVO\\Eagles - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chaka Khan", + "playlist_title": "I'm Every Woman", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3e15c32-5c21-48bb-919f-bcd0ad3c9646", + "path": "z://MP4\\KaraokeOnVEVO\\Chaka Khan - Im Every Woman.mp4", + "title": "I'm Every Woman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hot Chocolate", + "playlist_title": "Every 1's A Winner", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f527d7-c2cb-ccb7-3728-cadeef862586", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hot Chocolate - Every 1s A Winner.mp4", + "title": "Every 1's A Winner" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Nicolette Larson", + "playlist_title": "Lotta Love", + "found_song": { + "artist": "Nicolette Larson", + "disabled": false, + "favorite": false, + "guid": "505ea347-37d6-5e3c-eaba-f574f07793bd", + "path": "z://MP4\\Let's Sing Karaoke\\Nicolette Larson - Lotta Love (Karaoke & Lyrics).mp4", + "title": "Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fire", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Ambrosia", + "playlist_title": "How Much I Feel", + "found_song": { + "artist": "Ambrosia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a00fe174-4288-9df4-5721-d142c87bf1d7", + "path": "z://CDG\\Various\\Ambrosia - How Much I Feel.mp3", + "title": "How Much I Feel" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Heart", + "playlist_title": "Straight On", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "b3d7d263-1f91-d616-52b1-8c88b2c67029", + "path": "z://MP4\\Let's Sing Karaoke\\Heart - Straight On (Karaoke & Lyrics).mp4", + "title": "Straight On" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Elton John", + "playlist_title": "Part-Time Love", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e68df877-4e49-fde4-499d-9c8a53d1c3a0", + "path": "z://MP4\\singsongsmusic\\Part Time Love - Karaoke HD (In the style of Elton John).mp4", + "title": "Part Time Love" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Boston", + "playlist_title": "A Man I'll Never Be", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf991361-0b07-6665-1731-c2a64c7c9421", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - A Man Ill Never Be.mp4", + "title": "A Man I'll Never Be" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kenny Rogers", + "playlist_title": "The Gambler", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "ee3113cf-c1d5-3888-9389-7600a7ad05b2", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - The Gambler (Karaoke Version).mp4", + "title": "The Gambler" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Talking Heads", + "playlist_title": "Take Me To The River", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "guid": "50660a60-f2c6-5a7e-63dd-3dcf062fb327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take Me To The River - Talking Heads.mp4", + "title": "Take Me To The River" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Rod Stewart", + "playlist_title": "Da Ya Think I'm Sexy?", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "90e9c708-1024-642c-be4d-721aea09f6e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Da Ya Think I m Sexy - Rod Stewart.mp4", + "title": "Da Ya Think I m Sexy" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Melissa Manchester", + "playlist_title": "Don't Cry Out Loud", + "found_song": { + "artist": "Melissa Manchester", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e708b1d-9ba8-5366-e8ac-bd53f596648c", + "path": "z://MP4\\Sing King Karaoke\\Melissa Manchester - Dont Cry Out Loud.mp4", + "title": "Don't Cry Out Loud" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Rick James", + "playlist_title": "Mary Jane", + "found_song": { + "artist": "Rick James", + "disabled": false, + "favorite": false, + "guid": "e67697f0-a082-ca0f-eccd-e26e4c958fbf", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Rick James - Mary Jane (Karaoke) (Vocal Reduction).mp4", + "title": "Mary Jane" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cheryl Lynn", + "playlist_title": "Got To Be Real", + "found_song": { + "artist": "Cheryl Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6718ef7a-9a9e-ab1e-6c7e-27a2e5f8002f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Cheryl Lynn - Got To Be Real - SFMW 827 -06.mp3", + "title": "Got To Be Real" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Meat Loaf", + "playlist_title": "You Took The Words Right Out Of My Mouth", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f99a7346-bc91-20e1-41e2-18c411eaf937", + "path": "z://MP4\\KaraokeOnVEVO\\Meat Loaf - You Took The Words Right Out Of My Mouth.mp4", + "title": "You Took The Words Right Out Of My Mouth" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Foreigner", + "playlist_title": "Double Vision", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "800c3280-2836-7d6d-07d7-203d3a615eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Double Vision - Foreigner.mp4", + "title": "Double Vision" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rose Royce", + "playlist_title": "Love Don't Live Here Anymore", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4e9ed-bc20-0d23-3395-035e771618bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Rose Royce - Love Don't Live Here Anymore - SF103 - 09.mp3", + "title": "Love Don't Live Here Anymore" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blues Brothers", + "playlist_title": "Soul Man", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a743b8a-d4d8-016b-7bb1-a3c4780c2c7d", + "path": "z://MP4\\VocalStarKaraoke\\Blues Brothers - Soul Man.mp4", + "title": "Soul Man" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry Manilow", + "playlist_title": "Somewhere In The Night", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Player", + "playlist_title": "Silver Lining", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecb1a978-5fb4-35bf-6661-4944a4e1ad3a", + "path": "z://MP4\\Sing King Karaoke\\Player - Silver Lining.mp4", + "title": "Silver Lining" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Lindisfarne", + "playlist_title": "Run For Home", + "found_song": { + "artist": "Lindisfarne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6112c2f6-7457-ac92-06fa-296240373cbb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lindisfarne - Run For Home.mp4", + "title": "Run For Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Foreigner", + "playlist_title": "Blue Morning, Blue Day", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "756f7e22-64f9-3d9f-230b-d5e10b412f7c", + "path": "z://CDG\\Various\\Foreigner - Blue Morning Blue Day.mp3", + "title": "Blue Morning Blue Day" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Marshall Hain", + "playlist_title": "Dancing In The City", + "found_song": { + "artist": "Marshall Hain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eed99ea4-59f0-b12b-918e-a8e6f69172c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 872\\Marshall Hain - Dancing In The City - SFMW 872 -04.mp3", + "title": "Dancing In The City" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Justin Hayward", + "playlist_title": "Forever Autumn", + "found_song": { + "artist": "Justin Hayward", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e938e55e-b53a-d088-e296-093c39df04ea", + "path": "z://MP4\\KaraokeOnVEVO\\Justin Hayward - Forever Autumn.mp4", + "title": "Forever Autumn" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Bobby Caldwell", + "playlist_title": "What You Won't Do For Love", + "found_song": { + "artist": "Bobby Caldwell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bedb2d91-5207-c23f-0a1b-a1aa182f797c", + "path": "z://MP4\\Sing King Karaoke\\Bobby Caldwell - What You Wont Do For Love.mp4", + "title": "What You Won't Do For Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "This Moment In Time", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "18bbb746-6ffb-f3ad-b9ee-6e7237731596", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Moment In Time - Engelbert Humperdinck.mp4", + "title": "This Moment In Time" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boney M", + "playlist_title": "Mary's Boy Child/Oh My Lord", + "found_song": { + "artist": "Boney M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8393e23-f04d-2bb6-112e-a76ea3bc5f60", + "path": "z://MP4\\ZoomKaraokeOfficial\\Boney M - Marys Boy Child (Oh My Lord).mp4", + "title": "Mary's Boy Child (Oh My Lord)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Anne Murray", + "playlist_title": "You Needed Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "guid": "6cc719e4-1d60-e6dc-9418-d84c240396ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Needed Me - Anne Murray.mp4", + "title": "You Needed Me" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Nick Gilder", + "playlist_title": "Hot Child In The City", + "found_song": { + "artist": "Nick Gilder", + "disabled": false, + "favorite": false, + "guid": "e3a54ad4-5464-8d5c-f6c9-fdcf50da58f8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hot Child In The City - Nick Gilder.mp4", + "title": "Hot Child In The City" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Alicia Bridges", + "playlist_title": "I Love The Nightlife (Disco 'Round)", + "found_song": { + "artist": "Alicia Bridges", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bb7ba372-c1ac-b004-c2da-85c5476aa7e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alicia Bridges - I Love The Night Life (Disco Round).mp4", + "title": "I Love The Night Life (Disco Round)" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "September", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab95b129-8e2b-7de8-1227-75713361334b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - September.mp4", + "title": "September" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Leif Garrett", + "playlist_title": "I Was Made For Dancin'", + "found_song": { + "artist": "Leif Garrett", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86abe258-91bd-7dd9-a7d2-ed34a8aafee9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leif Garrett - I Was Made For Dancing.mp4", + "title": "I Was Made For Dancing" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "The Cars", + "playlist_title": "My Best Friend's Girl", + "found_song": { + "artist": "Cars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a7ad90-5359-6146-6317-22e865aa8291", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 808\\Cars - My Best Friends Girl - SFMW 808 -09.mp3", + "title": "My Best Friends Girl" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The J. Geils Band", + "playlist_title": "One Last Kiss", + "found_song": { + "artist": "J Geils Band", + "disabled": false, + "favorite": false, + "guid": "cfe2c910-6d85-7cd3-aeb5-8ddb6a76a584", + "path": "z://CDG\\Various\\J Geils Band - One Last Kiss.mp3", + "title": "One Last Kiss" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Captain & Tennille", + "playlist_title": "You Need A Woman Tonight", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "baa322e9-6861-69a6-eb7f-d787be12d253", + "path": "z://MP4\\KaraokeOnVEVO\\Captain & Tennille - You Need A Woman Tonight.mp4", + "title": "You Need A Woman Tonight" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Peaches & Herb", + "playlist_title": "Shake Your Groove Thing", + "found_song": { + "artist": "Peaches And Herb", + "disabled": false, + "favorite": false, + "guid": "70d7b36c-bc4a-4d37-6f1f-13c7bd5fe397", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake Your Groove Thing - Peaches And Herb.mp4", + "title": "Shake Your Groove Thing" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Barbra Streisand & Neil Diamond", + "title": "You Don't Bring Me Flowers", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Gino Vannelli", + "title": "I Just Wanna Stop", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Andy Gibb", + "title": "(Our Love) Don't Throw It All Away", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Alice Cooper", + "title": "How You Gonna See Me Now", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Eric Clapton And His Band", + "title": "Promises", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Al Stewart", + "title": "Time Passages", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Firefall", + "title": "Strange Way", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "We've Got Tonight", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ace Frehley", + "title": "New York Groove", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Paul Davis", + "title": "Sweet Life", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Queen", + "title": "Bicycle Race/Fat Bottomed Girls", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ian Matthews", + "title": "Shake It", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Chanson", + "title": "Don't Hold Back", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Dan Hartman", + "title": "Instant Replay", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Livingston Taylor", + "title": "I Will Be In Love With You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Gerry Rafferty", + "title": "Home And Dry", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Paul Stanley", + "title": "Hold Me, Touch Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Exile", + "title": "You Thrill Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cooper Brothers", + "title": "The Dream Never Dies", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gene Simmons", + "title": "Radioactive", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dan Fogelberg/Tim Weisberg", + "title": "The Power Of Gold", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Rolling Stones", + "title": "Shattered", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Dolly Parton", + "title": "Baby I'm Burnin'", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Musique", + "title": "In The Bush", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Barry White", + "title": "Your Sweetness Is My Weakness", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Chicago", + "title": "Alive Again", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kenny Loggins", + "title": "Easy Driver", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Fotomaker", + "title": "Miles Away", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Nigel Olsson", + "title": "Dancin' Shoes", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Daryl Hall John Oates", + "title": "I Don't Wanna Lose You", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Jefferson Starship", + "title": "Light The Sky On Fire", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Don Ray", + "title": "Got To Have Loving", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Carpenters", + "title": "I Believe You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Santana", + "title": "Well All Right", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "John Paul Young", + "title": "Lost In Your Love", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Eddie Money", + "title": "You've Really Got A Hold On Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Chicago", + "title": "No Tell Lover", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Switch", + "title": "There'll Never Be", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Faith Band", + "title": "Dancin' Shoes", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Bonnie Pointer", + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "KC And The Sunshine Band", + "title": "Who Do Ya Love", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Dobie Gray", + "title": "You Can Do It", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Eric Carmen", + "title": "Change Of Heart", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Stephen Bishop", + "title": "Animal House", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Yvonne Elliman", + "title": "Moment By Moment", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Blend", + "title": "I'm Gonna Make You Love Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "John Davis And The Monster Orchestra", + "title": "Ain't That Enough For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Raes", + "title": "A Little Lovin' (Keeps The Doctor Away)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Glen Campbell", + "title": "Can You Fool", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Pablo Cruise", + "title": "Don't Want To Live Without It", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Captain & Tennille", + "title": "You Never Done It Like That", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Barry Manilow", + "title": "Ready To Take A Chance Again", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Jimmy Buffett", + "title": "Ma??�ana", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 7, + "missing_count": 53, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1977 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bee Gees", + "playlist_title": "How Deep Is Your Love", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "4f0637db-e2d1-7cee-448f-f8d79564d859", + "path": "z://MP4\\Sing King Karaoke\\Bee Gees - How Deep Is Your Love (Karaoke Version).mp4", + "title": "How Deep Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Debby Boone", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "Debby Boone", + "disabled": false, + "favorite": false, + "guid": "b7162a5a-6c18-b06f-84dd-3dcc8af0e8f1", + "path": "z://MP4\\Sing King Karaoke\\Debby Boone - You Light Up My Life (Karaoke Version).mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Blue Bayou", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "4c8c6465-0756-34f1-3b89-7726e3c143a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Bayou - Linda Ronstadt.mp4", + "title": "Blue Bayou" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LTD", + "playlist_title": "(Every Time I Turn Around) Back In Love Again", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "f671125e-b3b8-826e-827a-8193a987bd8f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Every Time I Turn Around) Back in Love Again - LTD.mp4", + "title": "(Every Time I Turn Around) Back in Love Again" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "It's So Easy", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636124b2-b054-a436-e941-ac48b66b9365", + "path": "z://MP4\\KaraokeOnVEVO\\Linda Ronstadt - Its So Easy.mp4", + "title": "It's So Easy" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Player", + "playlist_title": "Baby Come Back", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "guid": "70eb27a8-6ace-2ab2-bd9d-021cc9640cc4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby Come Back - Player.mp4", + "title": "Baby Come Back" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Crystal Gayle", + "playlist_title": "Don't It Make My Brown Eyes Blue", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "526f20e1-f00e-7071-55f4-37b1e70f53a2", + "path": "z://MP4\\Stingray Karaoke\\Don't It Make My Brown Eyes Blue in the Style of Crystal Gayle karaoke with lyrics (no lead vocal).mp4", + "title": "Don't It Make My Brown Eyes Blue" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Dolly Parton", + "playlist_title": "Here You Come Again", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "b1db8473-37a0-8602-ebfc-1fe173cfd7b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here You Come Again - Dolly Parton.mp4", + "title": "Here You Come Again" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bob Welch", + "playlist_title": "Sentimental Lady", + "found_song": { + "artist": "Bob Welch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d358d001-5e78-351e-7b27-0220588d5cfd", + "path": "z://MP4\\KaraokeOnVEVO\\Bob Welch - Sentimental Lady.mp4", + "title": "Sentimental Lady" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Paul Simon", + "playlist_title": "Slip Slidin' Away", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50fcb524-0101-658e-7f0a-e353d59c0211", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Simon - Slip Slidin Away.mp4", + "title": "Slip Slidin' Away" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Styx", + "playlist_title": "Come Sail Away", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "2ba66c42-8545-2089-5ef7-0ddccb6fdcee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Sail Away - Styx.mp4", + "title": "Come Sail Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rita Coolidge", + "playlist_title": "We're All Alone", + "found_song": { + "artist": "Rita Coolidge", + "disabled": false, + "favorite": false, + "guid": "8372f7c0-5b6b-02cb-1264-43c9b94b9f06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We're All Alone - Rita Coolidge.mp4", + "title": "We're All Alone" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "You Make Loving Fun", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "b7566a6f-8ba1-4a76-8d4b-4a9d33927a72", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Loving Fun - Fleetwood Mac.mp4", + "title": "You Make Loving Fun" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Elvis Presley", + "playlist_title": "My Way", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "65abe184-84e4-f78e-ed48-97a95bc649ee", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - My Way (Karaoke).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Paul Davis", + "playlist_title": "I Go Crazy", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "9c2a06d5-1dfe-ff6c-dae0-c320314bba9f", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - I Go Crazy (Karaoke & Lyrics).mp4", + "title": "I Go Crazy" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Turn To Stone", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37d84af4-571d-4673-2f05-0fea7aaed7d1", + "path": "z://MP4\\KaraokeOnVEVO\\Electric Light Orchestra - Turn To Stone.mp4", + "title": "Turn To Stone" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "a028fc8c-aaed-7099-65a4-c3feae1b866b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just The Way You Are - Billy Joel.mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chic", + "playlist_title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "guid": "b67a9986-8618-0d01-9b24-3bf97ba77f12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance Dance Dance (Yowsah Yowsah Yowsah) - Chic.mp4", + "title": "Dance Dance Dance (Yowsah Yowsah Yowsah)" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Andy Gibb", + "playlist_title": "(Love Is) Thicker Than Water", + "found_song": { + "artist": "Andy Gibb", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e749fe4e-13e0-3412-fab5-6fc4507a336f", + "path": "z://CDG\\Various\\Andy Gibb - Love Is Thicker Than Water.mp3", + "title": "Love Is Thicker Than Water" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Odyssey", + "playlist_title": "Native New Yorker", + "found_song": { + "artist": "Odyssey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f08a3f5c-fdf4-caad-d7e9-5bae73766788", + "path": "z://MP4\\ZoomKaraokeOfficial\\Odyssey - Native New Yorker.mp4", + "title": "Native New Yorker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Bee Gees", + "playlist_title": "Stayin' Alive", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "dd62403e-a847-308b-4ad2-9a3a7124bbd3", + "path": "z://CDG\\Various\\Bee Gees - Stayin' Alive.mp3", + "title": "Stayin' Alive" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dan Hill", + "playlist_title": "Sometimes When We Touch", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "guid": "9fd9c589-00e3-9984-173d-85387a2f662c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sometimes When We Touch - Dan Hill.mp4", + "title": "Sometimes When We Touch" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Steely Dan", + "playlist_title": "Peg", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ce648556-ffce-67de-b533-8e0b90317f6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Peg - Steely Dan.mp4", + "title": "Peg" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Heatwave", + "playlist_title": "Boogie Nights", + "found_song": { + "artist": "Heatwave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79744d57-d741-857f-8751-cd3265886d0d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heatwave - Boogie Nights.mp4", + "title": "Boogie Nights" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Stevie Wonder", + "playlist_title": "As", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f74b5080-7ce5-2616-ca02-0339a5a26db6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke As - Stevie Wonder.mp4", + "title": "As" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "What's Your Name", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "guid": "f9f528cc-69c2-9d3a-2bcd-5109ac51431a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s Your Name - Lynyrd Skynyrd.mp4", + "title": "What s Your Name" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Santana", + "playlist_title": "She's Not There", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be610af8-e508-6958-4db2-8adbea575f79", + "path": "z://CDG\\SBI\\SBI-01\\SB03802 - Santana - She's Not There.mp3", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry White", + "playlist_title": "It's Ecstasy When You Lay Down Next To Me", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "b846ba3a-fca6-cdfc-0430-93a0368cd4e8", + "path": "z://CDG\\Various\\Barry White - It's Ecstasy When You Lay Down Next To Me.mp3", + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Foreigner", + "playlist_title": "Long, Long Way From Home", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d86def2-f95c-3ca7-8422-e5ed6c0fac99", + "path": "z://CDG\\Various\\Foreigner - Long, Long Way From Home.mp3", + "title": "Long, Long Way From Home" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Dave Mason", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Dave Mason", + "disabled": false, + "favorite": false, + "guid": "d095d90e-073c-a972-fcff-3b630ce9e868", + "path": "z://MP4\\KaraFun Karaoke\\We Just Disagree - Dave Mason Karaoke Version KaraFun.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carly Simon", + "playlist_title": "Nobody Does It Better", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7423bad7-0939-92ea-3dcf-d88310f3332d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Carly Simon - Nobody Does It Better - SFMW 850 -05.mp3", + "title": "Nobody Does It Better" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Judy Collins", + "playlist_title": "Send In The Clowns", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "773719a8-c788-88d8-0964-23c6d91da9bd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Send In The Clowns.mp4", + "title": "Send In The Clowns" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Donna Summer", + "playlist_title": "I Feel Love", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c7a93ca-ea8b-202e-6a8a-dba0e4db5e67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - I Feel Love.mp4", + "title": "I Feel Love" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Breakdown", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cc1b489-631b-c2e1-31f3-2f9d71eb04ab", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Breakdown.mp4", + "title": "Breakdown" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "I Honestly Love You", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "fdad03b1-2a92-51aa-5b8b-6a875299f8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Honestly Love You - Olivia Newton-John.mp4", + "title": "I Honestly Love You" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "ABBA", + "playlist_title": "The Name Of The Game", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "06c83cf6-f390-a3c6-3c40-c9bf4a73af6a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Name Of The Game (Karaoke Version).mp4", + "title": "The Name Of The Game" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "What A Difference You've Made In My Life", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84b6eb3c-c81c-b847-ecc5-5111f1dbb3e6", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - What A Difference You've Made In My Life.mp4", + "title": "What A Difference You've Made In My Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Aerosmith", + "playlist_title": "Draw The Line", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1691dd1f-4c7e-8cc7-700d-d9f227f7ae5d", + "path": "z://CDG\\Various\\Aerosmith - Draw The Line.mp3", + "title": "Draw The Line" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Tavares", + "playlist_title": "More Than A Woman", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f643a20-8c1c-407e-144c-2b58966ae6a2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tavares - More Than A Woman.mp4", + "title": "More Than A Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 18, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You/We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a7eb1c74-5d02-ff6d-edbb-e767359d9885", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Will Rock You We Are The Champions (Live) - Queen.mp4", + "title": "We Will Rock You We Are The Champions (Live)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Neil Diamond", + "playlist_title": "Desir??�e", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eba88b1-37b1-f7c7-8d21-a76debb6397c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Desiree.mp4", + "title": "Desiree" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Commodores", + "playlist_title": "Too Hot Ta Trot", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "e99e217f-4a21-b901-21a7-a414559ca3ec", + "path": "z://CDG\\Various\\Commodores - Too Hot To Trot.mp3", + "title": "Too Hot To Trot" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Carpenters", + "playlist_title": "Calling Occupants Of Interplanetary Craft", + "found_song": { + "artist": "The Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41511a87-3617-83df-d78b-e86cacf34ead", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Carpenters - Calling Occupants Of Interplanetary Craft.mp4", + "title": "Calling Occupants Of Interplanetary Craft" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Little River Band", + "playlist_title": "Happy Anniversary", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "738874d8-bd9d-2151-9940-e79a645d2230", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Anniversary - Little River Band.mp4", + "title": "Happy Anniversary" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Little River Band", + "playlist_title": "Help Is On Its Way", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "9a4fc5c9-12c7-d73c-4637-888c216d646d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Help Is On Its Way - Little River Band.mp4", + "title": "Help Is On Its Way" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Rod Stewart", + "title": "You're In My Heart (The Final Acclaim)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "High Inergy", + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Babys", + "title": "Isn't It Time", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Shaun Cassidy", + "title": "Hey Deanie", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Steve Miller Band", + "title": "Swingtown", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Leif Garrett", + "title": "Runaround Sue", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Randy Newman", + "title": "Short People", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Earth, Wind & Fire", + "title": "Serpentine Fire", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Chicago", + "title": "Baby, What A Big Surprise", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Bay City Rollers", + "title": "The Way I Feel Tonight", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Diana Ross", + "title": "Gettin' Ready For Love", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Paul Nicholas", + "title": "Heaven On The 7th Floor", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Santa Esmeralda Starring Leroy Gomez", + "title": "Don't Let Me Be Misunderstood", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Kansas", + "title": "Point Of Know Return", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Wings", + "title": "Girls' School", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "James Taylor", + "title": "Your Smiling Face", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Samantha Sang", + "title": "Emotion", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Cheech & Chong", + "title": "Bloat On Featuring the Bloaters", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Donny & Marie Osmond", + "title": "(You're My) Soul And Inspiration", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Bill Withers", + "title": "Lovely Day", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Peter Frampton", + "title": "Tried To Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Millie Jackson", + "title": "If You're Not Back In Love By Monday", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "KC And The Sunshine Band", + "title": "Wrap Your Arms Around Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Emotions", + "title": "Don't Ask My Neighbors", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "John Denver", + "title": "How Can I Leave You Again", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wet Willie", + "title": "Street Corner Serenade", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "England Dan & John Ford Coley", + "title": "Gone Too Far", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Al Martino", + "title": "The Next Hundred Years", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Leo Sayer", + "title": "Easy To Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Sammy Hagar", + "title": "You Make Me Crazy", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ramones", + "title": "Rockaway Beach", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "LeBlanc & Carr", + "title": "Falling", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Sylvers", + "title": "Any Way You Want Me", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Kenny Rogers", + "title": "Sweet Music Man", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Marilyn Scott", + "title": "God Only Knows", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Con Funk Shun", + "title": "Ffun", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Cat Stevens", + "title": "Was Dog A Doughnut", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Donna Summer", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jay Ferguson", + "title": "Thunder Island", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Stillwater", + "title": "Mind Bender", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Addrisi Brothers", + "title": "Never My Love", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "John Williams", + "title": "Theme From Close Encounters Of The Third Kind", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kellee Patterson", + "title": "If It Don't Fit, Don't Force It", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Johnny Rivers", + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rose Royce", + "title": "Ooh Boy", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "David Gates", + "title": "Goodbye Girl", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Le Pamplemousse", + "title": "Le Spank", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Eric Carmen", + "title": "Boats Against The Current", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "El Coco", + "title": "Cocomotion", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Bobby Arvon", + "title": "Until Now", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Alan Parsons Project", + "title": "Don't Let It Show", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Brick", + "title": "Dusic", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Shaun Cassidy", + "title": "That's Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jackie DeShannon", + "title": "Don't Let The Flame Burn Out", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Firefall", + "title": "Just Remember I Love You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 6, + "missing_count": 55, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1976 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rod Stewart", + "playlist_title": "Tonight's The Night (Gonna Be Alright)", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5666bad4-5895-4767-3dd3-49ed04873591", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Tonights The Night (Gonna Be Alright).mp4", + "title": "Tonight's The Night (Gonna Be Alright)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Leo Sayer", + "playlist_title": "You Make Me Feel Like Dancing", + "found_song": { + "artist": "Leo Sayer", + "disabled": false, + "favorite": false, + "guid": "c9a665d0-1b3b-18b3-1ec7-45918f03db04", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Feel Like Dancing - Leo Sayer.mp4", + "title": "You Make Me Feel Like Dancing" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boston", + "playlist_title": "More Than A Feeling", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "368fe08a-dfa9-f2a5-d864-aac4b5ff2f75", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - More Than A Feeling.mp4", + "title": "More Than A Feeling" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elton John", + "playlist_title": "Sorry Seems To Be The Hardest Word", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "52ac9f5f-8d36-79fc-6d0b-e6c7a897f04c", + "path": "z://MP4\\KaraFun Karaoke\\Elton John - Sorry Seems To Be The Hardest Word.mp4", + "title": "Sorry Seems To Be The Hardest Word" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Wish", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "00642160-065d-3a56-b670-f243ce08d852", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Wish - Stevie Wonder.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rose Royce", + "playlist_title": "Car Wash", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "guid": "05ecb4ca-9c37-17da-b0e2-094bec16d131", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Car Wash - Rose Royce.mp4", + "title": "Car Wash" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "After The Lovin'", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "9a423a38-1fd0-b742-b471-43369c6b1bff", + "path": "z://MP4\\Stingray Karaoke\\After The Lovin' in the Style of Engelbert Humperdinck karaoke video with lyrics (no lead vocal).mp4", + "title": "After The Lovin'" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Me", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Livin' Thing", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "685ee3a0-6d75-6d44-eaa6-aff529101f25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Livin Thing - Electric Light Orchestra.mp4", + "title": "Livin Thing" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "New Kid In Town", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "956c36af-901a-7840-dc23-80c24feb348e", + "path": "z://CDG\\Various\\Eagles - New Kid In Town.mp3", + "title": "New Kid In Town" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Bread", + "playlist_title": "Lost Without Your Love", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "2d4eec04-1c10-33f5-5ed3-cf833b9479a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lost Without Your Love - Bread.mp4", + "title": "Lost Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "David Dundas", + "playlist_title": "Jeans On", + "found_song": { + "artist": "David Dundas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3329806-aeb0-2cad-b0e7-bff57722eecc", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Dundas - Jeans On.mp4", + "title": "Jeans On" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Aerosmith", + "playlist_title": "Walk This Way", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "3a3169a7-52e6-be2b-103d-b6e4f679270b", + "path": "z://MP4\\Stingray Karaoke\\Aerosmith - Walk This Way (Karaoke Version).mp4", + "title": "Walk This Way" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Mary Macgregor", + "playlist_title": "Torn Between Two Lovers", + "found_song": { + "artist": "Mary MacGregor", + "disabled": false, + "favorite": false, + "guid": "ad1c3df8-0445-d8e1-c728-50612d53c7c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Torn Between Two Lovers - Mary MacGregor.mp4", + "title": "Torn Between Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kenny Nolan", + "playlist_title": "I Like Dreamin'", + "found_song": { + "artist": "Kenny Nolan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb43df8d-1338-ccd1-169a-191dfa9584cd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Nolan - I Like Dreamin.mp4", + "title": "I Like Dreamin'" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bee Gees", + "playlist_title": "Love So Right", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cff7f448-6cd4-9f33-0fa7-d15f74989ec0", + "path": "z://CDG\\Various\\Bee Gees - Love So Right.mp3", + "title": "Love So Right" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Barry Manilow", + "playlist_title": "Weekend In New England", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "f1710641-ceb0-862f-81c2-b2f54f46c0b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Weekend In New England - Barry Manilow.mp4", + "title": "Weekend In New England" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "It Keeps You Runnin'", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "427cb523-d8c0-2f4e-5013-a3a1985b0dc1", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - It Keeps You Runnin.mp4", + "title": "It Keeps You Runnin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Smokie", + "playlist_title": "Living Next Door To Alice", + "found_song": { + "artist": "Smokie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1a53037-514b-1b71-9bed-2237de32944d", + "path": "z://MP4\\KaraokeOnVEVO\\Smokie - Living Next Door To Alice.mp4", + "title": "Living Next Door To Alice" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dr. Hook", + "playlist_title": "If Not You", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6ff18be-9337-cefd-65bf-2ff345519418", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - If Not You.mp4", + "title": "If Not You" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Commodores", + "playlist_title": "Just To Be Close To You", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "bb46d58e-610c-ae5f-73a0-d7f51095e5b0", + "path": "z://CDG\\Various\\Commodores - Just To Be Close To You.mp3", + "title": "Just To Be Close To You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Tavares", + "playlist_title": "Don't Take Away The Music", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2d59ea7-62c8-d4ff-bc9f-e7a6369a8084", + "path": "z://MP4\\KaraokeOnVEVO\\Tavares - Don't Take Away The Music.mp4", + "title": "Don't Take Away The Music" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Bob Seger", + "playlist_title": "Night Moves", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "9b1a6abb-6a20-0b99-2e86-6fd9047960ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Night Moves - Bob Seger.mp4", + "title": "Night Moves" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Kiss", + "playlist_title": "Hard Luck Woman", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "d84602c2-1337-2858-d1b1-aa353d8f83ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Luck Woman - Kiss.mp4", + "title": "Hard Luck Woman" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "ABBA", + "playlist_title": "Dancing Queen", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee292e40-26f4-97c6-081a-ffbcfc772f07", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Dancing Queen.mp4", + "title": "Dancing Queen" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "The Beatles", + "playlist_title": "Ob-la-di, Ob-la-da", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3bb5c4c3-3c35-e652-031e-bcf455d67f11", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Ob-La-Di, Ob-La-Da (Karaoke Version).mp4", + "title": "Ob-La-Di, Ob-La-Da" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Deniece Williams", + "playlist_title": "Free", + "found_song": { + "artist": "Deniece Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cfbb8da-3c18-83d6-56c7-cc96ac9dda20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Deniece Williams - Free - SF103 - 01.mp3", + "title": "Free" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Thelma Houston", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Thelma Houston", + "disabled": false, + "favorite": false, + "guid": "71def665-46dd-6b16-caa0-7100b68a54a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Leave Me This Way - Thelma Houston.mp4", + "title": "Don t Leave Me This Way" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Chicago", + "playlist_title": "If You Leave Me Now", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38ba257-4e3b-4b04-10a2-3d7ef66fa8c3", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - If You Leave Me Now.mp4", + "title": "If You Leave Me Now" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Al Stewart", + "playlist_title": "Year Of The Cat", + "found_song": { + "artist": "Al Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3daf9d83-5c4e-38a1-cab4-cd15886af06f", + "path": "z://MP4\\KaraokeOnVEVO\\Al Stewart - Year Of The Cat.mp4", + "title": "Year Of The Cat" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Kansas", + "playlist_title": "Carry On Wayward Son", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "guid": "5c7b4eaf-027d-7c17-6166-3a5175b010d5", + "path": "z://MP4\\TheKARAOKEChannel\\Carry On Wayward Son in the Style of Kansas karaoke with lyrics (no lead vocal).mp4", + "title": "Carry On Wayward Son" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Marilyn McCoo & Billy Davis, Jr.", + "playlist_title": "You Don't Have To Be A Star (To Be In My Show)", + "found_song": { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "987bafbd-7d75-9d8f-cb86-1da3e6b7b98e", + "path": "z://MP4\\KaraokeOnVEVO\\Marilyn McCoo & Billy Davis, Jr. - You Dont Have To Be A Star (To Be In My Show.mp4", + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Alice Cooper", + "playlist_title": "I Never Cry", + "found_song": { + "artist": "Cooper, Alice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd8ec42e-2597-9bcc-cb67-ecb1205709cb", + "path": "z://CDG\\SBI\\SBI-04\\SB18319 - Alice Cooper - I Never Cry.mp3", + "title": "I Never Cry" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "England Dan & John Ford Coley", + "playlist_title": "Nights Are Forever Without You", + "found_song": { + "artist": "England Dan & John Ford Coley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99851d44-3ea1-bdbb-a037-28df72e3f891", + "path": "z://MP4\\ZoomKaraokeOfficial\\England Dan & John Ford Coley - Nights Are Forever Without You.mp4", + "title": "Nights Are Forever Without You" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Manfred Mann's Earth Band", + "playlist_title": "Blinded By The Light", + "found_song": { + "artist": "Manfred Mann's Earth Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f1ce37-ca34-0cdd-8722-2109cfb50a43", + "path": "z://MP4\\KaraokeOnVEVO\\Manfred Manns Earth Band - Blinded By The Light.mp4", + "title": "Blinded By The Light" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "L.T.D.", + "playlist_title": "Love Ballad", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "65114b2d-3cf1-86b7-b374-8591bcd6cb41", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Ballad - LTD.mp4", + "title": "Love Ballad" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Kiss", + "playlist_title": "Beth/Detroit Rock City", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "b4deaba4-b1d7-e8d7-2f81-24f468535733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Detroit Rock City - Kiss.mp4", + "title": "Detroit Rock City" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Boz Scaggs", + "playlist_title": "What Can I Say", + "found_song": { + "artist": "Boz Craggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973fce5f-d08c-8731-63e7-73f928e186b8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 801\\Boz Craggs - What Can I Say - SFMW 801 -10.mp3", + "title": "What Can I Say" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Rick Dees & His Cast Of Idiots", + "playlist_title": "Disco Duck (Part I)", + "found_song": { + "artist": "Rick Dees & His Cast Of Idiots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdc0ec5a-5ada-8b9e-e89f-48ec1ef11bf0", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Dees & His Cast Of Idiots - Disco Duck (Part I.mp4", + "title": "Disco Duck (Part I)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Steve Miller", + "playlist_title": "Fly Like An Eagle", + "found_song": { + "artist": "Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "7298be75-5106-b014-461b-7db40c868b1e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fly Like An Eagle - Steve Miller Band.mp4", + "title": "Fly Like An Eagle" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "The Wreck Of The Edmund Fitzgerald", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "1f1ce3b4-6e1e-c123-c610-2a21dee33ea5", + "path": "z://MP4\\Let's Sing Karaoke\\Lightfoot, Gordon - Wreck Of The Edmund Fitzgerald, The (Karaoke & Lyrics).mp4", + "title": "Wreck Of The Edmund Fitzgerald, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Elvis Presley", + "playlist_title": "Moody Blue/she Thinks I Still Care", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6da7ece0-d9dc-48e7-933b-bef968d280d9", + "path": "z://CDG\\Various\\Elvis Presley - She Thinks I Still Care.mp3", + "title": "She Thinks I Still Care" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Little River Band", + "playlist_title": "It's A Long Way There", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "2554b6f8-5c5b-5fa2-fc5b-40cc614b6013", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s A Long Way There - Little River Band.mp4", + "title": "It s A Long Way There" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "The Spinners", + "title": "The Rubberband Man", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Brick", + "title": "Dazz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Burton Cummings", + "title": "Stand Tall", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Sylvers", + "title": "Hot Line", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Captain & Tennille", + "title": "Muskrat Love", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "title": "Nadia's Theme (The Young And The Restless)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Jacksons", + "title": "Enjoy Yourself", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Firefall", + "title": "You Are The Woman", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Bar-Kays", + "title": "Shake Your Rump To The Funk", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Earth, Wind & Fire", + "title": "Saturday Nite", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "George Harrison", + "title": "This Song", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Dr. Buzzard's Original Savannah Band", + "title": "Whispering/Cherchez La Femme/Se Si Bon", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Styx", + "title": "Mademoiselle", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Donny & Marie Osmond", + "title": "Ain't Nothing Like The Real Thing", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Al Green", + "title": "Keep Me Cryin'", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Daryl Hall John Oates", + "title": "Do What You Want, Be What You Are", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Foghat", + "title": "Drivin' Wheel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Walter Murphy Band", + "title": "Flight '76", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Eric Clapton", + "title": "Hello Old Friend", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Linda Ronstadt", + "title": "Someone To Lay Down Beside Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "KC And The Sunshine Band", + "title": "I Like To Do It", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Johnny Bristol", + "title": "Do It To My Mind", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Barbra Streisand", + "title": "Evergreen (Love Theme From A Star Is Born)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dickey Lee", + "title": "9,999,999 Tears", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bay City Rollers", + "title": "Yesterday's Hero", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gene Cotton", + "title": "You've Got Me Runnin'", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mary Kay Place As Loretta Haggers", + "title": "Baby Boy", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Funky Kings", + "title": "Slow Dancing", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jefferson Starship", + "title": "St. Charles", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Robert Palmer", + "title": "Man Smart, Woman Smarter", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Stephen Bishop", + "title": "Save It For A Rainy Day", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Peter Frampton", + "title": "Do You Feel Like We Do", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Donna Summer", + "title": "Spring Affair/Winter Melody", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Heart", + "title": "Dreamboat Annie", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Starbuck", + "title": "Lucky Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Paul Anka", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Kool & The Gang", + "title": "Open Sesame - Part 1", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Olivia Newton-John", + "title": "Every Face Tells A Story", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "John Denver", + "title": "Baby, You Look Good To Me Tonight", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Cliff Richard", + "title": "I Can't Ask For Anymore Than You", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Robin Trower", + "title": "Caledonia", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Supremes", + "title": "You're My Driving Wheel", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bryan Ferry", + "title": "Heart On My Sleeve", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Arthur Prysock", + "title": "When Love Is New", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rod Hart", + "title": "C.b. Savage", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brass Construction", + "title": "Ha Cha Cha (funktion)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "David Laflamme", + "title": "White Bird", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "L.A. Jets", + "title": "Prisoner (Captured By Your Eyes)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bumble Bee Unlimited", + "title": "Love Bug", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Walter Jackson", + "title": "Feelings", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "JJ Cale", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Elvin Bishop Featuring Mickey Thomas", + "title": "Spend Some Time", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Starz", + "title": "(She's Just A) Fallen Angel", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Seals & Crofts", + "title": "Baby, I'll Give It To You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Ritchie Family", + "title": "The Best Disco In Town", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 12, + "missing_count": 55, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "1975 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bay City Rollers", + "playlist_title": "Saturday Night", + "found_song": { + "artist": "Bay City Rollers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859fe149-5fb9-1127-6c50-b2f5e17dfe02", + "path": "z://MP4\\KaraokeOnVEVO\\Bay City Rollers - Saturday Night.mp4", + "title": "Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Diana Ross", + "playlist_title": "Theme From Mahogany (Do You Know Where You're Going To)", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17485a0c-1a98-467a-dd7c-108ffff0d546", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - Theme From Mahogany (Do You Know Where Youre Going To.mp4", + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Write The Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6c9b535-ae4d-44a1-6349-a8b79d8c9fa3", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - I Write The Songs.mp4", + "title": "I Write The Songs" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "C.W. McCall", + "playlist_title": "Convoy", + "found_song": { + "artist": "C.W. McCall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71406095-e2d6-25f3-f06a-c2fa25f8d3cf", + "path": "z://MP4\\KaraokeOnVEVO\\C.W. McCall - Convoy.mp4", + "title": "Convoy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sweet", + "playlist_title": "Fox On The Run", + "found_song": { + "artist": "Sweet", + "disabled": false, + "favorite": false, + "guid": "7a8beb49-589b-1ffe-4113-f70d2b7b4901", + "path": "z://MP4\\KaraFun Karaoke\\Fox On The Run - Sweet Karaoke Version KaraFun.mp4", + "title": "Fox On The Run" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jigsaw", + "playlist_title": "Sky High", + "found_song": { + "artist": "Jigsaw", + "disabled": false, + "favorite": false, + "guid": "2ff39e4b-87fd-9e3d-1a3e-c61c788d41f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sky High - Jigsaw.mp4", + "title": "Sky High" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bee Gees", + "playlist_title": "Nights On Broadway", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "2a5e5e3b-32c8-458e-2008-639df8e66713", + "path": "z://CDG\\Various\\Bee Gees - Nights On Broadway.mp3", + "title": "Nights On Broadway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "Love To Love You Baby", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afdfc83-11e3-3637-ebce-bc7c594e095d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - Love To Love You Baby.mp4", + "title": "Love To Love You Baby" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Glen Campbell", + "playlist_title": "Country Boy (You Got Your Feet In L.A.)", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d569208-3c2b-d7fc-339d-6b709a933d82", + "path": "z://MP4\\KaraokeOnVEVO\\Glen Campbell - Country Boy (You Got Your Feet In LA.mp4", + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hot Chocolate", + "playlist_title": "You Sexy Thing", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "guid": "b9e6c3df-c2ae-8414-0c61-9c752cb553aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Sexy Thing - Hot Chocolate.mp4", + "title": "You Sexy Thing" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "John Denver", + "playlist_title": "Fly Away", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "6e31be31-854c-1793-7f1f-1725e458f8f2", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Fly Away (Karaoke).mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Evil Woman", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "6d8befeb-1efb-bc94-5c60-44552b538a9c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Evil Woman - Electric Light Orchestra.mp4", + "title": "Evil Woman" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Over My Head", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "5de11425-847d-4e16-9e46-8c8875e88586", + "path": "z://MP4\\KtvEntertainment\\Fleetwood Mac - Over My Head Karaoke Lyrics.mp4", + "title": "Over My Head" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Elton John", + "playlist_title": "Island Girl", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b452a1fc-6d92-efca-eab5-45534991d5c3", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Island Girl.mp4", + "title": "Island Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Breaking Up Is Hard To Do", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "7ab837d0-a19b-a75a-208c-5baca3a0a127", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breaking Up Is Hard To Do - Neil Sedaka.mp4", + "title": "Breaking Up Is Hard To Do" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Al Martino", + "playlist_title": "Volare", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34aa0800-d293-0762-a477-fe63155e1e2c", + "path": "z://MP4\\VocalStarKaraoke\\Al Martino - Volare.mp4", + "title": "Volare" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Nazareth", + "playlist_title": "Love Hurts", + "found_song": { + "artist": "Nazareth", + "disabled": false, + "favorite": false, + "guid": "7253dbac-bab1-cad0-d19f-1218668aca65", + "path": "z://MP4\\Stingray Karaoke\\Love Hurts Nazareth Karaoke with Lyrics.mp4", + "title": "Love Hurts" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Who", + "playlist_title": "Squeeze Box", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fdc99a7-3985-5550-05c1-f1d97cadba9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Who - Squeeze Box.mp4", + "title": "Squeeze Box" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "War", + "playlist_title": "Low Rider", + "found_song": { + "artist": "War", + "disabled": false, + "favorite": false, + "guid": "09f68070-76ff-bc91-aeed-3964199c4f29", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Low Rider - War.mp4", + "title": "Low Rider" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Golden Years", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45b399ba-4279-d912-0d1b-9d5c68f0d661", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Bowie - Golden Years.mp4", + "title": "Golden Years" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Morris Albert", + "playlist_title": "Feelings", + "found_song": { + "artist": "Morris Albert", + "disabled": false, + "favorite": false, + "guid": "7b6c4c3d-4f30-9e74-c647-f0829ace4634", + "path": "z://MP4\\Let's Sing Karaoke\\Albert, Morris - Feelings (Karaoke & Lyrics).mp4", + "title": "Feelings" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Foghat", + "playlist_title": "Slow Ride", + "found_song": { + "artist": "Foghat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b88e806c-3ba1-2a3a-222a-94094af51f8d", + "path": "z://MP4\\KaraokeOnVEVO\\Foghat - Slow Ride.mp4", + "title": "Slow Ride" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Eagles", + "playlist_title": "Take It To The Limit", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "0b3dc0be-318b-da03-f8c0-50ce3a6778f7", + "path": "z://CDG\\Various\\Eagles - Take It To The Limit.mp3", + "title": "Take It To The Limit" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Natalie Cole", + "playlist_title": "Inseparable", + "found_song": { + "artist": "Natalie Cole", + "disabled": false, + "favorite": false, + "guid": "fff53bc6-d461-11e2-d19f-877262be8281", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Inseparable - Natalie Cole.mp4", + "title": "Inseparable" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eric Carmen", + "playlist_title": "All By Myself", + "found_song": { + "artist": "Eric Carmen", + "disabled": false, + "favorite": false, + "guid": "3d9f9b37-4c3f-3780-81ba-7208d0865370", + "path": "z://MP4\\Let's Sing Karaoke\\Carmen, Eric - All By Myself (Karaoke & Lyrics).mp4", + "title": "All By Myself" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Barry White", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e5e63c5b-4e47-678c-9199-0f076dec0a01", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let The Music Play - Barry White.mp4", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Willie Nelson", + "playlist_title": "Blue Eyes Crying In The Rain", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "38fa7e65-4b0f-0b1d-0378-7bec98ea4a55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Eyes Crying In The Rain - Willie Nelson.mp4", + "title": "Blue Eyes Crying In The Rain" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Commodores", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "2f3534c6-e650-0af2-c84b-db2d56f521cb", + "path": "z://CDG\\Various\\Commodores - Sweet Love.mp3", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "The 4 Seasons", + "playlist_title": "December, 1963 (Oh, What a Night)", + "found_song": { + "artist": "The 4 Seasons", + "disabled": false, + "favorite": false, + "guid": "ed6afb7e-23ab-cd12-0a42-692dedeb0164", + "path": "z://MP4\\Stingray Karaoke\\December, 1963 (Oh, What A Night) The 4 Seasons Karaoke with Lyrics.mp4", + "title": "December, 1963 (Oh, What A Night)" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Roxy Music", + "playlist_title": "Love Is The Drug", + "found_song": { + "artist": "Roxy Music", + "disabled": false, + "favorite": false, + "guid": "d2018bd2-4313-d17f-bbfa-92a34992ff6a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Is The Drug - Roxy Music.mp4", + "title": "Love Is The Drug" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Greg Lake", + "playlist_title": "I Believe In Father Christmas", + "found_song": { + "artist": "Greg Lake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d5598f9-d4fb-8fdf-db23-6ae211019da7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Greg Lake - I Believe In Father Christmas.mp4", + "title": "I Believe In Father Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "That's The Way (I Like It)", + "found_song": { + "artist": "KC And The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "e9754772-36e1-2c31-35c8-fc6b7a3373ba", + "path": "z://MP4\\Stingray Karaoke\\That's The Way (I Like It) in the style of KC And The Sunshine Band karaoke.mp4", + "title": "That's The Way (I Like It)" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kiss", + "playlist_title": "Rock And Roll All Nite (live)", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7cdca01a-00b3-6194-f66c-0c45d032dee8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock And Roll All Nite - Kiss.mp4", + "title": "Rock And Roll All Nite" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "The Isley Brothers", + "playlist_title": "For The Love Of You (Part 1&2)", + "found_song": { + "artist": "The Isley Brothers", + "disabled": false, + "favorite": false, + "guid": "564c7416-e7d4-ab64-0081-f6293f95c91a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Love Of You - The Isley Brothers.mp4", + "title": "For The Love Of You" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "The Marshall Tucker Band", + "playlist_title": "Fire On The Mountain", + "found_song": { + "artist": "The Marshall Tucker Band", + "disabled": false, + "favorite": false, + "guid": "389bad52-c78a-bb2e-01e8-f7ba5f31823a", + "path": "z://MP4\\KaraokeOnVEVO\\The Marshall Tucker Band - Fire On The Mountain (Karaoke).mp4", + "title": "Fire On The Mountain" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Paul Simon", + "playlist_title": "50 Ways To Leave Your Lover", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "48295303-eecd-0fe9-cfaf-c0b39ca7723d", + "path": "z://CDG\\Various\\Paul Simon - Fifty Ways To Leave Your Lover.mp3", + "title": "Fifty Ways To Leave Your Lover" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Who Loves You", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "50d96413-e787-93f3-8bfe-470441c55096", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Loves You - Frankie Valli & The Four Seasons.mp4", + "title": "Who Loves You" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Tracks Of My Tears", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "41bbd1ba-aded-7f38-258d-b43c05e3d30f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Tracks Of My Tears - Linda Ronstadt.mp4", + "title": "The Tracks Of My Tears" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Staple Singers", + "title": "Let's Do It Again", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ohio Players", + "title": "Love Rollercoaster", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Silver Convention", + "title": "Fly, Robin, Fly", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The O'Jays", + "title": "I Love Music (Part 1)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Frankie Valli", + "title": "Our Day Will Come", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Paul Anka", + "title": "Times Of Your Life", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "David Ruffin", + "title": "Walk Away From Love", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "David Geddes", + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Earth, Wind & Fire", + "title": "Sing A Song", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gladys Knight And The Pips", + "title": "Part Time Love", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Miracles", + "title": "Love Machine (Part 1)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Al Green", + "title": "Full Of Fire", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Simon & Garfunkel", + "title": "My Little Town", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Winners And Losers", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Captain & Tennille", + "title": "The Way I Want To Touch You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "AWB", + "title": "School Boy Crush", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "title": "Baby Face", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Harold Melvin And The Blue Notes", + "title": "Wake Up Everybody (Part 1)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Helen Reddy", + "title": "Somewhere In The Night", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Road Apples", + "title": "Let's Live Together", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bob Dylan", + "title": "Hurricane (Part I)", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Olivia Newton-John", + "title": "Let It Shine/He Ain't Heavy...He's My Brother", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Leon Haywood", + "title": "I Want'a Do Something Freaky To You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "America", + "title": "Woman Tonight", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "George Baker Selection", + "title": "Paloma Blanca", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Purple Reign", + "title": "This Old Man", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Freddy Fender", + "title": "Secret Love", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Bachman-Turner Overdrive", + "title": "Down To The Line", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jefferson Starship", + "title": "Play On Love", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Tavares", + "title": "Free Ride", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kenny Starr", + "title": "The Blind Man In The Bleachers", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Rhythm Heritage", + "title": "Theme From S.W.A.T.", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Pointer Sisters", + "title": "Going Down Slowly", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "John Denver", + "title": "Christmas For Cowboys", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Donny & Marie Osmond", + "title": "Deep Purple", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Billy Crash Craddock", + "title": "Easy As Pie", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Eddie Kendricks", + "title": "Happy", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Batdorf & Rodney", + "title": "Somewhere In The Night", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bee Gees", + "title": "Fanny (be Tender With My Love)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hagood Hardy", + "title": "The Homecoming", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Gloria Gaynor", + "title": "How High The Moon", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Soul Train Gang", + "title": "Soul Train 75", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Spinners", + "title": "Love Or Leave", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "John Fogerty", + "title": "Almost Saturday Night", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Prelude", + "title": "For A Dancer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "John Paul Young", + "title": "Yesterday's Hero", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Art Garfunkel", + "title": "Break Away", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "10cc", + "title": "Art For Art's Sake", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Ritchie Family", + "title": "I Want To Dance With You (Dance With Me)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Doobie Brothers", + "title": "I Cheat The Hangman", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Cledus Maggard And The Citizen's Band", + "title": "The White Knight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Conway Twitty with Joni Lee", + "title": "Don't Cry Joni", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "The Eleventh Hour", + "title": "Hollywood Hot", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Mfsb", + "title": "The Zip", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Stylistics", + "title": "Funky Weekend", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Crown Heights Affair", + "title": "Every Beat Of My Heart", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amazing Rhythm Aces", + "title": "Amazing Grace (used To Be Her Favorite Song)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bill Withers", + "title": "Make Love To Your Mind", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Justin Hayward & John Lodge", + "title": "Blue Guitar", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Wings", + "title": "Venus And Mars Rock Show", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Pete Wingfield", + "title": "Eighteen With A Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Country Joe McDonald", + "title": "Breakfast For Two", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 7, + "missing_count": 62, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1974 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Helen Reddy", + "playlist_title": "Angie Baby", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "72e0535d-217b-7009-e5d8-35da016d827d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angie Baby - Helen Reddy.mp4", + "title": "Angie Baby" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Elton John", + "playlist_title": "Lucy In The Sky With Diamonds", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0e9f233-408f-e998-782f-2c15ab7a88c8", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Lucy In The Sky With Diamonds.mp4", + "title": "Lucy In The Sky With Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Barry White", + "playlist_title": "You're The First, The Last, My Everything", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "3d2fb8c7-1604-d971-e34e-6ff474ea4bed", + "path": "z://MP4\\KaraFun Karaoke\\Barry White - You're The First, The Last, My Everything.mp4", + "title": "You're The First, The Last, My Everything" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carl Douglas", + "playlist_title": "Kung Fu Fighting", + "found_song": { + "artist": "Carl Douglas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65677f28-2d26-e515-cf4c-fcab56986b97", + "path": "z://MP4\\Stingray Karaoke\\Carl Douglas - Kung Fu Fighting.mp4", + "title": "Kung Fu Fighting" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Harry Chapin", + "playlist_title": "Cat's In The Cradle", + "found_song": { + "artist": "Harry Chapin", + "disabled": false, + "favorite": false, + "guid": "7a046965-f76c-54fe-61da-43e4cbbd3d54", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cat s In The Cradle - Harry Chapin.mp4", + "title": "Cat s In The Cradle" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Three Degrees", + "playlist_title": "When Will I See You Again", + "found_song": { + "artist": "The Three Degrees", + "disabled": false, + "favorite": false, + "guid": "743ec6e8-8dfe-8f2a-bb9e-d005b3b5b863", + "path": "z://MP4\\Let's Sing Karaoke\\Three Degrees, The - When Will I See You Again (Karaoke & Lyrics).mp4", + "title": "When Will I See You Again" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Laughter In The Rain", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a671ea9-6c96-bd29-c15a-181e103f4f4f", + "path": "z://MP4\\sing2karaoke\\Neil Sedaka - Laughter In The Rain.mp4", + "title": "Laughter In The Rain" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carpenters", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "b92f785e-5a19-a83c-e563-77e63b997b6c", + "path": "z://CDG\\Various\\Carpenters - Please Mr. Postman.mp3", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Barry Manilow", + "playlist_title": "Mandy", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "4c119a40-2365-7ded-d1b8-d265baa8ce7b", + "path": "z://MP4\\Sing King Karaoke\\Barry Manilow - Mandy (Karaoke Version).mp4", + "title": "Mandy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Al Green", + "playlist_title": "Sha-La-La (Make Me Happy)", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80c58ea6-068e-f4b6-3143-014d276e14e4", + "path": "z://MP4\\KaraokeOnVEVO\\Al Green - Sha-La-La (Make Me Happy.mp4", + "title": "Sha-La-La (Make Me Happy)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "Never Can Say Goodbye", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "5cc12159-cfba-ad02-06bd-16a04181174e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Can Say Goodbye - Gloria Gaynor.mp4", + "title": "Never Can Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Billy Swan", + "playlist_title": "I Can Help", + "found_song": { + "artist": "Billy Swan", + "disabled": false, + "favorite": false, + "guid": "17fa78ec-4ec4-87b1-d0f9-c71d0adb1dd1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Can Help - Billy Swan.mp4", + "title": "I Can Help" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ohio Players", + "playlist_title": "Fire", + "found_song": { + "artist": "Ohio Players, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61574209-f3b6-8a7c-cec1-d003640190c7", + "path": "z://CDG\\SBI\\SBI-01\\SB05516 - The Ohio Players - Fire.mp3", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carol Douglas", + "playlist_title": "Doctor's Orders", + "found_song": { + "artist": "Carol Douglas", + "disabled": false, + "favorite": false, + "guid": "ed26f19c-9a39-42de-c394-d59f68904aab", + "path": "z://MP4\\KaraokeOnVEVO\\Carol Douglas - Doctor's Orders (Karaoke).mp4", + "title": "Doctor's Orders" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Elvis Presley", + "playlist_title": "Promised Land", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b052ac0c-91cb-6c4d-6098-25367cd82819", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Promised Land.mp4", + "title": "Promised Land" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Ain't Too Proud To Beg", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "70d8888e-5dda-e641-2da6-7c05026623e8", + "path": "z://MP4\\Stingray Karaoke\\Ain't Too Proud To Beg in the style of The Rolling Stones - karaoke video with lyrics.mp4", + "title": "Ain't Too Proud To Beg" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Mac Davis", + "playlist_title": "Rock N' Roll (I Gave You The Best Years Of My Life)", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74e0e193-ec6e-2fef-19be-93a9f85a2322", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Rock N Roll (I Gave You The Best Years Of My Life.mp4", + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Shirley Brown", + "playlist_title": "Woman To Woman", + "found_song": { + "artist": "Shirley Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f86102b-4f27-f5c7-4efe-8a48d50219a0", + "path": "z://MP4\\KaraokeOnVEVO\\Shirley Brown - Woman To Woman.mp4", + "title": "Woman To Woman" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Crash Craddock", + "playlist_title": "Ruby, Baby", + "found_song": { + "artist": "Billy Crash Craddock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "013aa183-64fa-efe8-89e7-90700565fbfe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Crash Craddock - Ruby, Baby.mp4", + "title": "Ruby, Baby" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eagles", + "playlist_title": "Best Of My Love", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92c02359-0c20-10f7-fee4-ca9666eeed00", + "path": "z://CDG\\Various\\Eagles - Best Of My Love.mp3", + "title": "Best Of My Love" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bachman-Turner Overdrive", + "playlist_title": "You Ain't Seen Nothing Yet/Free Wheelin'", + "found_song": { + "artist": "Bachman-Turner Overdrive", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6b5cb9f-cc3c-0b6b-86c1-7c33a6f5c985", + "path": "z://MP4\\KaraokeOnVEVO\\Bachman-Turner Overdrive - You Ain't Seen Nothing YetFree Wheelin'.mp4", + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Neil Diamond", + "playlist_title": "Longfellow Serenade", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "43ec422f-b2f2-2f18-6343-2fb0d0cbcddc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longfellow Serenade - Neil Diamond.mp4", + "title": "Longfellow Serenade" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Eric Clapton", + "playlist_title": "Willie And The Hand Jive", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64d56d87-999d-ba21-7b5a-952b3b1a02ac", + "path": "z://CDG\\Various\\Eric Clapton - Willie And The Hand Jive.mp3", + "title": "Willie And The Hand Jive" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Frankie Valli", + "playlist_title": "My Eyes Adored You", + "found_song": { + "artist": "Frankie Valli", + "disabled": false, + "favorite": false, + "guid": "5e059d27-e5cd-c0b9-e0c3-f7f6fdb63bb7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Eyes Adored You - Frankie Valli.mp4", + "title": "My Eyes Adored You" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "David Bowie", + "playlist_title": "Changes", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "583cd470-7087-e842-c6ed-618c77421ef3", + "path": "z://MP4\\TheKARAOKEChannel\\Changes in the style of David Bowie Karaoke with Lyrics.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Black Water", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "guid": "5e5b7e0a-19c7-e57f-1f29-9292c487c48b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Water - The Doobie Brothers.mp4", + "title": "Black Water" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carl Carlton", + "playlist_title": "Everlasting Love", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e81e43bb-fb16-ab18-68f6-c229939b4411", + "path": "z://MP4\\KaraokeOnVEVO\\Carl Carlton - Everlasting Love.mp4", + "title": "Everlasting Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "John Denver", + "playlist_title": "Back Home Again", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "1f1c7bec-e3eb-79c9-4838-7d52e4f41d97", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Back Home Again (Karaoke).mp4", + "title": "Back Home Again" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Styx", + "playlist_title": "Lady", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "719ee096-2f29-6b66-d55f-a6183c6e77b0", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Lady (Karaoke & Lyrics).mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "John Denver", + "playlist_title": "Sweet Surrender", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8002f0-5b1a-119a-0ee9-fa7b2bbf473a", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Sweet Surrender.mp4", + "title": "Sweet Surrender" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Joni Mitchell", + "playlist_title": "Big Yellow Taxi", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "5c7a0add-fbaf-487e-5b21-47a5269e7343", + "path": "z://MP4\\Stingray Karaoke\\Big Yellow Taxi Joni Mitchell Karaoke with Lyrics.mp4", + "title": "Big Yellow Taxi" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Peter Shelley", + "playlist_title": "Gee Baby", + "found_song": { + "artist": "Peter Shelley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05db10e6-52f3-7d03-f5d8-d6433874d75d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter Shelley - Gee Baby.mp4", + "title": "Gee Baby" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Tymes", + "playlist_title": "Ms. Grace", + "found_song": { + "artist": "The Tymes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14512ba-e380-121c-059d-5bc42baa019c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Tymes - Ms Grace.mp4", + "title": "Ms Grace" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 29, + "playlist_artist": "Grand Funk", + "playlist_title": "Some Kind Of Wonderful", + "found_song": { + "artist": "Grand Funk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3757dd9-8a32-ec55-b308-9a572b04a30c", + "path": "z://MP4\\VocalStarKaraoke\\Grand Funk - Some Kind Of Wonderful.mp4", + "title": "Some Kind Of Wonderful" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fairytale", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Billy Joel", + "playlist_title": "The Entertainer", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "93c5c387-b76a-6105-19e4-cf7db9d269e3", + "path": "z://CDG\\Various\\Billy Joel - Entertainer.mp3", + "title": "Entertainer" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "You're No Good", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb35189e-9c5f-7434-f2fd-fcb9ce755902", + "path": "z://MP4\\VocalStarKaraoke\\Linda Ronstadt - Youre No Good.mp4", + "title": "Youre No Good" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Kiki Dee Band", + "playlist_title": "I've Got The Music In Me", + "found_song": { + "artist": "Kiki Dee", + "disabled": false, + "favorite": false, + "guid": "50d48ad5-b8ed-f842-7d4b-d76f73c7d845", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF162\\Kiki Dee - Ive Got The Music In Me - SF162 - 03.mp3", + "title": "Ive Got The Music In Me" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Paul McCartney & Wings", + "title": "Junior's Farm/Sally G", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ringo Starr", + "title": "Only You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Stevie Wonder", + "title": "Boogie On Reggae Woman", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The J. Geils Band", + "title": "Must Of Got Lost", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Paul Anka with Odia Coates", + "title": "One Man Woman/One Woman Man", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jethro Tull", + "title": "Bungle In The Jungle", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Rufus Featuring Chaka Khan", + "title": "You Got The Love", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Donny & Marie Osmond", + "title": "Morning Side Of The Mountain", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "George Harrison", + "title": "Dark Horse", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "B.T. Express", + "title": "Do It ('Til You're Satisfied)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gladys Knight And The Pips", + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "AWB", + "title": "Pick Up The Pieces", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Paul Davis", + "title": "Ride 'em Cowboy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Guess Who", + "title": "Dancin' Fool", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Chicago", + "title": "Wishing You Were Here", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Disco Tex & The Sex-O-Lettes", + "title": "Get Dancin'", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Barbara Mason", + "title": "From His Woman To You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Love Unlimited", + "title": "I Belong To You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "James Brown", + "title": "Funky President (People It's Bad)/Coldblooded", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Aretha Franklin", + "title": "Without Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Righteous Brothers", + "title": "Dream On", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Bobby Vinton", + "title": "My Melody Of Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Tavares", + "title": "She's Gone", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Joneses", + "title": "Sugar Pie Guy Pt. 1", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Cat Stevens", + "title": "Ready", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Billy Preston", + "title": "Struttin'", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "John Lennon", + "title": "#9 Dream", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jackson 5", + "title": "Whatever You Got, I Want", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Stylistics", + "title": "Heavy Fallin' Out", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Tony Orlando & Dawn", + "title": "Look In My Eyes Pretty Woman", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "John Lennon With The Plastic Ono Nuclear Band", + "title": "Whatever Gets You Thru The Night", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The O'Jays", + "title": "Sunshine Part II", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bo Donaldson And The Heywoods", + "title": "The Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "B.B. King", + "title": "Philadelphia", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jim Stafford", + "title": "Your Bulldog Drinks Champagne", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Carl Graves", + "title": "Baby, Hang Up The Phone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Eddie Kendricks", + "title": "One Tear", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Michael Holm", + "title": "When A Child Is Born", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "The Temptations", + "title": "Happy People", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Smokey Robinson", + "title": "I Am I Am", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Electric Light Orchestra", + "title": "Can't Get It Out Of My Head", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "America", + "title": "Lonely People", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Latimore", + "title": "Let's Straighten It Out", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Anne Murray", + "title": "Day Tripper", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Roy Rogers", + "title": "Hoppy, Gene And Me", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Al Martino", + "title": "To The Door Of The Sun (Alle Porte Del Sole)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Miracles", + "title": "Don't Cha Love It", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Sugarloaf/Jerry Corbetta", + "title": "Don't Call Us, We'll Call You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Candi Staton", + "title": "As Long As He Takes Care Of Home", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Splinter", + "title": "Costafine Town", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Maria Muldaur", + "title": "I'm A Woman", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Commodores", + "title": "I Feel Sanctified", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Perry Como", + "title": "Christmas Dream", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Bill Withers", + "title": "Heartbreak Road", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Margie Joseph", + "title": "Words (are Impossible)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Hues Corporation", + "title": "Rockin' Soul", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jim Weatherly", + "title": "The Need To Be", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Johnny Bristol", + "title": "You And I", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Bland", + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Prelude", + "title": "After The Goldrush", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chilliwack", + "title": "Crazy Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 34, + "fuzzy_match_count": 5, + "missing_count": 61, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1973 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Jim Croce", + "playlist_title": "Time In A Bottle", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5662d5e-9b8e-c33f-456a-8d7b4444869e", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Time In A Bottle.mp4", + "title": "Time In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Charlie Rich", + "playlist_title": "The Most Beautiful Girl", + "found_song": { + "artist": "Charlie Rich", + "disabled": false, + "favorite": false, + "guid": "25249141-6b69-b746-113a-d90a48b53b59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Most Beautiful Girl - Charlie Rich.mp4", + "title": "The Most Beautiful Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Elton John", + "playlist_title": "GOODBYE YELLOW BRICK ROAD", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "3308988f-229f-b8c4-b59c-d8e57fc748ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goodbye Yellow Brick Road - Elton John.mp4", + "title": "Goodbye Yellow Brick Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Todd Rundgren", + "playlist_title": "Hello It's Me", + "found_song": { + "artist": "Todd Rundgren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b20749a1-b2c3-0e2a-6f85-ecca09a6590d", + "path": "z://MP4\\KaraokeOnVEVO\\Todd Rundgren - Hello Its Me.mp4", + "title": "Hello It's Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Carpenters", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e76caaae-7dd5-f551-86f3-a8d39627f36a", + "path": "z://MP4\\KaraokeOnVEVO\\Carpenters - Top Of The World.mp4", + "title": "Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Al Wilson", + "playlist_title": "Show And Tell", + "found_song": { + "artist": "Al Wilson", + "disabled": false, + "favorite": false, + "guid": "5f850116-7a7a-84d0-d3df-6772ca525079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show And Tell - Al Wilson.mp4", + "title": "Show And Tell" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brownsville Station", + "playlist_title": "Smokin' In The Boy's Room", + "found_song": { + "artist": "Brownsville Station", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34927557-1909-bfbd-6c50-34556b0e031a", + "path": "z://MP4\\KaraokeOnVEVO\\Brownsville Station - Smokin In The Boys Room.mp4", + "title": "Smokin' In The Boy's Room" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Living For The City", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "da3c707b-c3a5-b01f-1776-0c86268893f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Living For The City - Stevie Wonder.mp4", + "title": "Living For The City" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "If You're Ready (Come Go With Me)", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eab4280e-4649-688c-77fc-328d521400de", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - If Youre Ready (Come Go With Me.mp4", + "title": "If You're Ready (Come Go With Me)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Chicago", + "playlist_title": "Just You 'n' Me", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6c606e-e002-f992-cbe3-95c604ac60bd", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Just You n Me.mp4", + "title": "Just You 'n' Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Let Me Be There", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "c1b8fc75-fac0-b76c-c66f-fd2d80647079", + "path": "z://MP4\\Sing King Karaoke\\Olivia Newton-John - Let Me Be There (Karaoke Version).mp4", + "title": "Let Me Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Lennon", + "playlist_title": "MIND GAMES", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "2aa09c65-8d9d-d987-5981-14fae2a30397", + "path": "z://CDG\\Various\\John Lennon - Mind Games.mp3", + "title": "Mind Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Until You Come Back To Me (That's What I'm Gonna Do)", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1d223ad-1e0a-43eb-37ed-33bd6d551979", + "path": "z://MP4\\KaraokeOnVEVO\\Aretha Franklin - Until You Come Back To Me (Thats What Im Gonna Do.mp4", + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Led Zeppelin", + "playlist_title": "D'yer Mak'er", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0ea182f2-52a9-6b1d-0b22-6311b5a778e2", + "path": "z://CDG\\Various\\Led Zeppelin - D'yer Mak'er.mp3", + "title": "D'yer Mak'er" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "The Whole Town's Laughing At Me", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d483b1c-b706-04a6-a792-d6f3c63df9c4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Teddy Pendergrass - The Whole Towns Laughing At Me.mp4", + "title": "The Whole Town's Laughing At Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ringo Starr", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "guid": "4f665551-902c-0dfc-18cc-8d627917ecec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF035\\Ringo Starr - You're Sixteen - SF035 - 13.mp3", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ringo Starr", + "playlist_title": "Photograph", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87eb02b4-5c48-c59a-68ed-a9039de79b12", + "path": "z://MP4\\KaraokeOnVEVO\\Ringo Starr - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Come Get To This", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "da6e9dae-7c81-27c5-536f-bda7aa7f7bad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Get To This - Marvin Gaye.mp4", + "title": "Come Get To This" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jim Croce", + "playlist_title": "I Got A Name", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "guid": "faabc721-8e69-1f67-f3af-51267a0e7a98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Got A Name - Jim Croce.mp4", + "title": "I Got A Name" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jim Stafford", + "playlist_title": "Spiders & Snakes", + "found_song": { + "artist": "Jim Stafford", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c49003db-4a0f-2669-26c3-f4c604cce60b", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Stafford - Spiders & Snakes.mp4", + "title": "Spiders & Snakes" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eddie Kendricks", + "playlist_title": "Keep On Truckin' (Part 1)", + "found_song": { + "artist": "Eddie Kendricks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "762708d7-270c-95a1-4245-d2fdeacda57c", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Kendricks - Keep On Truckin' (Part 1).mp4", + "title": "Keep On Truckin' (Part 1)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ann Peebles", + "playlist_title": "I Can't Stand The Rain", + "found_song": { + "artist": "Ann Peebles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "469c591a-6ee5-3322-f1f7-cdcef8cbb153", + "path": "z://MP4\\KaraokeOnVEVO\\Ann Peebles - I Cant Stand The Rain.mp4", + "title": "I Can't Stand The Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "El Chicano", + "playlist_title": "Tell Her She's Lovely", + "found_song": { + "artist": "El Chicano", + "disabled": false, + "favorite": false, + "guid": "64a71f0c-a2b0-2a77-73d4-a1c0577e6db4", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - El Chicano - Tell Her She's Lovely (Karaoke).mp4", + "title": "Tell Her She's Lovely" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marie Osmond", + "playlist_title": "Paper Roses", + "found_song": { + "artist": "Marie Osmond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3df2106-3163-1edf-e724-fefcdea0cb0f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marie Osmond - Paper Roses.mp4", + "title": "Paper Roses" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Merle Haggard", + "playlist_title": "If We Make It Through December", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "747626a6-ffc4-86c7-0e22-be7ef618397e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If We Make It Through December - Merle Haggard.mp4", + "title": "If We Make It Through December" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "David Essex", + "playlist_title": "Rock On", + "found_song": { + "artist": "David Essex", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb5971a7-4c0b-f943-4c4e-5d2f9f85625f", + "path": "z://MP4\\KaraokeOnVEVO\\David Essex - Rock On.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Tom T. Hall", + "playlist_title": "I Love", + "found_song": { + "artist": "Tom T. Hall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0fade696-4ffe-a54e-c3d5-3998f479c63a", + "path": "z://MP4\\KaraokeOnVEVO\\Tom T. Hall - I Love.mp4", + "title": "I Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Love Has No Pride", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "feb22dfd-a1ad-851b-03b0-eda48003da10", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Has No Pride - Linda Ronstadt.mp4", + "title": "Love Has No Pride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Steely Dan", + "playlist_title": "My Old School", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "4137b363-2ba6-dc08-4539-bfef494251a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Old School - Steely Dan.mp4", + "title": "My Old School" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Coven", + "playlist_title": "One Tin Soldier, The Legend of Billy Jack", + "found_song": { + "artist": "Coven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "410fe011-6b01-315e-18fc-66c18f22d46d", + "path": "z://MP4\\KaraokeOnVEVO\\Coven - One Tin Soldier, The Legend of Billy Jack.mp4", + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "The Joker", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cbb89f1-0b1e-0a21-455e-a921fb53329a", + "path": "z://MP4\\VocalStarKaraoke\\The Steve Miller Band - The Joker.mp4", + "title": "The Joker" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Barry White", + "playlist_title": "Never, Never Gonna Give Ya Up", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e0ef4ba3-305e-cb9a-ee61-65538a7e1307", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never, Never Gonna Give You Up - Barry White.mp4", + "title": "Never, Never Gonna Give You Up" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I've Got To Use My Imagination", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "a56f26ea-c812-ecd5-81ce-46daa4e37e2f", + "path": "z://MP4\\Stingray Karaoke\\I've Got To Use My Imagination in the style of Gladys Knight & The Pips karaoke video.mp4", + "title": "I've Got To Use My Imagination" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "The Stylistics", + "playlist_title": "Rockin' Roll Baby", + "found_song": { + "artist": "Stylistics", + "disabled": false, + "favorite": false, + "guid": "f7d0d1c5-3e66-79a4-0869-dc7f087fe90f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF091\\Stylistics - Rockin' Roll Baby - SF091 - 05.mp3", + "title": "Rockin' Roll Baby" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Paul McCartney & Wings", + "playlist_title": "Helen Wheels", + "found_song": { + "artist": "Paul McCartney ft. Wings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b958fe0-368b-5ab5-20c4-4291cf597b6b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul McCartney & Wings - Helen Wheels.mp4", + "title": "Helen Wheels" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way We Were", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "06822cb5-9ea9-e911-e5ed-d3f06cc98423", + "path": "z://MP4\\KaraFun Karaoke\\Barbra Streisand - The Way We Were.mp4", + "title": "The Way We Were" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "Midnight Train To Georgia", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "f7466c3d-b4e6-42a3-fdd5-94bfaac0fccb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Train To Georgia - Gladys Knight & The Pips.mp4", + "title": "Midnight Train To Georgia" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Jungle Boogie", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "a2979ff9-c786-ae17-f642-acf76a1b40bc", + "path": "z://CDG\\Various\\Kool & The Gang - Jungle Boogie.mp3", + "title": "Jungle Boogie" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Showdown", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "d56f128c-c656-2f8b-1452-d19fee39ed39", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 912\\Electric Light Orchestra - Do Ya - SFMW912 - 01.mp3", + "title": "Do Ya" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Helen Reddy", + "title": "Leave Me Alone (ruby Red Dress)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Love Unlimited Orchestra", + "title": "Love's Theme", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "War", + "title": "Me And Baby Brother", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Donny Osmond", + "title": "When I Fall In Love/Are You Lonesome Tonight", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Loggins & Messina", + "title": "My Music", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Billy Preston", + "title": "Space Race", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Al Green", + "title": "Livin' For You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tony Orlando & Dawn", + "title": "Who's In The Strawberry Patch With Sally", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Cheech & Chong", + "title": "Sister Mary Elephant (Shudd-Up!)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Grand Funk", + "title": "Walk Like A Man", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ian Thomas", + "title": "Painted Ladies", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The DeFranco Family featuring Tony DeFranco", + "title": "Heartbeat - It's A Lovebeat", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Three Dog Night", + "title": "Let Me Serenade You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Paul Simon", + "title": "American Tune", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bobby Blue Bland", + "title": "This Time I'm Gone For Good", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Chi-lites", + "title": "I Found Sunshine", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Persuaders", + "title": "Some Guys Have All The Luck", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Kris Kristofferson & Rita Coolidge", + "title": "A Song I'd Like To Sing", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Carole King", + "title": "Coraz??�n", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Earth, Wind & Fire", + "title": "Keep Your Head To The Sky", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.W. Stevenson", + "title": "The River Of Love", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "First Choice", + "title": "Smarty Pants", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Smokey Robinson", + "title": "Baby Come Close", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Intruders", + "title": "I Wanna Know Your Name", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The O'Jays", + "title": "Put Your Hands Together", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Isaac Hayes", + "title": "Joy Pt. I", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Frank Sinatra", + "title": "Let Me Try Again (Laisse Moi Le Temps)", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Joe Simon", + "title": "River", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Temptations", + "title": "Let Your Hair Down", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Black Oak Arkansas", + "title": "Jim Dandy", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Bachman-Turner Overdrive", + "title": "Blue Collar", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Bob Dylan", + "title": "A Fool Such As I", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Anne Murray", + "title": "Love Song", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Edgar Winter Group", + "title": "Hangin' Around", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Gregg Allman", + "title": "Midnight Rider", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Band", + "title": "Ain't Got No Home", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Wednesday", + "title": "Last Kiss", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "B.B. King", + "title": "I Like To Live The Love", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Who", + "title": "Love, Reign O'er Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Jim Croce", + "title": "It Doesn't Have To Be That Way", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown", + "title": "Stoned To The Bone - Part 1", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "John Denver", + "title": "Please, Daddy", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Keith Hampshire", + "title": "Big Time Operator", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Melanie", + "title": "Will You Love Me Tomorrow?", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Love Unlimited", + "title": "It May Be Winter Outside, (But In My Heart It's Spring)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Alice Cooper", + "title": "Teenage Lament '74", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Roy Clark", + "title": "Somewhere Between Love And Tomorrow", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Don Goodwin", + "title": "This Is Your Song", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Garfunkel", + "title": "I Shall Sing", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pointer Sisters", + "title": "Wang Dang Doodle", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Joni Mitchell", + "title": "Raised On Robbery", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 5th Dimension", + "title": "Flashback", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Lamont Dozier", + "title": "Trying To Hold On To My Woman", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Gary & Dave", + "title": "Could You Ever Love Me Again", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Albert Hammond", + "title": "Half A Million Miles From Home", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The De Franco Family", + "title": "Abra-Ca-Dabra", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Dramatics", + "title": "Fell For You", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "J. Frank Wilson and The Cavaliers", + "title": "Last Kiss", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Isley Brothers", + "title": "What It Comes Down To", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Johnny Mathis", + "title": "Life Is A Song Worth Singing", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Curtis Mayfield", + "title": "Can't Say Nothin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 9, + "missing_count": 61, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "1972 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Paul", + "playlist_title": "Me And Mrs. Jones", + "found_song": { + "artist": "Billy Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b4cbdd2-975e-434a-4f2b-8835c905b6af", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Paul - Me And Mrs Jones.mp4", + "title": "Me And Mrs Jones" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Gilbert O'Sullivan", + "playlist_title": "Clair", + "found_song": { + "artist": "Gilbert O'Sullivan", + "disabled": false, + "favorite": false, + "guid": "f12b21af-4df1-ab5d-5f59-8518098ce3ba", + "path": "z://MP4\\KaraFun Karaoke\\Clair - Gilbert O'Sullivan Karaoke Version KaraFun.mp4", + "title": "Clair" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Al Green", + "playlist_title": "You Ought To Be With Me", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "744538c3-97bd-a9ba-fd8f-21ea99a954b4", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - You Ought To Be With Me (Karaoke & Lyrics).mp4", + "title": "You Ought To Be With Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carly Simon", + "playlist_title": "You're So Vain", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "b31261c5-14ac-0770-063c-2a2fe289753a", + "path": "z://MP4\\Stingray Karaoke\\You're So Vain Carly Simon Karaoke with Lyrics.mp4", + "title": "You're So Vain" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Albert Hammond", + "playlist_title": "It Never Rains In Southern California", + "found_song": { + "artist": "Albert Hammond", + "disabled": false, + "favorite": false, + "guid": "8db6601e-7ce4-96f3-071b-e624476cbeec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Never Rains In Southern California - Albert Hammond.mp4", + "title": "It Never Rains In Southern California" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donna Fargo", + "playlist_title": "Funny Face", + "found_song": { + "artist": "Donna Fargo", + "disabled": false, + "favorite": false, + "guid": "3c119ce4-7dc3-045f-3d53-915d6e2f8405", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Funny Face - Donna Fargo.mp4", + "title": "Funny Face" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Helen Reddy", + "playlist_title": "I Am Woman", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "622d6395-55d9-5246-9d67-5dccdde2fd40", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am Woman - Helen Reddy.mp4", + "title": "I Am Woman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Curtis Mayfield", + "playlist_title": "Superfly", + "found_song": { + "artist": "Curtis Mayfield", + "disabled": false, + "favorite": false, + "guid": "9d5f4dfb-028a-6f63-e338-ec290b2a0659", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superfly - Curtis Mayfield.mp4", + "title": "Superfly" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Four Tops", + "playlist_title": "Keeper Of The Castle", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a73e6be-4a54-aeee-65bc-67ed6ba2fc8f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Keeper Of The Castle.mp4", + "title": "Keeper Of The Castle" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jethro Tull", + "playlist_title": "Living In The Past", + "found_song": { + "artist": "Jethro Tull", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d43c9f2-116e-17a0-a895-4cfb454a8b3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jethro Tull - Living In The Past.mp4", + "title": "Living In The Past" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Temptations", + "playlist_title": "Papa Was A Rollin' Stone", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e489222-6983-3a1e-676b-e513ebbefd1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Papa Was A Rollin Stone.mp4", + "title": "Papa Was A Rollin' Stone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Superstition", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "e8f2c86c-11c0-5db7-ab70-29e4b6aebbf7", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Superstition (Karaoke Version).mp4", + "title": "Superstition" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Elton John", + "playlist_title": "Crocodile Rock", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "779e40c1-544b-81e0-d61a-62e097970bbe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crocodile Rock - Elton John.mp4", + "title": "Crocodile Rock" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "James Taylor", + "playlist_title": "Don't Let Me Be Lonely Tonight", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "79903b1d-d87d-50b2-a07c-f30f16db96f7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Lonely Tonight - James Taylor.mp4", + "title": "Don t Let Me Be Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Nash", + "playlist_title": "I Can See Clearly Now", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "9cf36048-f45d-f51b-8edd-48b52936a0af", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Nash - I Can See Clearly Now (Karaoke).mp4", + "title": "I Can See Clearly Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Three Dog Night", + "playlist_title": "Pieces Of April", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "766f5f3b-c8b1-be54-5f9b-161715f4f098", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Pieces Of April.mp4", + "title": "Pieces Of April" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Timmy Thomas", + "playlist_title": "Why Can't We Live Together", + "found_song": { + "artist": "Timmy Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1351569a-f1fc-5576-f152-f355ff64174b", + "path": "z://MP4\\KaraokeOnVEVO\\Timmy Thomas - Why Cant We Live Together.mp4", + "title": "Why Can't We Live Together" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carole King", + "playlist_title": "Been To Canaan", + "found_song": { + "artist": "Carole King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f3e568e-302f-b686-cf0c-5708cc7e16d7", + "path": "z://MP4\\KaraokeOnVEVO\\Carole King - Been To Canaan.mp4", + "title": "Been To Canaan" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hurricane Smith", + "playlist_title": "Oh, Babe, What Would You Say?", + "found_song": { + "artist": "Hurricane Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87141556-f110-fe82-7d8c-fa479a7f15e1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hurricane Smith - Oh Babe What Would You Say.mp4", + "title": "Oh Babe What Would You Say" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Elvis Presley", + "playlist_title": "Separate Ways", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9ba9f49a-b290-2300-1e5c-070a861a45a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Separate Ways - Elvis Presley.mp4", + "title": "Separate Ways" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "America", + "playlist_title": "Ventura Highway", + "found_song": { + "artist": "America", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b31c4f6-8e1e-8095-d89e-8d612cdf9aaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\America - Ventura Highway.mp4", + "title": "Ventura Highway" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Steely Dan", + "playlist_title": "Do It Again", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "bf186305-ea78-86b1-c1a8-053726d78c78", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do It Again - Steely Dan.mp4", + "title": "Do It Again" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Stylistics", + "playlist_title": "I'm Stone In Love With You", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "f25e5ab0-01a2-66de-ca47-e930e7ccb8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Stone In Love With You - The Stylistics.mp4", + "title": "I m Stone In Love With You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Osmonds", + "playlist_title": "Crazy Horses", + "found_song": { + "artist": "The Osmonds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88c8717e-1122-05d1-0294-8a609136ada3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Osmonds - Crazy Horses.mp4", + "title": "Crazy Horses" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Joni Mitchell", + "playlist_title": "You Turn Me On, I'm A Radio", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "88a77813-74fd-ef9a-2ac8-9d6870300445", + "path": "z://MP4\\Stingray Karaoke\\You Turn Me On I'm A Radio Joni Mitchell Karaoke with Lyrics.mp4", + "title": "You Turn Me On I'm A Radio" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "John Denver", + "playlist_title": "Rocky Mountain High", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "bafcb602-84dd-1f92-35d5-ff9dae2052d9", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Rocky Mountain High (Karaoke).mp4", + "title": "Rocky Mountain High" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Chuck Berry", + "playlist_title": "Reelin' & Rockin'", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "90508730-7a99-b666-6ba5-581b16fc52f4", + "path": "z://CDG\\Various\\Chuck Berry - Reelin' & Rockin'.mp3", + "title": "Reelin' & Rockin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Jim Croce", + "playlist_title": "Operator (That's Not the Way it Feels)", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32b8d2b-74f4-4900-a23d-eb92be2167cd", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Operator (Thats Not the Way it Feels.mp4", + "title": "Operator (That's Not the Way it Feels)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Rod Stewart", + "playlist_title": "Angel", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "994b1d51-d783-1845-1040-dcd566ee8a77", + "path": "z://CDG\\Various\\Rod Stewart - Angel.mp3", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eagles", + "playlist_title": "Peaceful Easy Feeling", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "91dec07c-0d85-22fa-be2b-c63d135ebb3e", + "path": "z://MP4\\TheKARAOKEChannel\\Peaceful Easy Feeling Eagles Karaoke with Lyrics.mp4", + "title": "Peaceful Easy Feeling" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dr. Hook And The Medicine Show", + "playlist_title": "The Cover Of Rolling Stone", + "found_song": { + "artist": "Dr. Hook And The Medicine Show", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2566cfb1-4988-fddc-8dbb-c084b846890f", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook And The Medicine Show - The Cover Of Rolling Stone.mp4", + "title": "The Cover Of Rolling Stone" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Slade", + "playlist_title": "Mama Weer All Crazee Now", + "found_song": { + "artist": "Slade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da0cf45a-1c3d-873e-17b0-94341e85e39e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Slade - Mama Weer All Crazee Now.mp4", + "title": "Mama Weer All Crazee Now" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Jesus Is Just Alright", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f8b85-7305-221c-0512-02080cf9ce29", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - Jesus Is Just Alright.mp4", + "title": "Jesus Is Just Alright" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Knock Knock Who's There", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14345e44-29fa-7eb1-ecad-88cfa40424e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Knock Knock Whos There.mp4", + "title": "Knock Knock Who's There" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "I Never Said Goodbye", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ca06b2b-bfd6-d05a-b1a3-109156ade717", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - I Never Said Goodbye.mp4", + "title": "I Never Said Goodbye" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Rockin' Pneumonia - Boogie Woogie Flu", + "found_song": { + "artist": "Johnny Rivers", + "disabled": false, + "favorite": false, + "guid": "2bbe8159-a591-4b9f-95d4-87f7547134d3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin Pneumonia And The Boogie Woogie Flu - Johnny Rivers.mp4", + "title": "Rockin Pneumonia And The Boogie Woogie Flu" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "King Harvest", + "playlist_title": "Dancing In The Moonlight", + "found_song": { + "artist": "King Harvest", + "disabled": false, + "favorite": false, + "guid": "09b04506-c965-88ab-a2bb-f818833412a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancin In The Moonlight - King Harvest.mp4", + "title": "Dancin In The Moonlight" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Who", + "playlist_title": "The Relay", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "97e3bb5b-9ae4-ca5a-af33-26415702ac28", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Who - The Real Me (Karaoke).mp4", + "title": "The Real Me" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Bette Midler", + "playlist_title": "Do You Want To Dance?", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "7a1850ae-d8f2-27fe-367e-384d298dedbb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do You Wanna Dance - Bette Midler.mp4", + "title": "Do You Wanna Dance" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Spinners", + "playlist_title": "Could It Be I'm Falling In Love", + "found_song": { + "artist": "Spinners", + "disabled": false, + "favorite": false, + "guid": "8ed772d4-455d-20e8-c1e6-15ea58dd40bd", + "path": "z://CDG\\Various\\Spinners - Could It Be I'm Falling In Love.mp3", + "title": "Could It Be I'm Falling In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Limmie & Family Cookin'", + "playlist_title": "You Can Do Magic", + "found_song": { + "artist": "Limmie & Family Cookin'", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8010b8ae-821e-a3d7-7ff3-550e48aeec0b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limmie and Family Cookin - You Can Do Magic.mp4", + "title": "You Can Do Magic" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Kenny Loggins & Jim Messina", + "title": "Your Mama Don't Dance", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Austin Roberts", + "title": "Something's Wrong With Me", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Bread", + "title": "Sweet Surrender", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Neil Diamond", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Cat Stevens", + "title": "Sitting", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Harold Melvin And The Blue Notes", + "title": "If You Don't Know Me By Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jackson 5", + "title": "Corner Of The Sky", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Wings", + "title": "Hi, Hi, Hi", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Raspberries", + "title": "I Wanna Be With You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Seals & Crofts", + "title": "Summer Breeze", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Blue Haze", + "title": "Smoke Gets In Your Eyes", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Hollies", + "title": "Long Dark Road", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marvin Gaye", + "title": "Trouble Man", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "War", + "title": "The World Is A Ghetto", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bee Gees", + "title": "Alive", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bulldog", + "title": "No", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bobby Womack & Peace", + "title": "Harry Hippie", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brighter Side Of Darkness", + "title": "Love Jones", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Chicago", + "title": "Dialogue (Part I & II)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Blue Ridge Rangers", + "title": "Jambalaya (On The Bayou)", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Joe Simon", + "title": "Trouble In My Home/I Found My Dad", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Clean Living", + "title": "In Heaven There Is No Beer", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Bill Withers", + "title": "Let Us Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Peter Skellern", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jermaine Jackson", + "title": "Daddy's Home", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Dennis Yost And The Classics IV", + "title": "What Am I Crying For?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Joe Cocker and The Chris Stainton Band", + "title": "Woman To Woman", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "James Brown", + "title": "I Got A Bag Of My Own", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Luther Ingram", + "title": "I'll Be Your Shelter (In Time Of Storm)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Chi-lites", + "title": "We Need Order", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Smokey Robinson & The Miracles", + "title": "I Can't Stand To See You Cry", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Mac Davis", + "title": "Everybody Loves A Love Song", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "Looking Through The Eyes Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Don McLean", + "title": "Dreidel", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The Main Ingredient", + "title": "You've Got To Take It (If You Want It)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The O'Jays", + "title": "992 Arguments", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Cornelius Brothers & Sister Rose", + "title": "I'm Never Gonna Be Alone Anymore", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Nilsson", + "title": "Remember (Christmas)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gary Glitter", + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dawn Featuring Tony Orlando", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Wayne Newton", + "title": "Anthem", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Keith Hampshire", + "title": "Daytime Night-Time", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown-Lyn Collins", + "title": "What My Baby Needs Now Is A Little More Lovin'", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Edward Bear", + "title": "Last Song", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lobo", + "title": "Don't Expect Me To Be Your Friend", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Cashman & West", + "title": "Songman", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Valerie Simpson", + "title": "Silly Wasn't I", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Glen Campbell", + "title": "One Last Time", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Emerson, Lake & Palmer", + "title": "Lucky Man", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Merry Clayton", + "title": "Oh No, Not My Baby", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gallery", + "title": "Big City Miss Ruth Ann", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Kris Kristofferson", + "title": "Jesus Was A Capricorn", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Joey Heatherton", + "title": "I'm Sorry", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Paul Davis", + "title": "Boogie Woogie Man", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Barbra Streisand", + "title": "Didn't We", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Rita Coolidge", + "title": "Fever/My Crew", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Ten Years After", + "title": "Choo Choo Mama", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Vinton", + "title": "But I Do", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Brownsville Station", + "title": "The Red Back Spider", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 6, + "missing_count": 59, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1971 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Melanie", + "playlist_title": "Brand New Key", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "460e4251-407d-579c-b86f-8181fbd5f182", + "path": "z://MP4\\KaraokeOnVEVO\\Melanie - Brand New Key.mp4", + "title": "Brand New Key" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Three Dog Night", + "playlist_title": "An Old Fashioned Love Song", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "a82042ce-a0c0-eff1-9a32-8b895b354aea", + "path": "z://MP4\\Let's Sing Karaoke\\Three Dog Night - An Old Fashioned Love Song (Karaoke & Lyrics).mp4", + "title": "An Old Fashioned Love Song" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Chi-lites", + "playlist_title": "Have You Seen Her", + "found_song": { + "artist": "The Chi-Lites", + "disabled": false, + "favorite": false, + "guid": "f011e231-adac-a897-4083-462e101a9831", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have You Seen Her - The Chi-Lites.mp4", + "title": "Have You Seen Her" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bread", + "playlist_title": "Baby I'm - A Want You", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "03e76ecd-f7f5-519b-89ae-d2b091837582", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby I m-A Want You - Bread.mp4", + "title": "Baby I m-A Want You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "Respect Yourself", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dede9b3-a62a-462f-3cf7-39fcd689f8af", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - Respect Yourself.mp4", + "title": "Respect Yourself" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Stylistics", + "playlist_title": "You Are Everything", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "6f137d12-5bc7-fb09-5d76-9dfdcf60bc33", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are Everything - The Stylistics.mp4", + "title": "You Are Everything" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Isaac Hayes", + "playlist_title": "Theme From Shaft", + "found_song": { + "artist": "Isaac Hayes", + "disabled": false, + "favorite": false, + "guid": "642d0318-a690-05ff-7ba1-8da7cdf15a18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Theme From Shaft - Isaac Hayes.mp4", + "title": "Theme From Shaft" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The New Seekers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cher", + "playlist_title": "Gypsys, Tramps & Thieves", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "3e5f0ace-9ab4-ed19-89d7-e2fd10a2c129", + "path": "z://MP4\\Let's Sing Karaoke\\Cher - Gypsys, Tramps & Thieves (Karaoke & Lyrics) (2) (2).mp4", + "title": "Gypsys, Tramps & Thieves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Al Green", + "playlist_title": "Let's Stay Together", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "ae928bb7-065d-d001-3d34-359c992a8723", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Stay Together - Al Green.mp4", + "title": "Let s Stay Together" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Rock Steady", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "f1961690-4ee2-2c2a-3806-d2304a16d6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock Steady - Aretha Franklin.mp4", + "title": "Rock Steady" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Who", + "playlist_title": "Behind Blue Eyes", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "1d4d31d9-e36e-a0f5-aec7-3007d605bec3", + "path": "z://MP4\\TheKARAOKEChannel\\The Who - Behind Blue Eyes.mp4", + "title": "Behind Blue Eyes" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Charley Pride", + "playlist_title": "Kiss An Angel Good Mornin'", + "found_song": { + "artist": "Charley Pride", + "disabled": false, + "favorite": false, + "guid": "1a390492-0128-c1b6-5784-0dffd378f138", + "path": "z://MP4\\KtvEntertainment\\Charley Pride - Kiss An Angel Good Mornin' Karaoke Lyrics.mp4", + "title": "Kiss An Angel Good Mornin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Carly Simon", + "playlist_title": "Anticipation", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04ae3530-180f-2ab5-9589-ebc690251c67", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Anticipation.mp4", + "title": "Anticipation" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Jerry Lee Lewis", + "playlist_title": "Me And Bobby McGee", + "found_song": { + "artist": "Jerry Lee Lewis", + "disabled": false, + "favorite": false, + "guid": "0f5485cf-5629-2ec7-e01e-aaaa72da4913", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Me And Bobby McGee - Jerry Lee Lewis.mp4", + "title": "Me And Bobby McGee" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Redbone", + "playlist_title": "The Witch Queen Of New Orleans", + "found_song": { + "artist": "Redbone", + "disabled": false, + "favorite": false, + "guid": "822159fb-2160-0e36-c3cf-d1473458b97f", + "path": "z://MP4\\KaraFun Karaoke\\The Witch Queen of New Orleans - Redbone Karaoke Version KaraFun.mp4", + "title": "The Witch Queen of New Orleans" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Elton John", + "playlist_title": "Levon", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "8f92431e-6a63-4023-8abf-eef90f99d924", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Levon - Elton John.mp4", + "title": "Levon" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Grateful Dead", + "playlist_title": "Truckin'", + "found_song": { + "artist": "Grateful Dead", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90967072-5bf7-c669-aa64-3790e05a0167", + "path": "z://MP4\\ZoomKaraokeOfficial\\Grateful Dead - Truckin.mp4", + "title": "Truckin'" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Black Dog", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "7009cab8-2f2d-0321-9d63-131a26765759", + "path": "z://MP4\\Let's Sing Karaoke\\Led Zeppelin - Black Dog (Karaoke & Lyrics).mp4", + "title": "Black Dog" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Nilsson", + "playlist_title": "Without You", + "found_song": { + "artist": "Nilsson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d887ad3-6c22-b7de-b2a1-906ed7d48433", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nilsson - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Coasters", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Coasters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3876256-d059-2613-0043-439787f54eb1", + "path": "z://MP4\\KaraokeOnVEVO\\The Coasters - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Fire And Water", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "36da35cc-6c50-a44a-c343-a649c12e1c3f", + "path": "z://MP4\\KaraokeOnVEVO\\Wilson Pickett - Fire And Water (Karaoke).mp4", + "title": "Fire And Water" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Three Dog Night", + "playlist_title": "Never Been To Spain", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "04280fa9-61bc-0c97-ded8-235371cbca2a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Been to Spain - Three Dog Night.mp4", + "title": "Never Been to Spain" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Alice Cooper", + "playlist_title": "Under My Wheels", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3a13643-ddbc-8931-131d-4da4a445b691", + "path": "z://CDG\\Various\\Alice Cooper - Under My Wheels.mp3", + "title": "Under My Wheels" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "3ceac0e1-1b33-0b06-39e1-14f7a13a52b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Affair - Sly And The Family Stone.mp4", + "title": "Family Affair" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Michael Jackson", + "playlist_title": "Got To Be There", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "3439c7ad-f218-0a17-51a6-351a14baf92a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Be There - Michael Jackson.mp4", + "title": "Will You Be There" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Sonny & Cher", + "playlist_title": "All I Ever Need Is You", + "found_song": { + "artist": "Sonny & Cher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d0fc0e-2e3a-d47d-37af-f971d7766f6f", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny & Cher - All I Ever Need Is You.mp4", + "title": "All I Ever Need Is You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Hillside Singers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Neil Diamond", + "playlist_title": "Stones/Crunchy Granola Suite", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728d8bbe-ef54-a6a5-d5a2-729eb1af9538", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Crunchy Granola Suite.mp4", + "title": "Crunchy Granola Suite" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Joe Simon", + "playlist_title": "Drowning In The Sea Of Love", + "found_song": { + "artist": "Eva Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3596517-19b1-1b8d-e449-bb27b4c99906", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eva Cassidy - Drowning In The Sea Of Love.mp4", + "title": "Drowning In The Sea Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Merle Haggard And The Strangers", + "playlist_title": "Carolyn", + "found_song": { + "artist": "Merle Haggard And The Strangers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b03a980c-2c30-63ca-f8a4-89c22e7e0be6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Merle Haggard And The Strangers - Mama Tried.mp4", + "title": "Mama Tried" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Don McLean", + "title": "American Pie (Parts I & II)", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Dennis Coffey & The Detroit Guitar Band", + "title": "Scorpio", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "David Cassidy", + "title": "Cherish", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Donny Osmond", + "title": "Hey Girl/I Knew You When", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jonathan Edwards", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Donnie Elbert", + "title": "Where Did Our Love Go", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Temptations", + "title": "Superstar (Remember How You Got Where You Are)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Honey Cone", + "title": "One Monkey Don't Stop No Show Part I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Betty Wright", + "title": "Clean Up Woman", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rod Stewart With Faces", + "title": "(I Know) I'm Losing You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Badfinger", + "title": "Day After Day", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Peter Nero", + "title": "Theme From Summer Of '42", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Mickey Newbury", + "title": "An American Trilogy", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jackson 5", + "title": "Sugar Daddy", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Rare Earth", + "title": "Hey Big Brother", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Sweathog", + "title": "Hallelujah", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Les Crane", + "title": "Desiderata", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Lou Rawls", + "title": "A Natural Man", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Bob Dylan", + "title": "George Jackson", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lee Michaels", + "title": "Can I Get A Witness", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Bullet", + "title": "White Lies, Blue Eyes", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tommy James", + "title": "Nothing To Hide", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "James Brown", + "title": "I'm A Greedy Man - Part I", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "It's One Of Those Nights (Yes Love)", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Think", + "title": "Once You Understand", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "John Denver", + "title": "Friends With You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gladys Knight And The Pips", + "title": "Make Me The Woman That You Go Home To", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Joan Baez", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Yes", + "title": "Your Move (I've Seen All Good People)", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Smokey Robinson & The Miracles", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Guess Who", + "title": "Sour Suite", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Richard Harris", + "title": "My Boy", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.B. King", + "title": "Ain't Nobody Home", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The J. Geils Band", + "title": "Looking For A Love", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "title": "Those Were The Days", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Womack & Peace", + "title": "That's The Way I Feel About Cha", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jefferson Airplane", + "title": "Pretty As You Feel", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Stampeders", + "title": "Devil You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ray Stevens", + "title": "Turn Your Radio On", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Little Johnny Taylor", + "title": "Everybody Knows About My Good Thing Pt. 1", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Daisy Mae", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Helen Reddy", + "title": "No Sad Song", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Lighthouse", + "title": "Take It Slow (Out In The Country)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Curtis Mayfield", + "title": "Get Down", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Doors", + "title": "Tightrope Ride", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Merry Clayton", + "title": "After All This Time", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Isley Brothers", + "title": "Lay Lady Lay", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Carpenters", + "title": "Superstar/Bless The Beasts And Children", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jr. Walker & The All Stars", + "title": "Way Back Home", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Beverly Bremers", + "title": "Don't Say You Don't Remember", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Free Movement", + "title": "The Harder I Try (The Bluer I Get)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Emotions", + "title": "Show Me How", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Chase", + "title": "So Many People", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Poppy Family", + "title": "No Good To Cry", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Undisputed Truth", + "title": "You Make Your Own Heaven And Hell Right Here On Earth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Dramatics", + "title": "Get Up And Get Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Ray Charles", + "title": "What Am I Living For", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "N.F. Porter", + "title": "Keep On Keeping On", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Heaven Bound with Tony Scotti", + "title": "Five Hundred Miles", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Johnny Paycheck", + "title": "She's All I Got", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Bar-Kays", + "title": "Son Of Shaft", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jerry Butler & Brenda Lee Eager", + "title": "Ain't Understanding Mellow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The New Colony Six", + "title": "Long Time To Be Alone", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Judy Collins", + "title": "Open The Door (Song For Judith)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Persuaders", + "title": "Love Gonna Pack Up (And Walk Out)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rufus Thomas", + "title": "Do The Funky Penguin Part I", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Edgar Winter's White Trash", + "title": "Keep Playin' That Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ohio Players", + "title": "Pain (Part I)", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Assembled Multitude", + "title": "Medley From Superstar (A Rock Opera)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 7, + "missing_count": 69, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1970 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The 5th Dimension", + "playlist_title": "One Less Bell To Answer", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "guid": "a763d4af-8553-62c1-d749-98817f382d45", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - One Less Bell To Answer (Karaoke).mp4", + "title": "One Less Bell To Answer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dawn", + "playlist_title": "Knock Three Times", + "found_song": { + "artist": "Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfcd81f3-3f9a-7440-b07b-40b0bd35443c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dawn - Knock Three Times.mp4", + "title": "Knock Three Times" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Santana", + "playlist_title": "Black Magic Woman", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "guid": "362ec6fd-129e-8824-5441-2fe6de85929e", + "path": "z://MP4\\KtvEntertainment\\Santana - Black Magic Woman Karaoke Lyrics.mp4", + "title": "Black Magic Woman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Chicago", + "playlist_title": "Does Anybody Really Know What Time It Is?", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d67c94b-3051-2b57-9036-a7ed705cf58c", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Does Anybody Really Know What Time It Is.mp4", + "title": "Does Anybody Really Know What Time It Is?" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Badfinger", + "playlist_title": "No Matter What", + "found_song": { + "artist": "Badfinger", + "disabled": false, + "favorite": false, + "guid": "e8a3345c-950c-ee3c-1849-d60a47f9018f", + "path": "z://MP4\\KaraokeOnVEVO\\Badfinger - No Matter What (Karaoke).mp4", + "title": "No Matter What" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ray Price", + "playlist_title": "For The Good Times", + "found_song": { + "artist": "Ray Price", + "disabled": false, + "favorite": false, + "guid": "26552417-e645-ab9a-92da-2121e14d1fda", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Good Times - Ray Price.mp4", + "title": "For The Good Times" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Carpenters", + "playlist_title": "We've Only Just Begun", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "85791d84-295b-64f8-a17f-1b475e0bba7a", + "path": "z://MP4\\Stingray Karaoke\\We've Only Just Begun in the Style of Carpenters karaoke video with lyrics (no lead vocal).mp4", + "title": "We've Only Just Begun" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jackson 5", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5bd371b-5fd7-1790-4586-a1c5eb3c42c7", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson 5 - Ill Be There.mp4", + "title": "I'll Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "King Floyd", + "playlist_title": "Groove Me", + "found_song": { + "artist": "King Floyd", + "disabled": false, + "favorite": false, + "guid": "9ab300c0-4b7a-9fbf-9b8e-1e99e41f8e59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Groove Me - King Floyd.mp4", + "title": "Groove Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Perry Como", + "playlist_title": "It's Impossible", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "fa04d60b-aaf9-eddd-b92d-83a276da3d9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Impossible - Perry Como.mp4", + "title": "It s Impossible" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Neil Diamond", + "playlist_title": "He Ain't Heavy...He's My Brother", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "f30ea4df-9e2e-f13a-3021-aab98962b538", + "path": "z://CDG\\Various\\Neil Diamond - He Ain't Heavy He's My Brother.mp3", + "title": "He Ain't Heavy He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bee Gees", + "playlist_title": "Lonely Days", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cbceae51-ffa5-d357-dd4e-d88382c76d70", + "path": "z://CDG\\Various\\Bee Gees - Lonely Days.mp3", + "title": "Lonely Days" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Bobby Bloom", + "playlist_title": "Montego Bay", + "found_song": { + "artist": "Bobby Bloom", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "774ff8f6-4cf5-6dcf-7e40-70034554a6d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Bloom - Montego Bay.mp4", + "title": "Montego Bay" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Elton John", + "playlist_title": "Your Song", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e8680961-1b41-06e3-891f-a988e4fd1674", + "path": "z://MP4\\Sing King Karaoke\\Elton John - Your Song (Karaoke Version).mp4", + "title": "Your Song" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lynn Anderson", + "playlist_title": "Rose Garden", + "found_song": { + "artist": "Lynn Anderson", + "disabled": false, + "favorite": false, + "guid": "393a0e56-5496-db22-82a1-f58b59247316", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rose Garden - Lynn Anderson.mp4", + "title": "Rose Garden" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "James Taylor", + "playlist_title": "Fire And Rain", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "ab5a0dca-c945-7b27-0ba9-1b2324cbe4bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire And Rain - James Taylor.mp4", + "title": "Fire And Rain" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Clapton", + "playlist_title": "After Midnight", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "guid": "afc9be6e-e4aa-46dd-d532-5712c796a86b", + "path": "z://MP4\\Let's Sing Karaoke\\Clapton, Eric - After Midnight (Karaoke & Lyrics).mp4", + "title": "After Midnight" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Heaven Help Us All", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bb61e7a-8b12-41b1-1c83-6cdb8fc0c2d7", + "path": "z://CDG\\SBI\\SBI-03\\SB25800 - Stevie Wonder - Heaven Help Us All.mp3", + "title": "Heaven Help Us All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Neil Young", + "playlist_title": "Only Love Can Break Your Heart", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb79504e-ae37-3842-9012-72e3bb0b8da9", + "path": "z://MP4\\VocalStarKaraoke\\Neil Young - Only Love Can Break Your Heart.mp4", + "title": "Only Love Can Break Your Heart" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jerry Reed", + "playlist_title": "Amos Moses", + "found_song": { + "artist": "Jerry Reed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c28a915-0e9e-7076-a810-064b47ec6733", + "path": "z://MP4\\KaraokeOnVEVO\\Jerry Reed - Amos Moses.mp4", + "title": "Amos Moses" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rare Earth", + "playlist_title": "Born To Wander", + "found_song": { + "artist": "Rare Earth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46f35e7e-2b22-c1d3-2b74-d76117fc94ff", + "path": "z://MP4\\KaraokeOnVEVO\\Rare Earth - Born To Wander.mp4", + "title": "Born To Wander" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Melanie", + "playlist_title": "Ruby Tuesday", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbd821ac-8f57-4ec5-b376-79a30a2ea5c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 802\\Melanie - Ruby Tuesday - SFMW 802 -11.mp3", + "title": "Ruby Tuesday" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Black Sabbath", + "playlist_title": "Paranoid", + "found_song": { + "artist": "Black Sabbath", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e972744b-f6cb-cddf-9f4e-07849e00d5ad", + "path": "z://MP4\\Sing King Karaoke\\Black Sabbath - Paranoid.mp4", + "title": "Paranoid" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Deep Purple", + "playlist_title": "Black Night", + "found_song": { + "artist": "Deep Purple", + "disabled": false, + "favorite": false, + "guid": "e3972bd1-2e9f-a79e-e4a5-e6871f3c30e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Night - Deep Purple.mp4", + "title": "Black Night" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "James Taylor", + "playlist_title": "Carolina In My Mind", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "bfa7e86f-1773-bdb2-aa87-896a6af6a212", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Carolina In My Mind - James Taylor.mp4", + "title": "Carolina In My Mind" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Diana Ross", + "playlist_title": "Remember Me", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "fa840d6b-81dc-6352-ddef-89dba09a82cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember Me - Diana Ross.mp4", + "title": "Remember Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "If You Could Read My Mind", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "971a7b53-9b1e-c9bf-d499-6fcc191c9554", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If You Could Read My Mind - Gordon Lightfoot.mp4", + "title": "If You Could Read My Mind" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Loretta Lynn", + "playlist_title": "Coal Miner's Daughter", + "found_song": { + "artist": "Loretta Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ee99293-6553-b927-818e-0a6f8b930b30", + "path": "z://MP4\\KaraokeOnVEVO\\Loretta Lynn - Coal Miner's Daughter.mp4", + "title": "Coal Miner's Daughter" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Rufus Thomas", + "playlist_title": "(Do The) Push And Pull Part I", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b179db51-fa79-090a-9c06-ca92bfefbb0b", + "path": "z://MP4\\KaraokeOnVEVO\\Rufus Thomas - (Do The) Push And Pull Part I.mp4", + "title": "(Do The) Push And Pull Part I" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Dave Edmunds", + "playlist_title": "I Hear You Knocking", + "found_song": { + "artist": "Dave Edmunds", + "disabled": false, + "favorite": false, + "guid": "0883256c-eab8-fff8-2da8-6866b7839f98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Hear You Knocking - Dave Edmunds.mp4", + "title": "I Hear You Knocking" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "The Supremes", + "playlist_title": "Stoned Love", + "found_song": { + "artist": "Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96a21d5c-1202-f5c5-bc41-1c3a3cb14308", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Supremes - Stoned Love - SFMW 812 -14.mp3", + "title": "Stoned Love" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "If I Were Your Woman", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f14a7fe-e9ac-a0a0-ed3d-6658959fd627", + "path": "z://MP4\\KaraokeOnVEVO\\Gladys Knight And The Pips - If I Were Your Woman.mp4", + "title": "If I Were Your Woman" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Tom Jones", + "playlist_title": "Can't Stop Loving You", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f61f704-53c8-c6d8-c093-5cd25417e1c2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - I Cant Stop Loving You (Live).mp4", + "title": "I Can't Stop Loving You (Live)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Stephen Stills", + "playlist_title": "Love The One You're With", + "found_song": { + "artist": "Stephen Stills", + "disabled": false, + "favorite": false, + "guid": "b7f6be8a-3f1a-740e-575f-2cf8bc2457df", + "path": "z://MP4\\Let's Sing Karaoke\\Stills, Stephen - Love The One Your With (Karaoke & Lyrics).mp4", + "title": "Love The One Your With" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Elvis Presley", + "playlist_title": "You Don't Have To Say You Love Me/Patch It Up", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9c7bcc67-ec63-f173-5d03-3c218082a05e", + "path": "z://CDG\\Various\\Elvis Presley - You Don't Have To Say You Love Me.mp3", + "title": "You Don't Have To Say You Love Me" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Nitty Gritty Dirt Band", + "playlist_title": "Mr. Bojangles", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "2a384b30-761d-bd65-75c7-e94cd3c56777", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Bojangles - Nitty Gritty Dirt Band.mp4", + "title": "Mr. Bojangles" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Johnny Cash", + "playlist_title": "Flesh And Blood", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "3bef1bed-6d29-fd67-8cc7-f56f643dabab", + "path": "z://CDG\\Various\\Johnny Cash - Flesh & Blood.mp3", + "title": "Flesh & Blood" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "George Harrison", + "title": "My Sweet Lord/Isn't It A Pity", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Smokey Robinson & The Miracles", + "title": "The Tears Of A Clown", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "I Think I Love You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Brian Hyland", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Presidents", + "title": "5-10-15-20 (25-30 Years Of Love)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Van Morrison", + "title": "Domino", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Barbra Streisand", + "title": "Stoney End", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Supremes & Four Tops", + "title": "River Deep - Mountain High", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Andy Kim", + "title": "Be My Baby", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Three Dog Night", + "title": "One Man Band", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chairmen Of The Board", + "title": "Pay To The Piper", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Guess Who", + "title": "Share The Land", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Flaming Ember", + "title": "I'm Not My Brothers Keeper", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Neil Diamond", + "title": "Do It", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Aretha Franklin", + "title": "Border Song (Holy Moses)/You And Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Redeye", + "title": "Games", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Runt", + "title": "We Gotta Get You A Woman", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ray Charles", + "title": "If You Were Mine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Michael Nesmith & The First National Band", + "title": "Silver Moon", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Dionne Warwick", + "title": "The Green Grass Starts To Grow", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jim Ed Brown", + "title": "Morning", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Curtis Mayfield", + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.J. Thomas", + "title": "Most Of All", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Edwin Starr", + "title": "Stop The War Now", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Free", + "title": "Stealer", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "O.V. Wright", + "title": "Ace Of Spade", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Clarence Carter", + "title": "It's All In Your Mind", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Elvis Presley", + "title": "I Really Don't Want To Know/There Goes My Everything", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Judy Collins", + "title": "Amazing Grace", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Moments", + "title": "All I Have", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Little Sister", + "title": "Somebody's Watching You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jackie Moore", + "title": "Precious, Precious", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Al Green", + "title": "I Can't Get Next To You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Israel Popper Stopper Tolbert", + "title": "Big Leg Woman (With A Short Short Mini Skirt)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Grass Roots", + "title": "Temptation Eyes", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Eric Burdon And War", + "title": "They Can't Take Away Our Music", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tommy James", + "title": "Church Street Soul Revival", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gypsy", + "title": "Gypsy Queen - Part 1", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Grand Funk Railroad", + "title": "Mean Mistreater", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Frijid Pink", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Robert John", + "title": "When The Party Is Over", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Ray Stevens", + "title": "Bridget The Midget (The Queen Of The Blues)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Liz Damon's Orient Express", + "title": "1900 Yesterday", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Goldsboro", + "title": "Watching Scotty Grow", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Redbone", + "title": "Maggie", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Joe Simon", + "title": "Your Time To Cry", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Chi-lites", + "title": "Are You My Woman? (Tell Me So)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teegarden & Van Winkle", + "title": "Everything Is Going To Be Alright", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Anne Murray", + "title": "Sing High - Sing Low", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Originals", + "title": "God Bless Whoever Sent You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jr. Walker & The All Stars", + "title": "Holly Holy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Five Flights Up", + "title": "After The Feeling Is Gone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Buddy Miles", + "title": "We Got To Live Together - Part I", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Little Anthony And The Imperials", + "title": "Help Me Find A Way (To Say I Love You)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Mike Curb Congregation", + "title": "Burning Bridges", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Sandpipers", + "title": "Free To Carry On", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Main Ingredient", + "title": "I'm So Proud", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Brook Benton With The Dixie Flyers", + "title": "Shoes", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Jackie Wilson", + "title": "(I Can Feel Those Vibrations) This Love Is Real", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Wadsworth Mansion", + "title": "Sweet Mary", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Jazz Crusaders", + "title": "Way Back Home", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Betty Everett", + "title": "I Got To Tell Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 7, + "missing_count": 62, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1969 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Raindrops Keep Fallin' On My Head", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "86a666f3-cf91-9d37-56ec-1791876f2ca9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Raindrops Keep Fallin On My Head - B. J. Thomas.mp4", + "title": "Raindrops Keep Fallin On My Head" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "Down On The Corner/Fortunate Son", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf2d60c0-ba11-df85-7564-69f50bdf6f43", + "path": "z://MP4\\KaraokeOnVEVO\\Creedence Clearwater Revival - Down On The CornerFortunate Son.mp4", + "title": "Down On The Corner/Fortunate Son" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steam", + "playlist_title": "Na Na Hey Hey Kiss Him Goodbye", + "found_song": { + "artist": "Steam", + "disabled": false, + "favorite": false, + "guid": "5cae7a39-3655-1ef1-436c-de3ad5bf618b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Na Na Hey Hey (Kiss Him Goodbye) - Steam.mp4", + "title": "Na Na Hey Hey (Kiss Him Goodbye)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Neil Diamond", + "playlist_title": "Holly Holy", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "131a14a5-b9ef-5e2a-3424-c1e23dce75bb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Holly Holy - Neil Diamond.mp4", + "title": "Holly Holy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a139200a-f361-7109-4da7-051157a044e3", + "path": "z://MP4\\Sing King Karaoke\\Jackson 5 - I Want You Back.mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Whole Lotta Love", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "26f513b0-1713-2560-43d2-05b78afc7b0e", + "path": "z://CDG\\Various\\Led Zeppelin - Whole Lotta Love.mp3", + "title": "Whole Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Three Dog Night", + "playlist_title": "Eli's Coming", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d82dba66-3028-89de-e88c-48f9e6f1db7a", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Elis Coming.mp4", + "title": "Eli's Coming" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Yester-Me, Yester-You, Yesterday", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "bc0d66f9-d7d5-9130-bce2-12b7b92a127f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yester-Me, Yester-You, Yesterday - Stevie Wonder.mp4", + "title": "Yester-Me, Yester-You, Yesterday" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Shocking Blue", + "playlist_title": "Venus", + "found_song": { + "artist": "The Shocking Blue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b4ddae9-4c55-41e0-f031-406b12763b3a", + "path": "z://MP4\\KaraokeOnVEVO\\The Shocking Blue - Venus.mp4", + "title": "Venus" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tommy Roe", + "playlist_title": "Jam Up Jelly Tight", + "found_song": { + "artist": "Tommy Roe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f22dd1d7-0805-3993-d130-bde5f9e14ef9", + "path": "z://MP4\\KaraokeOnVEVO\\Tommy Roe - Jam Up Jelly Tight.mp4", + "title": "Jam Up Jelly Tight" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "The 5th Dimension", + "playlist_title": "Wedding Bell Blues", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b86e5c93-9840-148e-70ba-c19c9e2aad54", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - Wedding Bell Blues.mp4", + "title": "Wedding Bell Blues" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Vanity Fare", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Vanity Fare", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0824c73-abe4-aa62-5fb2-d89ef538d97f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Vanity Fare - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jimmy Cliff", + "playlist_title": "Wonderful World, Beautiful People", + "found_song": { + "artist": "Jimmy Cliff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "895339da-36b1-a6ca-ec28-2f1b8e6b951d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jimmy Cliff - Wonderful World Beautiful People.mp4", + "title": "Wonderful World Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Winter World Of Love", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "757a6e57-6122-d25d-eebc-73ab2b4019f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Winter World Of Love - Engelbert Humperdinck.mp4", + "title": "Winter World Of Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Johnny Nash", + "playlist_title": "Cupid", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "a780f5bc-54e1-5635-aa0c-1f0b7e0f176c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF087\\Johnny Nash - Cupid - SF087 - 04.mp3", + "title": "Cupid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tom Jones", + "playlist_title": "Without Love (There Is Nothing)", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a4565d1-1541-9ecc-79d3-48df2ea5d1a0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Without Love There Is Nothing.mp4", + "title": "Without Love There Is Nothing" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I'll Never Fall In Love Again", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "fd750d60-5736-62c1-b641-a60b0904246a", + "path": "z://MP4\\KaraokeOnVEVO\\Dionne Warwick - I'll Never Fall In Love Again (Karaoke).mp4", + "title": "I'll Never Fall In Love Again" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jefferson Airplane", + "playlist_title": "Volunteers", + "found_song": { + "artist": "Jefferson Airplane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b025ac5-f602-a538-124a-16fd21701119", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jefferson Airplane - Volunteers.mp4", + "title": "Volunteers" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eddie Holman", + "playlist_title": "Hey There Lonely Girl", + "found_song": { + "artist": "Eddie Holman", + "disabled": false, + "favorite": false, + "guid": "bc4f61eb-e24b-caee-e6c4-1676a351f4a0", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Holman - Hey There Lonely Girl (Karaoke).mp4", + "title": "Hey There Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Hollies", + "playlist_title": "He Ain't Heavy, He's My Brother", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f8e44a1-2cb1-6f62-f2c9-87e148be181d", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - He Aint Heavy, Hes My Brother.mp4", + "title": "He Ain't Heavy, He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "B.B. King", + "playlist_title": "The Thrill Is Gone", + "found_song": { + "artist": "B.B. King", + "disabled": false, + "favorite": false, + "guid": "55b3bbb0-1ee4-7b2b-7d61-d6c9e9bad700", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Thrill Is Gone - B.B. King.mp4", + "title": "The Thrill Is Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Diana Ross & The Supremes", + "playlist_title": "Someday We'll Be Together", + "found_song": { + "artist": "Diana Ross & The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d6c743e-06f9-e9d8-9b62-5167a2db8d41", + "path": "z://MP4\\KaraokeOnVEVO\\Diana Ross & The Supremes - Someday We'll Be Together.mp4", + "title": "Someday We'll Be Together" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Peter, Paul & Mary", + "playlist_title": "Leaving On A Jet Plane", + "found_song": { + "artist": "Peter, Paul And Mary", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de6c2511-6194-fadb-a691-4533c323344c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter, Paul And Mary - Leaving On A Jet Plane.mp4", + "title": "Leaving On A Jet Plane" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Band", + "playlist_title": "Up On Cripple Creek", + "found_song": { + "artist": "The Band", + "disabled": false, + "favorite": false, + "guid": "a05ba1a1-ecfa-3088-b424-8c0237572ebb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On Cripple Creek - The Band.mp4", + "title": "Up On Cripple Creek" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Nancy Wilson", + "playlist_title": "Can't Take My Eyes Off You", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80148322-e689-97ce-0614-cdba1973bf92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Cant Take My Eyes Off You.mp4", + "title": "Can't Take My Eyes Off You" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Joe Cocker", + "playlist_title": "She Came In Through The Bathroom Window", + "found_song": { + "artist": "Beatles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e807bb9-8213-4325-2060-3c08f72bd9ca", + "path": "z://CDG\\SBI\\SBI-04\\SB18126 - The Beatles - She Came In Through The Bathroom Window.mp3", + "title": "She Came In Through The Bathroom Window" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "The Beatles", + "title": "Come Together/Something", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "R.B. Greaves", + "title": "Take A Letter Maria", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ferrante & Teicher", + "title": "Midnight Cowboy", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Bobby Sherman", + "title": "La La La (If I Had You)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Blood, Sweat & Tears", + "title": "And When I Die", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jr. Walker & The All Stars", + "title": "These Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Gladys Knight And The Pips", + "title": "Friendship Train", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mel And Tim", + "title": "Backfield In Motion", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Billy Joe Royal", + "title": "Cherry Hill Park", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Archies", + "title": "Jingle Jangle", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Elvis Presley", + "title": "Don't Cry Daddy/Rubberneckin'", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Flying Machine", + "title": "Smile A Little Smile For Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Originals", + "title": "Baby, I'm For Real", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Dusty Springfield", + "title": "A Brand New Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "CROW", + "title": "Evil Woman Don't Play Your Games With Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Grass Roots", + "title": "Heaven Knows", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Aretha Franklin", + "title": "Eleanor Rigby", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Plastic Ono Band", + "title": "Cold Turkey", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Tommy James And The Shondells", + "title": "She", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Oliver", + "title": "Sunday Mornin'", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "James Brown", + "title": "Ain't It Funky Now (Part 1)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Friends Of Distinction", + "title": "Going In Circles", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harlow Wilcox and the Oakies", + "title": "Groovy Grubworm", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Smokey Robinson & The Miracles", + "title": "Point It Out", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Merle Haggard And The Strangers", + "title": "Okie From Muskogee", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Jerry Butler", + "title": "Don't Let Love Hang You Up", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Four Tops", + "title": "Don't Let Him Take Your Love From Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Flaming Ember", + "title": "Mind, Body and Soul", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mark Lindsay", + "title": "Arizona", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Janis Joplin", + "title": "Kozmic Blues", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "What You Gave Me", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bobbie Gentry", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jay & The Americans", + "title": "Walkin' In The Rain", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wilbert Harrison", + "title": "Let's Work Together (Part 1)", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Rick Nelson", + "title": "She Belongs To Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Clique", + "title": "I'll Hold Out My Hand", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Gloria Taylor", + "title": "You Got To Pay The Price", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Johnny Cash", + "title": "Blistered/See Ruby Fall", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Dennis Yost And The Classics IV", + "title": "Midnight", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Original Caste", + "title": "One Tin Soldier", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Cuff Links", + "title": "When Julie Comes Around", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jefferson", + "title": "Baby Take Me In Your Arms", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "James Brown", + "title": "Let A Man Come In And Do The Popcorn (Part Two)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "David Ruffin", + "title": "I'm So Glad I Fell For You", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Tokens", + "title": "She Lets Her Hair Down (Early In The Morning)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Judy Collins", + "title": "Turn! Turn! Turn!/To Everything There Is A Season", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Guess Who", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Steppenwolf", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Eydie Gorme", + "title": "Tonight I'll Say A Prayer", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Savoy Brown", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Lettermen", + "title": "Traces/Memories Medley", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Otis Leavill", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Johnnie Taylor", + "title": "Love Bones", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Turtles", + "title": "Lady-O", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Syl Johnson", + "title": "Is It Because I'm Black", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Meters", + "title": "Look-Ka Py Py", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lou Christie", + "title": "Are You Getting Any Sunshine?", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Illusion", + "title": "Together", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tommy Cash", + "title": "Six White Horses", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Sandpipers", + "title": "Come Saturday Morning", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nina Simone", + "title": "To Be Young, Gifted And Black", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ike & Tina Turner", + "title": "Bold Soul Sister", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Newbeats", + "title": "Groovin' (Out On Life)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lulu", + "title": "Oh Me Oh My (I'm A Fool For You Baby)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Intrigues", + "title": "I'm Gonna Love You", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Simon Stokes/Nighthawks", + "title": "Voodoo Woman", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Al Martino", + "title": "I Started Loving You Again", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Archie Bell & The Drells", + "title": "A World Without Music", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "100 Proof Aged in Soul", + "title": "Too Many Cooks (Spoil The Soup)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Brother Jack McDuff", + "title": "Theme From Electric Surfboard", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Betty Everett", + "title": "It's Been A Long Time", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Grand Funk Railroad", + "title": "Mr. Limousine Driver", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kool & The Gang", + "title": "The Gangs Back Again", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ruby Winters", + "title": "Guess Who", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 5, + "missing_count": 74, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1968 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Marvin Gaye", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1379215a-bca9-2a75-f243-47dd8cb408e5", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - I Heard It Through The Grapevine.mp4", + "title": "I Heard It Through The Grapevine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Stevie Wonder", + "playlist_title": "For Once In My Life", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "dffee986-76cf-fb4b-b827-6f6f5b9ec409", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Once In My Life - Stevie Wonder.mp4", + "title": "For Once In My Life" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Glen Campbell", + "playlist_title": "Wichita Lineman", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "guid": "dc7ab7c2-e8e6-684c-e8e1-4a2709bedb7f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wichita Lineman - Glen Campbell.mp4", + "title": "Wichita Lineman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnnie Taylor", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Johnnie Taylor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1d98d9c-9afb-b5e0-690e-1b718e9a2c19", + "path": "z://MP4\\KaraokeOnVEVO\\Johnnie Taylor - Whos Making Love.mp4", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Vinton", + "playlist_title": "I Love How You Love Me", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "18fae4d6-c5ef-4b27-4338-d89913792710", + "path": "z://MP4\\KaraFun Karaoke\\I Love How You Love Me - Bobby Vinton Karaoke Version KaraFun.mp4", + "title": "I Love How You Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Temptations", + "playlist_title": "Cloud Nine", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0aaaae1-bf68-9270-e4f9-d5c9da243ed6", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Cloud Nine.mp4", + "title": "Cloud Nine" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Judy Collins", + "playlist_title": "Both Sides Now", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a7fe2a4-c6eb-943e-a26a-61a19ee2f14c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Both Sides Now.mp4", + "title": "Both Sides Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Hooked On A Feeling", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "6f9233b9-e46a-71ec-ace6-f6fcd83801d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hooked On A Feeling - B. J. Thomas.mp4", + "title": "Hooked On A Feeling" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Beatles", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "f74dfc02-9406-5063-0928-33ceec3b49d8", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hey Jude (Karaoke Version).mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Bring It On Home To Me", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "615528de-9d2b-7f67-7c3c-7025228e9dfe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF073\\Eddie Floyd - Bring It On Home To Me - SF073 - 13.mp3", + "title": "Bring It On Home To Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Steppenwolf", + "playlist_title": "Magic Carpet Ride", + "found_song": { + "artist": "Steppenwolf", + "disabled": false, + "favorite": false, + "guid": "62e29a5c-828f-afa1-93ab-2684c52b0a06", + "path": "z://MP4\\Let's Sing Karaoke\\Steppenwolf - Magic Carpet Ride (Karaoke & Lyrics).mp4", + "title": "Magic Carpet Ride" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Canned Heat", + "playlist_title": "Going Up The Country", + "found_song": { + "artist": "Canned Heat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6547e253-3fab-79b7-a939-428172802db7", + "path": "z://MP4\\KaraokeOnVEVO\\Canned Heat - Going Up The Country.mp4", + "title": "Going Up The Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Dusty Springfield", + "playlist_title": "Son-Of-A Preacher Man", + "found_song": { + "artist": "Dusty Springfield", + "disabled": false, + "favorite": false, + "guid": "1b6df3e8-bff0-3e0a-6649-180bac606048", + "path": "z://MP4\\Sing King Karaoke\\Dusty Springfield - Son Of A Preacher Man (Karaoke Version).mp4", + "title": "Son Of A Preacher Man" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Leapy Lee", + "playlist_title": "Little Arrows", + "found_song": { + "artist": "Leapy Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5835e17-68f3-b34f-146d-95d2a5e18c3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leapy Lee - Little Arrows.mp4", + "title": "Little Arrows" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Those Were The Days", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "940657bb-229d-11e3-5778-732fc8bf0b0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Those Were The Days.mp4", + "title": "Those Were The Days" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Elvis Presley", + "playlist_title": "If I Can Dream", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "cad8a27d-2d4b-5c78-d5dc-9f891b1f8f9e", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - If I Can Dream (Karaoke Version).mp4", + "title": "If I Can Dream" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Tammy Wynette", + "playlist_title": "Stand By Your Man", + "found_song": { + "artist": "Tammy Wynette", + "disabled": false, + "favorite": false, + "guid": "b6033139-93a9-45f8-5304-3dfcb1cc406b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stand By Your Man - Tammy Wynette.mp4", + "title": "Stand By Your Man" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Bee Gees", + "playlist_title": "I Started A Joke", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "48717ff2-9082-e331-f7a2-dab2150c77a2", + "path": "z://CDG\\Various\\Bee Gees - I Started A Joke.mp3", + "title": "I Started A Joke" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "90eed85c-7009-5130-da40-c0b9fda6eb99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hey Jude - Wilson Pickett.mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "I Put A Spell On You", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "guid": "b1acd598-1787-72b8-33d0-b923ca74940d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Put A Spell On You - Creedence Clearwater Revival.mp4", + "title": "I Put A Spell On You" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Johnny Cash", + "playlist_title": "Daddy Sang Bass", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "07704770-9244-628a-2750-623dd3fa56e6", + "path": "z://MP4\\KaraFun Karaoke\\Daddy Sang Bass - Johnny Cash Karaoke Version KaraFun.mp4", + "title": "Daddy Sang Bass" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "The Doors", + "playlist_title": "Touch Me", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "745041b0-7e08-5b70-5714-b1fb0858ce8d", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Touch Me (Karaoke & Lyrics) (2).mp4", + "title": "Touch Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Tom Jones", + "playlist_title": "A Minute Of Your Time", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5558ef05-c2c7-1a49-e992-1a656b23026e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - A Minute Of Your Time.mp4", + "title": "A Minute Of Your Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 36, + "playlist_artist": "Aretha Franklin", + "playlist_title": "My Song", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "4d06fe9e-b729-dbb2-1b79-5a8106b41421", + "path": "z://MP4\\Stingray Karaoke\\Border Song Aretha Franklin Karaoke with Lyrics.mp4", + "title": "Border Song" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Everyday People", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "35f4fd51-891b-908f-92a8-e7a0ac1f60ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everyday People - Sly And The Family Stone.mp4", + "title": "Everyday People" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Sammy Davis Jr.", + "playlist_title": "I've Gotta Be Me", + "found_song": { + "artist": "Sammy Jr. Davis", + "disabled": false, + "favorite": false, + "guid": "98b7f229-6ba3-9666-b466-7c59cc5eb40d", + "path": "z://CDG\\Various\\Sammy Jr. Davis - I've Gotta Be Me.mp3", + "title": "I've Gotta Be Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Jay & The Americans", + "playlist_title": "This Magic Moment", + "found_song": { + "artist": "Jay and The Americans", + "disabled": false, + "favorite": false, + "guid": "7e43b5de-05af-906e-42ad-b4a46c8fd887", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Magic Moment - Jay and The Americans.mp4", + "title": "This Magic Moment" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Al Martino", + "playlist_title": "I Can't Help It (If I'm Still In Love With You)", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "ffade7e1-3ab7-0b4c-907a-31b2c4f33c15", + "path": "z://MP4\\KaraFun Karaoke\\I Can't Help It (If I'm Still in Love with You) - Linda Ronstadt Karaoke Version KaraFun.mp4", + "title": "I Can't Help It (If I'm Still in Love with You)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Diana Ross & The Supremes", + "title": "Love Child", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Classics IV Featuring Dennis Yost", + "title": "Stormy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion", + "title": "Abraham, Martin And John", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Diana Ross And The Supremes & The Temptations", + "title": "I'm Gonna Make You Love Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Derek", + "title": "Cinnamon", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Aretha Franklin", + "title": "See Saw", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Young-Holt Unlimited", + "title": "Soulful Strut", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ohio Express", + "title": "Chewy Chewy", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clarence Carter", + "title": "Too Weak To Fight", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Otis Redding", + "title": "Papa's Got A Brand New Bag", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Rene & Rene", + "title": "Lo Mucho Que Te Quiero (The More I Love You)", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sergio Mendes & Brasil '66", + "title": "Scarborough Fair", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tommy James And The Shondells", + "title": "Crimson And Clover", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Magic Lanterns", + "title": "Shame, Shame", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Vogues", + "title": "Till", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Rascals", + "title": "A Ray Of Hope", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Dionne Warwick", + "title": "Promises, Promises", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Chambers Brothers", + "title": "I Can't Turn You Loose", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Impressions", + "title": "This Is My Country", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Tymes", + "title": "People", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Booker T. & The MG's", + "title": "Hang 'Em High", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Lettermen", + "title": "Put Your Head On My Shoulder", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Deep Purple", + "title": "Kentucky Woman", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Grass Roots", + "title": "Bella Linda", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "My Favorite Things", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Royal Guardsmen", + "title": "Baby Let's Wait", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Archie Bell & The Drells", + "title": "There's Gonna Be A Showdown", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Delfonics", + "title": "Ready Or Not Here I Come (Can't Hide From Love)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Bobby Taylor & The Vancouvers", + "title": "Malinda", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dean Martin", + "title": "Not Enough Indians", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Brooklyn Bridge", + "title": "Worst That Could Happen", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Autry Inman", + "title": "Ballad Of Two Brothers", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jeannie C. Riley", + "title": "The Girl Most Likely", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Jimi Hendrix Experience", + "title": "Crosstown Traffic", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Jerry Butler", + "title": "Are You Happy", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Petula Clark", + "title": "American Boys", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Bland", + "title": "Rockin' In The Same Old Boat", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Beach Boys", + "title": "Bluebirds Over The Mountain", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The 5th Dimension", + "title": "California Soul", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "O.C. Smith", + "title": "Isn't It Lonely Together", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Vanilla Fudge", + "title": "Season Of The Witch, Pt. 1", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tyrone Davis", + "title": "Can I Change My Mind", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Eric Burdon & The Animals", + "title": "White Houses", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Barbara Acklin", + "title": "Just Ain't No Love", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Bobby Womack", + "title": "California Dreamin'", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Sam & Dave", + "title": "Soul Sister, Brown Sugar", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Unifics", + "title": "The Beginning Of My End", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bob Seger System", + "title": "Ramblin' Gamblin' Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The O'Kaysions", + "title": "Love Machine", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Nancy Sinatra", + "title": "Good Time Girl", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Paul Mauriat", + "title": "Chitty Chitty Bang Bang", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Merrilee Rush", + "title": "Reach Out", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Roger Miller", + "title": "Vance", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Johnny Nash", + "title": "You Got Soul", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Johnny Adams", + "title": "Release Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Electric Stories", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Andy Kim", + "title": "Rainbow Ride", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Moments", + "title": "Not On The Outside", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "James Brown", + "title": "Tit For Tat (Ain't No Taking Back)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "John Wesley Ryles, I", + "title": "Kay", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Archies", + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Box Tops", + "title": "Sweet Cream Ladies, Forward March", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Five Stairsteps & Cubie", + "title": "Stay Close To Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Barry Ryan", + "title": "Eloise", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Esquires", + "title": "You've Got The Power", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Dells", + "title": "Does Anybody Know I'm Here", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crystal Mansion", + "title": "The Thought Of Loving You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chambers Brothers", + "title": "Shout! - Part 1", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Goodees", + "title": "Condition Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Vee", + "title": "I'm Into Lookin' For Someone To Love Me", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "New Colony Six", + "title": "Things I'd Like To Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 5, + "missing_count": 72, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1967 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "Hello Goodbye", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "68ecdff9-9cf3-f842-27a7-6e9c4ec3427c", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hello, Goodbye (Karaoke Version).mp4", + "title": "Hello, Goodbye" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Monkees", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "e98e49cf-3fbc-a369-c962-44ff037e1a97", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Daydream Believer - The Monkees.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Fred And The Playboys", + "playlist_title": "Judy In Disguise (With Glasses)", + "found_song": { + "artist": "John Fred And The Playboys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0161bc4c-d41c-2a56-2115-ae5dbaaeb2db", + "path": "z://MP4\\KaraokeOnVEVO\\John Fred And The Playboys - Judy In Disguise (With Glasses).mp4", + "title": "Judy In Disguise (With Glasses)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Chain Of Fools", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "edcf4df2-7421-a4a7-9b8d-fc0f7f0edb91", + "path": "z://MP4\\KaraFun Karaoke\\Aretha Franklin - Chain Of Fools.mp4", + "title": "Chain Of Fools" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I Say A Little Prayer", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "5909f4fc-eb0d-ed00-dde2-5392fb32b3b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Say A Little Prayer - Dionne Warwick.mp4", + "title": "I Say A Little Prayer" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Box Tops", + "playlist_title": "Neon Rainbow", + "found_song": { + "artist": "The Box Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5ceddcc-178f-2005-45a7-03fbe2da23f0", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Box Tops - Neon Rainbow.mp4", + "title": "Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "The Lemon Pipers", + "playlist_title": "Green Tambourine", + "found_song": { + "artist": "The Lemon Pipers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff789855-bce5-70d3-4949-549ed61763c9", + "path": "z://MP4\\KaraokeOnVEVO\\The Lemon Pipers - Green Tambourine.mp4", + "title": "Green Tambourine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Doors", + "playlist_title": "Love Me Two Times", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "b077fc3e-79a9-3146-6f3e-b0b38e75b6b3", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Love Me Two Times (Karaoke & Lyrics) (2).mp4", + "title": "Love Me Two Times" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Lulu", + "playlist_title": "To Sir With Love", + "found_song": { + "artist": "Lulu", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db5f4d3f-9c35-6d72-5bf2-c2cd7a25cca8", + "path": "z://MP4\\KaraokeOnVEVO\\Lulu - To Sir With Love.mp4", + "title": "To Sir With Love" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Etta James", + "playlist_title": "Tell Mama", + "found_song": { + "artist": "Etta James", + "disabled": false, + "favorite": false, + "guid": "edb8bd44-334f-4174-a020-27fe1555a303", + "path": "z://MP4\\Let's Sing Karaoke\\James, Etta - Tell Mama (Karaoke & Lyrics).mp4", + "title": "Tell Mama" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Dean Martin", + "playlist_title": "In The Misty Moonlight", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "024e69f2-5eac-d437-efa4-61dbea34fa20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In The Misty Moonlight - Dean Martin.mp4", + "title": "In The Misty Moonlight" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Small Faces", + "playlist_title": "Itchycoo Park", + "found_song": { + "artist": "Small Faces", + "disabled": false, + "favorite": false, + "guid": "d5b35794-dfad-778f-f822-103534173170", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Itchycoo Park - Small Faces.mp4", + "title": "Itchycoo Park" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Am I That Easy To Forget", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cfbe025a-ccde-43ad-1f30-00db4684720a", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - Am I That Easy To Forget.mp4", + "title": "Am I That Easy To Forget" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Everybody Knows", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d242bdd2-3c07-cda3-fd34-e353fe968eea", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dave Clark Five - Everybody Knows.mp4", + "title": "Everybody Knows" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Beach Boys", + "playlist_title": "Darlin'", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48bf516c-f3d7-775f-79b9-bda40882e116", + "path": "z://MP4\\KaraokeOnVEVO\\The Beach Boys - Darlin'.mp4", + "title": "Darlin'" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "The Foundations", + "playlist_title": "Baby, Now That I've Found You", + "found_song": { + "artist": "The Foundations", + "disabled": false, + "favorite": false, + "guid": "ce53ad2d-1584-5b4b-71e6-eae84efc8c68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby, Now That I ve Found You - The Foundations.mp4", + "title": "Baby, Now That I ve Found You" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Henson Cargill", + "playlist_title": "Skip A Rope", + "found_song": { + "artist": "Henson Cargill", + "disabled": false, + "favorite": false, + "guid": "f99a5dd6-acb2-6977-ed89-ab8bc0e29cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Skip A Rope - Henson Cargill.mp4", + "title": "Skip A Rope" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Classics IV", + "playlist_title": "Spooky", + "found_song": { + "artist": "Classics IV", + "disabled": false, + "favorite": false, + "guid": "0123fded-b088-33f3-987d-4279b1b5e651", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spooky - Classics IV.mp4", + "title": "Spooky" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Beatles", + "playlist_title": "I Am The Walrus", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "bfe8f8f0-1931-6649-3e11-273ee6e0a576", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am The Walrus - The Beatles.mp4", + "title": "I Am The Walrus" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Rolling Stones", + "playlist_title": "She's A Rainbow", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88e63a82-800a-9354-294e-cdc04a6e7d9f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rolling Stones - Shes A Rainbow.mp4", + "title": "She's A Rainbow" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Tom Jones", + "playlist_title": "I'm Coming Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64178efe-a2ee-152e-8cff-438b8d3bc2d7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Im Coming Home.mp4", + "title": "I'm Coming Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "72cb1730-ffa3-efef-83d0-2e25b3b4ddcf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Heard It Through The Grapevine - Gladys Knight & The Pips.mp4", + "title": "I Heard It Through The Grapevine" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Jimi Hendrix", + "playlist_title": "Foxey Lady", + "found_song": { + "artist": "Jimi Hendrix", + "disabled": false, + "favorite": false, + "guid": "c04ad96a-14fb-e866-4279-b17855daa346", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Foxy Lady - Jimi Hendrix.mp4", + "title": "Foxy Lady" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Smokey Robinson & The Miracles", + "title": "I Second That Emotion", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "The Union Gap Featuring Gary Puckett", + "title": "Woman, Woman", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The American Breed", + "title": "Bend Me, Shape Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Fantastic Johnny C", + "title": "Boogaloo Down Broadway", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Joe Tex", + "title": "Skinny Legs And All", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Martha Reeves & The Vandellas", + "title": "Honey Chile", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cher", + "title": "You Better Sit Down Kids", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Strawberry Alarm Clock", + "title": "Incense And Peppermints", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Cowsills", + "title": "The Rain, The Park & Other Things", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Johnny Rivers", + "title": "Summer Rain", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Rose Garden", + "title": "Next Plane To London", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "If I Could Build My Whole World Around You", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Stone Poneys Featuring Linda Ronstadt", + "title": "Different Drum", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Turtles", + "title": "She's My Girl", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Diana Ross & The Supremes", + "title": "In And Out Of Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Esquires", + "title": "And Get Away", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Donovan", + "title": "Wear Your Love Like Heaven", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Young Rascals", + "title": "It's Wonderful", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Bee Gees", + "title": "(The Lights Went Out In) Massachusetts", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jay And The Techniques", + "title": "Keep The Ball Rollin'", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Buckinghams", + "title": "Susan", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jr. Walker & The All Stars", + "title": "Come See About Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Petula Clark", + "title": "The Other Man's Grass Is Always Greener", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Eric Burdon & The Animals", + "title": "Monterey", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Glen Campbell", + "title": "By The Time I Get To Phoenix", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brenton Wood", + "title": "Baby You Got It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Too Much Of Nothing", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Ed Ames", + "title": "Who Will Answer?", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "James Brown And The Famous Flames", + "title": "I Can't Stand Myself (When You Touch Me)", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jackie Wilson", + "title": "Since You Showed Me How To Be Happy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Sandpebbles", + "title": "Love Power", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Percy Sledge", + "title": "Cover Me", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Wes Montgomery", + "title": "Windy", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Wilson Pickett", + "title": "I'm In Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Lulu", + "title": "Best Of Both Worlds", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Lettermen", + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Dusty Springfield", + "title": "What's It Gonna Be", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Hollies", + "title": "Dear Eloise", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Marvelettes", + "title": "My Baby Must Be A Magician", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "The Mamas & The Papas", + "title": "Dancing Bear", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Kenny O'Dell", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Peaches & Herb", + "title": "Two Little Kids", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bobby Vee And The Strangers", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Billy Vera & Judy Clay", + "title": "Storybook Children", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Sonny & Cher", + "title": "Good Combination", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jefferson Airplane", + "title": "Watch Her Ride", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Human Beinz", + "title": "Nobody But Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Soul Survivors", + "title": "Explosion (In Your Soul)", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Dells", + "title": "O-O, I Love You", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The O'Jays", + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Vikki Carr", + "title": "The Lesson", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Bill Cosby", + "title": "Hooray For The Salvation Army Band", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Tommy Boyce & Bobby Hart", + "title": "I Wonder What She's Doing Tonite", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Al Greene & The Soul Mate's", + "title": "Back Up Train", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hugh Masekela", + "title": "Up-Up And Away", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Harpers Bizarre", + "title": "Chattanooga Choo Choo", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Frankie Valli", + "title": "To Give (The Reason I Live)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Strawberry Alarm Clock", + "title": "Tomorrow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Carla Thomas", + "title": "Pick Up The Pieces", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bobby Vinton", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jerry Butler", + "title": "Lost", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Al Martino", + "title": "A Voice In The Choir", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "King Curtis & The Kingpins", + "title": "I Was Made To Love Her", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Ronnie Dove", + "title": "Dancin' Out Of My Heart", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bill Wyman", + "title": "In Another Land", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "5 Stairsteps and Cubie", + "title": "Something's Missing", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Bruce Channel", + "title": "Mr. Bus Driver", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Billy Stewart", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Music Makers", + "title": "United (Part 1)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Leon Haywood", + "title": "Mellow Moonlight", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Aretha Franklin", + "title": "Mockingbird", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Barbara Mason", + "title": "Oh, How It Hurts", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Epic Splendor", + "title": "A Little Rain Must Fall", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Manhattans", + "title": "I Call It Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Laura Lee", + "title": "Up Tight, Good Man", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Impressions", + "title": "We're A Winner", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Fireballs", + "title": "Bottle Of Wine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 2, + "missing_count": 77, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1966 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Monkees", + "playlist_title": "I'm A Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "cacc68b9-fe9d-eac6-decd-8f8131b0b847", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m A Believer - The Monkees.mp4", + "title": "I m A Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Frank Sinatra", + "playlist_title": "That's Life", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "2ba8364b-c362-1a88-5bb4-670131d1143a", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - That's Life (Karaoke Version).mp4", + "title": "That's Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nancy Sinatra", + "playlist_title": "Sugar Town", + "found_song": { + "artist": "Nancy Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d4147d0-124a-9949-69a1-8cfea5344c5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nancy Sinatra - Sugar Town.mp4", + "title": "Sugar Town" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donovan", + "playlist_title": "Mellow Yellow", + "found_song": { + "artist": "Donovan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc35976-4ce8-dc04-dc17-669510850308", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donovan - Mellow Yellow.mp4", + "title": "Mellow Yellow" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aaron Neville", + "playlist_title": "Tell It Like It Is", + "found_song": { + "artist": "Aaron Neville", + "disabled": false, + "favorite": false, + "guid": "f6af5295-6e25-6661-2941-a0c26a394069", + "path": "z://MP4\\Let's Sing Karaoke\\Neville, Aaron - Tell It Like It Is (Karaoke & Lyrics).mp4", + "title": "Tell It Like It Is" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Temptations", + "playlist_title": "(I Know) I'm Losing You", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "929d7a96-a19c-4ee4-f6f5-41e28b5318d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I Know) I m Losing You - The Temptations.mp4", + "title": "(I Know) I m Losing You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stevie Wonder", + "playlist_title": "A Place In The Sun", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "b4826cb8-347e-35b2-521e-f1cc4b0d7c22", + "path": "z://CDG\\Various\\Stevie Wonder - A Place In The Sun.mp3", + "title": "A Place In The Sun" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Beach Boys", + "playlist_title": "Good Vibrations", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "06c1ba2a-c832-9d84-1abf-383bea110a8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Good Vibrations - The Beach Boys.mp4", + "title": "Good Vibrations" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Supremes", + "playlist_title": "You Keep Me Hangin' On", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be114f50-883f-1d61-30bd-437904b3427f", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - You Keep Me Hangin On.mp4", + "title": "You Keep Me Hangin' On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Four Tops", + "playlist_title": "Standing In The Shadows Of Love", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef858151-6b97-4101-4bf8-010ba3d57d22", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Standing In The Shadows Of Love.mp4", + "title": "Standing In The Shadows Of Love" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Mustang Sally", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "ff41754b-9d7b-8e9b-8dc9-623ee581d79e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mustang Sally - Wilson Pickett.mp4", + "title": "Mustang Sally" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Monkees", + "playlist_title": "(I'm Not Your) Steppin' Stone", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "2cc54713-3e7e-0a75-274c-2ea0dce8dd09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I m Not Your) Steppin Stone - The Monkees.mp4", + "title": "(I m Not Your) Steppin Stone" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Otis Redding", + "playlist_title": "Try A Little Tenderness", + "found_song": { + "artist": "Otis Redding", + "disabled": false, + "favorite": false, + "guid": "55dcc440-8fa0-a2e3-f46c-f78b2d98efc5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try A Little Tenderness - Otis Redding.mp4", + "title": "Try A Little Tenderness" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Seekers", + "playlist_title": "Georgy Girl", + "found_song": { + "artist": "The Seekers", + "disabled": false, + "favorite": false, + "guid": "54655cb6-0b56-a203-db30-33cf88d3d4d7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Georgy Girl - The Seekers.mp4", + "title": "Georgy Girl" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Stop Stop Stop", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1377fd4-5acc-dc8a-5c8b-576988ee3d0c", + "path": "z://MP4\\KaraokeOnVEVO\\The Hollies - Stop Stop Stop.mp4", + "title": "Stop Stop Stop" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Knock On Wood", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "3319eaa4-820e-cbce-86b3-c15001a05db2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Knock On Wood - Eddie Floyd.mp4", + "title": "Knock On Wood" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Roy Orbison", + "playlist_title": "Communication Breakdown", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d2cbcd2-2a17-134c-0613-ea84f430ae2b", + "path": "z://MP4\\KaraokeOnVEVO\\Roy Orbison - Communication Breakdown.mp4", + "title": "Communication Breakdown" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Tom Jones", + "playlist_title": "Green, Green Grass Of Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "663614e2-efcd-ad58-3d07-dc1272a9886e", + "path": "z://MP4\\Sing King Karaoke\\Tom Jones - Green Green Grass Of Home (Karaoke Version).mp4", + "title": "Green Green Grass Of Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Gene Pitney", + "playlist_title": "Just One Smile", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9137dc20-85e1-880a-89a8-8a8729f399ff", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Just One Smile.mp4", + "title": "Just One Smile" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Buckinghams", + "playlist_title": "Kind Of A Drag", + "found_song": { + "artist": "The Buckinghams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79487683-b8ca-eaae-aab6-8ed36aac869a", + "path": "z://MP4\\VocalStarKaraoke\\The Buckinghams - Kind Of A Drag.mp4", + "title": "Kind Of A Drag" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "The Spencer Davis Group", + "playlist_title": "Gimme Some Lovin'", + "found_song": { + "artist": "The Spencer Davis Group", + "disabled": false, + "favorite": false, + "guid": "bbc253e8-6cf1-b610-7f4a-56f07d684226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gimme Some Lovin - The Spencer Davis Group.mp4", + "title": "Gimme Some Lovin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Sandy Posey", + "playlist_title": "Single Girl", + "found_song": { + "artist": "Sandy Posey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1183ba3c-777c-7b07-1062-f1076ea90242", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandy Posey - Single Girl.mp4", + "title": "Single Girl" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "A Hazy Shade Of Winter", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "guid": "db2a248d-d000-2c72-318a-d5069bf3ce5d", + "path": "z://CDG\\Various\\Simon & Garfunkel - Hazy Shade Of Winter.mp3", + "title": "Hazy Shade Of Winter" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Mamas & The Papas", + "playlist_title": "Dancing In The Street", + "found_song": { + "artist": "The Mamas And The Papas", + "disabled": false, + "favorite": false, + "guid": "e86cf1be-0fc0-93b9-6e4b-20904c813a66", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancing In The Street - The Mamas And The Papas.mp4", + "title": "Dancing In The Street" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Royal Guardsmen", + "title": "Snoopy Vs. The Red Baron", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "The New Vaudeville Band", + "title": "Winchester Cathedral", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Good Thing", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Devil With A Blue Dress On & Good Golly Miss Molly", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Music Machine", + "title": "Talk Talk", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bobby Vinton", + "title": "Coming Home Soldier", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ronnie Dove", + "title": "Cry", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Mamas & The Papas", + "title": "Words Of Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Roger Williams", + "title": "Born Free", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jackie Wilson", + "title": "Whispers (Gettin' Louder)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "? (Question Mark) & The Mysterians", + "title": "I Need Somebody", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Tell It To The Rain", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Mame", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Peter And Gordon", + "title": "Lady Godiva", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Herman's Hermits", + "title": "East West", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jimmy Ruffin", + "title": "I've Passed This Way Before", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Eric Burdon & The Animals", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Yardbirds", + "title": "Happenings Ten Years Time Ago", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Neil Diamond", + "title": "I Got The Feelin' (Oh No No)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The Lovin' Spoonful", + "title": "Nashville Cats", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Miracles", + "title": "(Come 'Round Here) I'm The One You Need", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Association", + "title": "Pandora's Golden Heebie Jeebies", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Petula Clark", + "title": "Color My World", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tommy James And The Shondells", + "title": "It's Only Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Percy Sledge", + "title": "It Tears Me Up", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Blues Magoos", + "title": "(We Ain't Got) Nothin' Yet", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Innocence", + "title": "There's Got To Be A Word!", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Senator Everett McKinley Dirksen", + "title": "Gallant Men", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bobby Goldsboro", + "title": "Blue Autumn", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Martha & The Vandellas", + "title": "I'm Ready For Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Keith", + "title": "98.6", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Terry Knight and The Pack", + "title": "I (Who Have Nothing)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Gene Chandler", + "title": "I Fooled You This Time", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Gary Lewis And The Playboys", + "title": "Where Will The Words Come From", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. West's Medicine Show and Junk Band", + "title": "The Eggplant That Ate Chicago", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Electric Prunes", + "title": "I Had Too Much To Dream (Last Night)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Critters", + "title": "Bad Misunderstanding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Happenings", + "title": "Goodnight My Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Baja Marimba Band", + "title": "Ghost Riders In The Sky", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Spyder Turner", + "title": "Stand By Me", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Joe Tex", + "title": "Papa Was Too", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lou Rawls", + "title": "You Can Bring Me All Your Heartaches", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Sam The Sham and the Pharaohs", + "title": "How Do You Catch A Girl", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Drifters", + "title": "Baby What I Mean", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Emperor's", + "title": "Karate", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Pozo Seco Singers", + "title": "Look What You've Done", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Outsiders", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bobby Darin", + "title": "The Girl That Stood Beside Me", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dean Martin", + "title": "(Open Up The Door) Let The Good Times In", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Young Holt Trio", + "title": "Wack Wack", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Baby Ray", + "title": "There's Something On Your Mind", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Youngbloods", + "title": "Grizzly Bear", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Peter And Gordon", + "title": "Knight In Rusty Armour", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Dionne Warwick", + "title": "Another Night", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Alvin Cash & The Registers", + "title": "Alvin's Boo-Ga-Loo", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Ramsey Lewis", + "title": "Day Tripper", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Damita Jo", + "title": "If You Go Away", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Artistics", + "title": "I'm Gonna Miss You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "The Gunter Kallmann Chorus", + "title": "Wish Me A Rainbow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Cyrkle", + "title": "Please Don't Ever Leave Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Sergio Mendes & Brasil '66", + "title": "Constant Rain (Chove Chuva)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Tommy Roe", + "title": "It's Now Winters Day", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Seeds", + "title": "Pushin' Too Hard", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bob Crewe Generation", + "title": "Music To Watch Girls By", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Howard Tate", + "title": "Look At Granny Run, Run", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Freddy Scott", + "title": "Are You Lonely For Me", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "J.J. Jackson", + "title": "I Dig Girls", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Sopwith Camel", + "title": "Hello Hello", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Peaches & Herb", + "title": "Let's Fall In Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Take Me For A Little While", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Boots Randolph", + "title": "The Shadow Of Your Smile", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jimmy Castor", + "title": "Hey, Leroy, Your Mama's Callin' You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Bobby Hebb", + "title": "Love Me", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Sam & Dave", + "title": "You Got Me Hummin'", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Don Ho and the Aliis", + "title": "Tiny Bubbles", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Hardtimes", + "title": "Fortune Teller", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 3, + "missing_count": 76, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1965 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Over And Over", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d566cd09-a589-e0d5-6b37-1a2073b787d5", + "path": "z://MP4\\KaraokeOnVEVO\\The Dave Clark Five - Over And Over.mp4", + "title": "Over And Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eddy Arnold", + "playlist_title": "Make The World Go Away", + "found_song": { + "artist": "Eddy Arnold", + "disabled": false, + "favorite": false, + "guid": "4cd71ff7-f05d-b153-23c8-4a032541284c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make The World Go Away - Eddy Arnold.mp4", + "title": "Make The World Go Away" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Roger Miller", + "playlist_title": "England Swings", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e81e84-3704-24c9-535f-47d879a0d831", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - England Swings.mp4", + "title": "England Swings" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "Ebb Tide", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "10206fa1-36c8-14c1-a9a2-e50312e3b888", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ebb Tide - The Righteous Brothers.mp4", + "title": "Ebb Tide" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Beatles", + "playlist_title": "We Can Work It Out", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3315f41a-ef1d-7825-539b-3be70c710782", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Can Work It Out - The Beatles.mp4", + "title": "We Can Work It Out" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Statler Brothers", + "playlist_title": "Flowers On The Wall", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "guid": "52770daf-dab7-9456-7115-cf55ac835109", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Statler Brothers, The - Flowers On The Wall.mp3", + "title": "Flowers On The Wall" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dean Martin", + "playlist_title": "I Will", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "b7ed8be5-bcfd-9014-408a-a25fa6fb0f5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will - Dean Martin.mp4", + "title": "I Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Supremes", + "playlist_title": "I Hear A Symphony", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6be089ee-0f63-7148-0027-9e8720fb2205", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - I Hear A Symphony.mp4", + "title": "I Hear A Symphony" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Lovin' Spoonful", + "playlist_title": "You Didn't Have To Be So Nice", + "found_song": { + "artist": "The Lovin' Spoonful", + "disabled": false, + "favorite": false, + "guid": "ae124cbd-3f9d-8211-13ff-00d450808096", + "path": "z://MP4\\KaraokeOnVEVO\\The Lovin' Spoonful - You Didn't Have To Be So Nice (Karaoke).mp4", + "title": "You Didn't Have To Be So Nice" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Animals", + "playlist_title": "It's My Life", + "found_song": { + "artist": "The Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dd77b27-41c6-2cb6-2a5a-4ebc12353a07", + "path": "z://MP4\\KaraokeOnVEVO\\The Animals - Its My Life.mp4", + "title": "It's My Life" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Len Barry", + "playlist_title": "1-2-3", + "found_song": { + "artist": "Len Barry", + "disabled": false, + "favorite": false, + "guid": "e295cd96-1829-3cb6-4a17-fbfd7524d47e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 1-2-3 - Len Barry.mp4", + "title": "1-2-3" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Beatles", + "playlist_title": "Day Tripper", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "895679a1-575a-f11d-49d5-ed48befa84b4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Day Tripper - The Beatles.mp4", + "title": "Day Tripper" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Al Martino", + "playlist_title": "Spanish Eyes", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "guid": "04c7ad43-d9a8-67d1-491b-77d40303579a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spanish Eyes - Al Martino.mp4", + "title": "Spanish Eyes" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Four Tops", + "playlist_title": "Something About You", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd176396-79b6-50b3-6129-c3069e15c89f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Something About You.mp4", + "title": "Something About You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Get Off Of My Cloud", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "4e85ab90-510d-6f36-7d90-16c19868a187", + "path": "z://MP4\\Stingray Karaoke\\Get Off Of My Cloud in the Style of The Rolling Stones karaoke with lyrics (no lead vocal).mp4", + "title": "Get Off Of My Cloud" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Gene Pitney", + "playlist_title": "Princess In Rags", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ad486b7-8c56-d947-022d-7ad597a0e7b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Princess In Rags.mp4", + "title": "Princess In Rags" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Fontella Bass", + "playlist_title": "Rescue Me", + "found_song": { + "artist": "Fontella Bass", + "disabled": false, + "favorite": false, + "guid": "d6cbc2bf-c39a-3c7f-ba9f-9274d87741ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rescue Me - Fontella Bass.mp4", + "title": "Rescue Me" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tom Jones", + "playlist_title": "Thunderball", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "f6278b80-4d18-2075-d00c-c49bbf945687", + "path": "z://CDG\\Various\\Tom Jones - Thunderball.mp3", + "title": "Thunderball" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Ain't That Peculiar", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "c5fd0a79-4d6b-eba6-f8aa-d64bec7a9937", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ain t That Peculiar - Marvin Gaye.mp4", + "title": "Ain t That Peculiar" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Herman's Hermits", + "playlist_title": "A Must To Avoid", + "found_song": { + "artist": "Herman's Hermits", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c4a36f4-d529-a26e-2d74-02b1b69b5f53", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hermans Hermits - A Must To Avoid.mp4", + "title": "A Must To Avoid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Look Through Any Window", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4f38ff-51f4-f1dd-16ad-71bc292d92b8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - Look Through Any Window.mp4", + "title": "Look Through Any Window" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Fortunes", + "playlist_title": "Here It Comes Again", + "found_song": { + "artist": "The Fortunes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f1624-0ce0-3421-4ffb-9383f47eb4e6", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Fortunes - Here It Comes Again.mp4", + "title": "Here It Comes Again" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Ray Charles", + "playlist_title": "Crying Time", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "75cccfe6-3924-5158-e2a2-a6b5b99a1f4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crying Time - Ray Charles.mp4", + "title": "Crying Time" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Frank Sinatra", + "playlist_title": "It Was A Very Good Year", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95cea314-b0f9-a78a-b95b-ecef1386397a", + "path": "z://MP4\\KaraokeOnVEVO\\Frank Sinatra - It Was A Very Good Year.mp4", + "title": "It Was A Very Good Year" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Petula Clark", + "playlist_title": "My Love", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "guid": "a3654096-2dbb-e649-19b2-3c2733f18020", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - My Love (Karaoke).mp4", + "title": "My Love" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "The Temptations", + "playlist_title": "Don't Look Back", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "3e13c940-787f-8b26-1fbf-28d8d4893bae", + "path": "z://MP4\\KtvEntertainment\\The Temptations - Don't Look Back Karaoke Lyrics.mp4", + "title": "Don't Look Back" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Lou Christie", + "playlist_title": "Lightnin' Strikes", + "found_song": { + "artist": "Lou Christie", + "disabled": false, + "favorite": false, + "guid": "7835cd46-adfb-7991-d248-a08f459c0101", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF093\\Lou Christie - Lightnin' Strikes - SF093 - 12.mp3", + "title": "Lightnin' Strikes" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Uptight (Everything's Alright)", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "6045a5fa-fa2f-5f47-edbc-6cc08a373821", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Uptight (Everything s Alright) - Stevie Wonder.mp4", + "title": "Uptight (Everything s Alright)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5eb0c353-d0c2-a098-2622-7fbbbbf01b92", + "path": "z://MP4\\KaraokeOnVEVO\\Simon & Garfunkel - The Sound Of Silence.mp4", + "title": "The Sound Of Silence" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Hedgehoppers Anonymous", + "playlist_title": "It's Good News Week", + "found_song": { + "artist": "Hedge Hoppers Anonymous", + "disabled": false, + "favorite": false, + "guid": "250cea0d-9b1a-60c5-9f8f-93779dc5f490", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Hedge Hoppers Anonymous - It's Good News Week - SF086 - 07.mp3", + "title": "It's Good News Week" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Second Hand Rose", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "81c74a53-7ae8-39c8-d921-5b232c6a0ad0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Second Hand Rose - SFG042 - 13.mp3", + "title": "Second Hand Rose" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Rolling Stones", + "playlist_title": "As Tears Go By", + "found_song": { + "artist": "Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "a3ca5351-ab70-996f-0f6f-8071438abbc5", + "path": "z://CDG\\Various\\Rolling Stones - As Tears Go By.mp3", + "title": "As Tears Go By" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Maxine Brown", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "The Young Rascals", + "playlist_title": "I Ain't Gonna Eat Out My Heart Anymore", + "found_song": { + "artist": "Young Rascals", + "disabled": false, + "favorite": false, + "guid": "1e8167d2-0202-d26a-4d35-f7f9ac8d3e77", + "path": "z://CDG\\Various\\Young Rascals - I Ain't Gonna Eat Out My Heart A.mp3", + "title": "I Ain't Gonna Eat Out My Heart A" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Byrds", + "title": "Turn! Turn! Turn! (To Everything There Is A Season)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "James Brown And The Famous Flames", + "title": "I Got You (I Feel Good)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Let's Hang On!", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The McCoys", + "title": "Fever", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The Shangri-Las", + "title": "I Can Never Go Home Anymore", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Wonder Who?", + "title": "Don't Think Twice", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Elvis Presley With The Jordanaires", + "title": "Puppet On A String", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Ramsey Lewis Trio", + "title": "Hang On Sloopy", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Vogues", + "title": "Five O'Clock World", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry Young", + "title": "One Has My Name (The Other Has My Heart)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jay & The Americans", + "title": "Sunday And Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Beach Boys", + "title": "The Little Girl I Once Knew", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gary Lewis And The Playboys", + "title": "She's Just My Style", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Yardbirds", + "title": "I'm A Man", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Taste Of Honey", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jackie Lee", + "title": "The Duck", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "We Five", + "title": "Let's Get Together", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Roy Head And The Traits", + "title": "Apple Of My Eye", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The T-Bones", + "title": "No Matter What Shape (Your Stomach's In)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Bobby Vinton", + "title": "Satin Pillows", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Newbeats", + "title": "Run, Baby Run (Back Into My Arms)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Impressions", + "title": "You've Been Cheatin'", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The Viscounts", + "title": "Harlem Nocturne", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Don Covay & The Goodtimers", + "title": "Seesaw", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Joe Tex", + "title": "A Sweet Woman Like You", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Connie Francis", + "title": "Jealous Heart", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ronny And The Daytonas", + "title": "Sandy", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Vic Dana", + "title": "Crystal Chandelier", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Knickerbockers", + "title": "Lies", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Billy Joe Royal", + "title": "I've Got To Be Somebody", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ronnie Dove", + "title": "Kiss Away", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Noel Harrison", + "title": "A Young Girl", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Kinks", + "title": "A Well Respected Man", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Dionne Warwick", + "title": "Are You There (With Another Girl)", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Toys", + "title": "Attack", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Buck Owens and The Buckaroos", + "title": "Buckaroo", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Packers", + "title": "Hole In The Wall", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "James Brown At The Organ", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Wilson Pickett", + "title": "Don't Fight It", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Jenny Take A Ride!", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dino, Desi & Billy", + "title": "Please Don't Fight It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Bobby Goldsboro", + "title": "Broomstick Cowboy", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brook Benton", + "title": "Mother Nature, Father Time", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lou Johnson", + "title": "A Time To Love-A Time To Cry (Petite Fleur)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The C.O.D.'s", + "title": "Michael", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Patti LaBelle And The Blue Belles", + "title": "All Or Nothing", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Johnny Tillotson", + "title": "Our World", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Johnny Rivers", + "title": "Under Your Spell Again", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jack Jones", + "title": "Love Bug", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Bobby Powell", + "title": "C.C. Rider", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Mike Douglas", + "title": "The Men In My Little Girl's Life", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Johnny Thunder", + "title": "Everybody Do The Sloopy", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Zorba The Greek", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Fontella Bass", + "title": "Recovery", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Miracles", + "title": "Going To A Go-Go", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Otis Redding", + "title": "Just One More Day", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Tijuana Taxi", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The 4 Seasons", + "title": "Little Boy (In Grown Up Clothes)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Marianne Faithfull", + "title": "Go Away From My World", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Martha & The Vandellas", + "title": "Love (Makes Me Do Foolish Things)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lowell Fulsom", + "title": "Black Nights", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Beau Brummels", + "title": "Good Time Music", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Johnny Mathis", + "title": "On A Clear Day You Can See Forever", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Tony Bennett", + "title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "King Curtis", + "title": "Spanish Harlem", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 6, + "missing_count": 66, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1964 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "I Feel Fine", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "89fd3aeb-1dcf-8372-3855-d9214de52084", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel Fine - The Beatles.mp4", + "title": "I Feel Fine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Supremes", + "playlist_title": "Come See About Me", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "f79cca65-cec1-0a42-8901-9dba9b0a68e9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come See About Me - The Supremes.mp4", + "title": "Come See About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Beatles", + "playlist_title": "She's A Woman", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a4adf696-6af2-c414-4204-fdcdd965c96c", + "path": "z://MP4\\singsongsmusic\\She s a Woman - Karaoke HD (In the style of The Beatles).mp4", + "title": "She s a Woman" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Zombies", + "playlist_title": "She's Not There", + "found_song": { + "artist": "The Zombies", + "disabled": false, + "favorite": false, + "guid": "cdbebaa6-7da7-c596-5556-4c2f66beffe3", + "path": "z://MP4\\Stingray Karaoke\\She's Not There in the Style of The Zombies karaoke video with lyrics (no lead vocal).mp4", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Goin' Out Of My Head", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "guid": "fd8b5c2f-ce43-20b3-f002-0cb074b7bc8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goin Out Of My Head - Little Anthony And The Imperials.mp4", + "title": "Goin Out Of My Head" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Time Is On My Side", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "06234893-f61e-f474-f00d-3b0d61d7bf04", + "path": "z://MP4\\KaraokeOnVEVO\\The Rolling Stones - Time Is On My Side (Karaoke).mp4", + "title": "Time Is On My Side" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Searchers", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Searchers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b98316e4-ab0d-2c03-c28b-6c342fc22dfd", + "path": "z://MP4\\KaraokeOnVEVO\\The Searchers - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Manfred Mann", + "playlist_title": "Sha La La", + "found_song": { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "guid": "b04fe4e7-8f7b-9e22-e38f-35cbaf97f037", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF084\\Manfred Mann - Sha La La - SF084 - 05.mp3", + "title": "Sha La La" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Pitney", + "playlist_title": "I'm Gonna Be Strong", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "guid": "6275424c-e373-cd6d-c6cd-6b691e342682", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF094\\Gene Pitney - I'm Gonna Be Strong - SF094 - 15.mp3", + "title": "I'm Gonna Be Strong" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Herman's Hermits", + "playlist_title": "I'm Into Something Good", + "found_song": { + "artist": "Herman s Hermits", + "disabled": false, + "favorite": false, + "guid": "5d3e3342-cf28-9319-9d89-398cc6cfb589", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Into Something Good - Herman s Hermits.mp4", + "title": "I m Into Something Good" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Kinks", + "playlist_title": "You Really Got Me", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a77c2508-2512-8a1e-acb6-0c13cc5fdf7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Kinks - You Really Got Me.mp4", + "title": "You Really Got Me" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Shangri-Las", + "playlist_title": "Leader Of The Pack", + "found_song": { + "artist": "The Shangri-Las", + "disabled": false, + "favorite": false, + "guid": "7dfa48df-962e-16b2-80c4-6087ab266e32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Pack - The Shangri-Las.mp4", + "title": "Leader Of The Pack" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Marvin Gaye", + "playlist_title": "How Sweet It Is To Be Loved By You", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "bcf0df83-fc34-7784-7a02-6c6628021e68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD024 - Motown\\Marvin Gaye - How Sweet It Is (to Be Loved By You) - SFG024 - 04.mp3", + "title": "How Sweet It Is (to Be Loved By You)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "The Supremes", + "playlist_title": "Baby Love", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28251b11-502e-caf1-1146-1385733fa34b", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - Baby Love.mp4", + "title": "Baby Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "You've Lost That Lovin' Feelin'", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "1f9ebc24-e99d-a016-4175-5126465760dc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF046\\The Righteous Brothers - You've Lost That Lovin' Feelin' - SF046 - 10.mp3", + "title": "You've Lost That Lovin' Feelin'" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Ronettes", + "playlist_title": "Walking In The Rain", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "71d164eb-2448-96c2-d2b6-fd7810481268", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In The Rain - The Ronettes.mp4", + "title": "Walking In The Rain" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Matt Monro", + "playlist_title": "Walk Away", + "found_song": { + "artist": "Matt Monro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4c2a78-a43b-b559-07dd-2be85392de21", + "path": "z://MP4\\ZoomKaraokeOfficial\\Matt Monro - Walk Away.mp4", + "title": "Walk Away" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Petula Clark", + "playlist_title": "Downtown", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff4cdcbd-d10f-3c02-fd9b-fe7480fcd8f5", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - Downtown.mp4", + "title": "Downtown" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Roger Miller", + "playlist_title": "Do-Wacka-Do", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72673677-0268-d881-a1a7-04f450544631", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - Do-Wacka-Do.mp4", + "title": "Do-Wacka-Do" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Dean Martin", + "playlist_title": "You're Nobody Till Somebody Loves You", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "f6deb0b7-27a8-df88-300f-5a103221f137", + "path": "z://MP4\\KaraFun Karaoke\\Dean Martin - You're Nobody Till Somebody Loves You.mp4", + "title": "You're Nobody Till Somebody Loves You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Shirley Ellis", + "playlist_title": "The Name Game", + "found_song": { + "artist": "Shirley Ellis", + "disabled": false, + "favorite": false, + "guid": "4e553279-d6f7-06be-4081-7c4688044c18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Name Game - Shirley Ellis.mp4", + "title": "The Name Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Kinks", + "playlist_title": "All Day And All Of The Night", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48ef4eac-601c-36db-f43f-f4d79506a95c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Kinks - All Day And All Of The Night.mp4", + "title": "All Day And All Of The Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Sonny James", + "playlist_title": "You're The Only World I Know", + "found_song": { + "artist": "Sonny James", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a942a35d-cdcb-b35f-df27-ac12c4f3cc48", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny James - Youre The Only World I Know.mp4", + "title": "You're The Only World I Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Bachelors", + "playlist_title": "No Arms Can Ever Hold You", + "found_song": { + "artist": "The Bachelors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c085b86-4912-81d6-c018-4ef742c71583", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Bachelors - No Arms Can Ever Hold You.mp4", + "title": "No Arms Can Ever Hold You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "The Drifters", + "playlist_title": "Saturday Night At The Movies", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b370f9f7-e13c-2a0c-97b2-e55ecd5d2a65", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Saturday Night At The Movies - The Drifters.mp4", + "title": "Saturday Night At The Movies" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Andy Williams", + "playlist_title": "Dear Heart", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f23928c-e106-8727-d916-e06373c1af3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Happy Heart.mp4", + "title": "Happy Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Gerry And The Pacemakers", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Gerry & The Pacemakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac26528e-1f6c-8021-4d3f-997f109584a4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gerry & The Pacemakers - Ill Be There.mp4", + "title": "I'll Be There" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Sandie Shaw", + "playlist_title": "(There's) Always Something There To Remind Me", + "found_song": { + "artist": "Sandie Shaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c39e03d2-7e94-6768-510e-4d1c4eb5f471", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandie Shaw - (Theres) Always Something There To Remind Me.mp4", + "title": "(There's) Always Something There To Remind Me" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Bobby Vinton", + "title": "Mr. Lonely", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lorne Greene", + "title": "Ringo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The Beach Boys", + "title": "Dance, Dance, Dance", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Larks", + "title": "The Jerk", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Impressions", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Julie Rogers", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Johnny Rivers", + "title": "Mountain Of Love", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Dave Clark Five", + "title": "Any Way You Want It", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Robert Goulet", + "title": "My Love, Forgive Me (Amore, Scusami)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Del Shannon", + "title": "Keep Searchin' (We'll Follow The Sun)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chad & Jeremy", + "title": "Willow Weep For Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Maxine Brown", + "title": "Oh No Not My Baby", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Marianne Faithfull", + "title": "As Tears Go By", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Detergents", + "title": "Leader Of The Laundromat", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Marvelettes", + "title": "Too Many Fish In The Sea", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Tillotson", + "title": "She Understands Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dick and DeeDee", + "title": "Thou Shalt Not Steal", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Ray Charles Singers", + "title": "One More Time", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Ronnie Dove", + "title": "Right Or Wrong", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Jack Jones", + "title": "Dear Heart", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Martha & The Vandellas", + "title": "Wild One", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobbi Martin", + "title": "Don't Forget I Still Love You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Gestures", + "title": "Run, Run, Run", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Betty Everett & Jerry Butler", + "title": "Smile", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The You Know Who Group!", + "title": "Roses Are Red My Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Chuck Jackson", + "title": "Since I Don't Have You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene Chandler", + "title": "What Now", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Animals", + "title": "Boom Boom", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Elvis Presley With The Jordanaires", + "title": "Ask Me", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "The Waikikis", + "title": "Hawaii Tattoo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Candy & The Kisses", + "title": "The 81", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Chuck Berry", + "title": "Promised Land", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Four Tops", + "title": "Without The One You Love (Life's Not Worth While)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Hullaballoos", + "title": "I'm Gonna Love You Too", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Joe Tex", + "title": "Hold What You've Got", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Gale Garnett", + "title": "Lovin' Place", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Ray Charles", + "title": "Makin' Whoopee", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ben E. King", + "title": "Seven Letters", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Major Lance", + "title": "Sometimes I Wonder", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Miracles", + "title": "Come On Do The Jerk", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Betty Everett", + "title": "Getting Mighty Crowded", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Solomon Burke", + "title": "The Price", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Honeycombs", + "title": "I Can't Stop", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Brook Benton", + "title": "Do It Right", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Irma Thomas", + "title": "He's My Guy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Walter Jackson", + "title": "It's All Over", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Jo Ann & Troy", + "title": "I Found A Love Oh What A Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Harold Betters", + "title": "Do Anything You Wanna (Part I)", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jerry Vale", + "title": "Have You Looked Into Your Heart", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Frank Sinatra", + "title": "Somewhere In Your Heart", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Contours", + "title": "Can You Jerk Like Me", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Henry Mancini And His Orchestra", + "title": "Dear Heart", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Dean Martin", + "title": "You'll Always Be The One I Love", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Travis Wammack", + "title": "Scratchy", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Jay & The Americans", + "title": "Let's Lock The Door (And Throw Away The Key)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Danny Boy", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Shangri-Las", + "title": "Give Him A Great Big Kiss", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Dolphins", + "title": "Hey-Da-Da-Dow", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ronny And The Daytonas", + "title": "Bucket T", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lee Morgan", + "title": "The Sidewinder, Part 1", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Willie Mitchell", + "title": "Percolatin'", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Dixie Cups", + "title": "Little Bell", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Bobby Vee", + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Lesley Gore", + "title": "Look Of Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Hondells", + "title": "My Buddy Seat", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Shangri-Las", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Hank Williams Jr.", + "title": "Endless Sleep", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "James Brown And The Famous Flames", + "title": "Have Mercy Baby", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Radiants", + "title": "Voice Your Choice", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Don Covay", + "title": "Take This Hurt Off Me", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Shirelles", + "title": "Are You Still My Baby", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ned Miller", + "title": "Do What You Do Do Well", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 4, + "missing_count": 72, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1963 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bobby Vinton", + "playlist_title": "There! I've Said It Again", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc6cf99f-8a91-757c-3051-14d96dc8d569", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Vinton - There! Ive Said It Again.mp4", + "title": "There! I've Said It Again" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kingsmen", + "playlist_title": "Louie Louie", + "found_song": { + "artist": "The Kingsmen", + "disabled": false, + "favorite": false, + "guid": "0b6fae33-371f-fd15-c16c-9443072c1d09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Louie, Louie - The Kingsmen.mp4", + "title": "Louie, Louie" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lenny Welch", + "playlist_title": "Since I Fell For You", + "found_song": { + "artist": "Lenny Welch", + "disabled": false, + "favorite": false, + "guid": "9c818105-5150-19c2-194f-de9a860977dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since I Fell For You - Lenny Welch.mp4", + "title": "Since I Fell For You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Forget Him", + "found_song": { + "artist": "Bobby Rydell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2048f294-2144-59bd-9227-697b995f6267", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Rydell - Forget Him.mp4", + "title": "Forget Him" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beach Boys", + "playlist_title": "Be True To Your School", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "031794d6-beef-6d7c-d200-02eb6acff053", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be True To Your School - The Beach Boys.mp4", + "title": "Be True To Your School" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jack Jones", + "playlist_title": "Wives And Lovers", + "found_song": { + "artist": "Jack Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21a76bf0-07bf-1030-45fa-9ce5587589ab", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 819\\Jack Jones - Wives And Lovers - SFMW 819 -04.mp3", + "title": "Wives And Lovers" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Roy Orbison", + "playlist_title": "Pretty Paper", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "guid": "f93ec318-6868-5348-88ac-33ad1c29ab06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Paper - Roy Orbison.mp4", + "title": "Pretty Paper" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Brenda Lee", + "playlist_title": "As Usual", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac88fde5-cd5a-8e3f-765e-ccb02ce7a403", + "path": "z://MP4\\ZoomKaraokeOfficial\\Brenda Lee - As Usual.mp4", + "title": "As Usual" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "The Trashmen", + "playlist_title": "Surfin' Bird", + "found_song": { + "artist": "The Trashmen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52f5f3de-3692-968d-145a-70aa41a18906", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Trashmen - Surfin Bird.mp4", + "title": "Surfin' Bird" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Can I Get A Witness", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "985d8086-fba4-f301-5f01-6446d498aacd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marvin Gaye - Can I Get A Witness.mp4", + "title": "Can I Get A Witness" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The Beach Boys", + "playlist_title": "In My Room", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "31b9b09b-a04c-f07f-e532-bef647bca066", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Room - The Beach Boys.mp4", + "title": "In My Room" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Rufus Thomas", + "playlist_title": "Walking The Dog", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "guid": "602409e0-e1a4-eb03-4ddb-f4a141e5bcc8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking The Dog - Rufus Thomas.mp4", + "title": "Walking The Dog" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "The Impressions", + "playlist_title": "It's All Right", + "found_song": { + "artist": "The Impressions", + "disabled": false, + "favorite": false, + "guid": "46baa50a-c6e1-5977-f71f-150e82b7b85e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All Right - The Impressions.mp4", + "title": "It s All Right" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Lesley Gore", + "playlist_title": "You Don't Own Me", + "found_song": { + "artist": "Lesley Gore", + "disabled": false, + "favorite": false, + "guid": "c641afd1-d47f-e41b-6841-1e36744e4b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Don t Own Me - Lesley Gore.mp4", + "title": "You Don t Own Me" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Marty Robbins", + "playlist_title": "Begging To You", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c56c681-27de-627e-8b46-b674cf054345", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Begging To You.mp4", + "title": "Begging To You" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Mary Wells", + "playlist_title": "What's Easy For Two Is So Hard For One", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9aaef371-7e1d-1955-8498-c5131176cc16", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Wells - Whats Easy For Two Is So Hard For One.mp4", + "title": "What's Easy For Two Is So Hard For One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The Caravelles", + "playlist_title": "You Don't Have To Be A Baby To Cry", + "found_song": { + "artist": "Caravelles", + "disabled": false, + "favorite": false, + "guid": "deaafc64-34be-1e63-9615-2c12cb836ee9", + "path": "z://MP4\\KaraokeOnVEVO\\Caravelles - You Don't Have To Be A Baby To Cry (Karaoke).mp4", + "title": "You Don't Have To Be A Baby To Cry" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Dale & Grace", + "playlist_title": "I'm Leaving It Up To You", + "found_song": { + "artist": "Dale & Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbea1ee0-0192-179c-7b56-7a083ca3fe2f", + "path": "z://MP4\\KaraokeOnVEVO\\Dale & Grace - Im Leaving It Up To You.mp4", + "title": "I'm Leaving It Up To You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Bad Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Ronettes", + "playlist_title": "Baby, I Love You", + "found_song": { + "artist": "The Ramones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c750c78-ad93-5ac2-4880-84831274b4a8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Ramones - Baby I Love You.mp4", + "title": "Baby I Love You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Singing Nun (Soeur Sourire)", + "title": "Dominique", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion Di Muci", + "title": "Drip Drop", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The Murmaids", + "title": "Popsicles And Icicles", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Johnny Tillotson", + "title": "Talk Back Trembling Lips", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Joey Powers", + "title": "Midnight Mary", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martha & The Vandellas", + "title": "Quicksand", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Shirley Ellis", + "title": "The Nitty Gritty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chubby Checker", + "title": "Loddy Lo", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tommy Roe", + "title": "Everybody", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Secrets", + "title": "The Boy Next Door", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Duprees featuring Joey Vann", + "title": "Have You Heard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jan & Dean", + "title": "Drag City", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Trini Lopez", + "title": "Kansas City", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Robin Ward", + "title": "Wonderful Summer", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Lesley Gore", + "title": "She's A Fool", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Dick and DeeDee", + "title": "Turn Around", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Garnet Mimms & The Enchanters", + "title": "For Your Precious Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ray Charles", + "title": "That Lucky Old Sun", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sam Cooke", + "title": "Little Red Rooster", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Stewball", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Garnet Mimms & The Enchanters", + "title": "Baby Don't You Weep", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Nino Tempo & April Stevens", + "title": "Whispering", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Marketts", + "title": "Out Of Limits", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Jerry Butler", + "title": "Need To Belong", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Supremes", + "title": "When The Lovelight Starts Shining Through His Eyes", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "The Chiffons", + "title": "I Have A Boyfriend", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Tymes", + "title": "Somewhere", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Al Martino", + "title": "Living A Lie", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Gene Pitney", + "title": "Twenty Four Hours From Tulsa", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Miracles", + "title": "I Gotta Dance To Keep From Crying", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Rip Chords", + "title": "Hey Little Cobra", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Sugar Shack", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Dean And Jean", + "title": "Tra La La La Suzy", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Sunny & The Sunliners", + "title": "Rags To Riches", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Cookies", + "title": "Girls Grow Up Faster Than Boys", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Daisy Petal Pickin'", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Murry Kellum", + "title": "Long Tall Texan", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Dynamics", + "title": "Misery", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Chubby Checker", + "title": "Hooka Tooka", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Chad Mitchell Trio", + "title": "The Marvelous Toy", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Little Peggy March", + "title": "The Impossible Happened", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Marvelettes", + "title": "As Long As I Know He's Mine", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Rick Nelson", + "title": "Today's Teardrops", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Cliff Richard", + "title": "It's All In The Game", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Rick Nelson", + "title": "For You", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Kingston Trio", + "title": "Ally Ally Oxen Free", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Dionne Warwick", + "title": "Anyone Who Had A Heart", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Henry Mancini And His Orchestra", + "title": "Charade", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bobby Darin", + "title": "Be Mad Little Girl", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Steve & Eydie", + "title": "I Can't Stop Talking About You", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Raindrops", + "title": "That Boy John", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The David Rockingham Trio", + "title": "Dawn", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ginny Arnell", + "title": "Dumb Head", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Orlons", + "title": "Bon-Doo-Wah", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Baja Marimba Band", + "title": "Comin' In The Back Door", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Tams", + "title": "What Kind Of Fool (Do You Think I Am)", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jay & The Americans", + "title": "Come Dance With Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Brooks O'Dell", + "title": "Watch Your Step", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Burl Ives", + "title": "True Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Frank Ifield", + "title": "Please", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Tony Bennett", + "title": "The Little Boy", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jimmy Velvet", + "title": "We Belong Together", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Dale Ward", + "title": "Letter From Sherry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Girlfriends", + "title": "My One And Only, Jimmy Boy", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Connie Francis", + "title": "In The Summer Of His Years", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Paul Petersen", + "title": "The Cheer Leader", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Gene Thomas", + "title": "Baby's Gone", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pixies Three", + "title": "Cold Cold Winter", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Brothers Four", + "title": "Hootenanny Saturday Night", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Johnny Mathis", + "title": "I'll Search My Heart", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Sammy Davis Jr.", + "title": "The Shelter Of Your Arms", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Paul Anka", + "title": "Did You Have A Happy Birthday?", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Tracey Dey", + "title": "Here Comes The Boy", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bob And Earl", + "title": "Harlem Shuffle", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crescents Featuring Chiyo", + "title": "Pink Dominos", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Barbara Lewis", + "title": "Snap Your Fingers", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Bobby Bland", + "title": "The Feeling Is Gone", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Cascades", + "title": "For Your Sweet Love", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Bobby Vee", + "title": "Never Love A Robin", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Lettermen", + "title": "Where Or When", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 4, + "missing_count": 80, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1962 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Chubby Checker", + "playlist_title": "Limbo Rock", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "657961a3-8890-dcd6-da75-1eac2de7d439", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Limbo Rock - Chubby Checker.mp4", + "title": "Limbo Rock" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marcie Blane", + "playlist_title": "Bobby's Girl", + "found_song": { + "artist": "Marcie Blane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6044754-541e-4eba-78c2-7a1bf6a3ccee", + "path": "z://MP4\\KaraokeOnVEVO\\Marcie Blane - Bobbys Girl.mp4", + "title": "Bobby's Girl" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Steve Lawrence", + "playlist_title": "Go Away Little Girl", + "found_song": { + "artist": "Steve Lawrence", + "disabled": false, + "favorite": false, + "guid": "82e4d18f-2c68-7ac3-0a11-3410ed42c8dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Go Away Little Girl - Steve Lawrence.mp4", + "title": "Go Away Little Girl" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Ray Charles", + "playlist_title": "You Are My Sunshine", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "8650b55d-743d-d12b-2b88-0446f2856bb8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are My Sunshine - Ray Charles.mp4", + "title": "You Are My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Exciters", + "playlist_title": "Tell Him", + "found_song": { + "artist": "The Exciters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ecd6b3e-d256-bafd-3bec-004b9301413e", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Exciters - Tell Him.mp4", + "title": "Tell Him" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Cookies", + "playlist_title": "Chains", + "found_song": { + "artist": "The Cookies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c17998c4-e117-fd12-fdca-8e3c14dafb28", + "path": "z://MP4\\KaraokeOnVEVO\\The Cookies - Chains.mp4", + "title": "Chains" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mary Wells", + "playlist_title": "Two Lovers", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "guid": "e8bcba41-605b-2648-d8da-1b277d355d93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Lovers - Mary Wells.mp4", + "title": "Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bobby Vee", + "playlist_title": "The Night Has A Thousand Eyes", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "521661ca-bdc2-692c-61c5-f41c66b2c6fd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - The Night Has A Thousand Eyes.mp4", + "title": "The Night Has A Thousand Eyes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marty Robbins", + "playlist_title": "Ruby Ann", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23188b79-c8f4-57cc-b01e-afca7a1f05d9", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Ruby Ann.mp4", + "title": "Ruby Ann" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rick Nelson", + "playlist_title": "It's Up To You", + "found_song": { + "artist": "Rick Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78672fc2-20f4-0f6e-ca18-6c9ace8ef844", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Nelson - Its Up To You.mp4", + "title": "It's Up To You" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Gene Pitney", + "playlist_title": "Half Heaven - Half Heartache", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed7fe23c-a82b-e193-ea72-8bef9f6b53bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Half Heaven Half Heartache.mp4", + "title": "Half Heaven Half Heartache" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ray Stevens", + "playlist_title": "Santa Claus Is Watching You", + "found_song": { + "artist": "Ray Stevens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e8efe24-fb9e-4e06-1e78-c4f46a451fbf", + "path": "z://MP4\\KaraokeOnVEVO\\Ray Stevens - Santa Claus Is Watching You.mp4", + "title": "Santa Claus Is Watching You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Crystals", + "playlist_title": "He's A Rebel", + "found_song": { + "artist": "The Crystals", + "disabled": false, + "favorite": false, + "guid": "f70290e3-6f18-f25d-c838-a5886d49debc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He s A Rebel - The Crystals.mp4", + "title": "He s A Rebel" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Brenda Lee", + "playlist_title": "All Alone Am I", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "13f5d8e0-712e-cff1-7e17-05a95df2b373", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Alone Am I - Brenda Lee.mp4", + "title": "All Alone Am I" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Tony Bennett", + "playlist_title": "I Left My Heart In San Francisco", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "b32c5778-a063-f85d-b585-d3be7e76e3c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Left My Heart In San Francisco - Tony Bennett.mp4", + "title": "I Left My Heart In San Francisco" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Miracles", + "playlist_title": "You've Really Got A Hold On Me", + "found_song": { + "artist": "The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb557a16-ff82-f35d-85d6-96013b86c6db", + "path": "z://MP4\\KaraokeOnVEVO\\The Miracles - Youve Really Got A Hold On Me.mp4", + "title": "You've Really Got A Hold On Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Frank Ifield", + "playlist_title": "Lovesick Blues", + "found_song": { + "artist": "Frank Ifield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65580409-9508-6bc0-bc3e-78a707fe06dc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frank Ifield - Lovesick Blues.mp4", + "title": "Lovesick Blues" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Del Shannon", + "playlist_title": "Little Town Flirt", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fac3e7b6-a410-5d7e-e227-d4e4474dd4e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Del Shannon - Little Town Flirt.mp4", + "title": "Little Town Flirt" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Ned Miller", + "playlist_title": "From A Jack To A King", + "found_song": { + "artist": "Ned Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05a86699-1ff2-e25b-c06c-2f1dbe83271b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ned Miller - From A Jack To A King.mp4", + "title": "From A Jack To A King" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "914719d3-56bd-8ffe-7d81-dd95ad11bb20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD040 - Dirty Dancing\\Frankie Valli & The Four Seasons - Big Girls Don't Cry - SFG040 - 15.mp3", + "title": "Big Girls Don't Cry" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Santa Claus Is Coming To Town", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "10de1d9a-376d-ba56-c407-243c81db0ebf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Santa Claus Is Coming To Town - The Jackson 5.mp4", + "title": "Santa Claus Is Coming To Town" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "The Drifters", + "playlist_title": "Up On The Roof", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b178f3f4-66c4-362e-cf1f-36d0199bab00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On The Roof - The Drifters.mp4", + "title": "Up On The Roof" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Ray Charles", + "playlist_title": "Your Cheating Heart", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "60dfc044-0123-e267-5fee-5668b1706c64", + "path": "z://CDG\\Various\\Ray Charles - Your Cheatin' Heart.mp3", + "title": "Your Cheatin' Heart" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Bobby Goldsboro", + "playlist_title": "Molly", + "found_song": { + "artist": "Bobby Goldsboro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f34dfa24-e736-8fa2-52d2-113d87c8c451", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Goldsboro - Honey.mp4", + "title": "Honey" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Tornadoes", + "title": "Telstar", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Elvis Presley With The Jordanaires", + "title": "Return To Sender", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Esther Phillips Little Esther", + "title": "Release Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bob B. Soxx And The Blue Jeans", + "title": "Zip-A-Dee Doo-Dah", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Brook Benton", + "title": "Hotel Happiness", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Lou Monte", + "title": "Pepino The Italian Mouse", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Little Eva", + "title": "Keep Your Hands Off My Baby", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Nat King Cole", + "title": "Dear Lonely Hearts", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "The Tijuana Brass", + "title": "The Lonely Bull (El Solo Torro)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Orlons", + "title": "Don't Hang Up", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Dion", + "title": "Love Came To Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Paul Petersen", + "title": "My Dad", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Les Cooper and the Soul Rockers", + "title": "Wiggle Wobble", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dee Dee Sharp", + "title": "Ride!", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Johnny Crawford", + "title": "Rumors", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Shirelles", + "title": "Everybody Loves A Lover", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "title": "Monsters' Holiday", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Duane Eddy and the Rebelettes", + "title": "(Dance With The) Guitar Man", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jerry Wallace", + "title": "Shutters And Boards", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Routers", + "title": "Let's Go (pony)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Mel Torme", + "title": "Comin' Home Baby", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Stan Getz/Charlie Byrd", + "title": "Desafinado", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Dickey Lee", + "title": "I Saw Linda Yesterday", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Mark Valentino", + "title": "The Push And Kick", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobby Vinton", + "title": "Let's Kiss And Make Up", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "LaVern Baker", + "title": "See See Rider", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Dionne Warwick", + "title": "Don't Make Me Over", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene McDaniels", + "title": "Spanish Lace", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Bobby Vinton", + "title": "Trouble Is My Middle Name", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Beach Boys", + "title": "Ten Little Indians", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Connie Francis", + "title": "I'm Gonna' Be Warm This Winter", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Montez", + "title": "Some Kinda Fun", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Timi Yuro", + "title": "The Love Of A Boy", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Gene Chandler", + "title": "You Threw A Lucky Punch", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Excellents", + "title": "Coney Island Baby", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Earls", + "title": "Remember Then", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gabriel And The Angels", + "title": "That's Life (That's Tough)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Johnny Thunder", + "title": "Loop De Loop", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jimmie Rodgers", + "title": "Rainbow At Midnight", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Frank Sinatra & Sammy Davis Jr.", + "title": "Me And My Shadow", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ben Colder", + "title": "Don't Go Near The Eskimos", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Kitty Kallen", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "title": "The Ballad Of Jed Clampett", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Brian Hyland", + "title": "I May Not Live To See Tomorrow", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Contours", + "title": "Shake Sherry", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Marvelettes", + "title": "Strange I Know", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Lonnie Russ", + "title": "My Wife Can't Cook", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Vince Guaraldi Trio", + "title": "Cast Your Fate To The Wind", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Barbara Lynn", + "title": "You're Gonna Need Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jimmy Dean", + "title": "Gonna Raise A Rukus Tonight", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Pastel Six", + "title": "The Cinnamon Cinder (It's A Very Nice Dance)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Sandy Stewart", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Emotions", + "title": "Echo", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Rebels", + "title": "Wild Weekend", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Floyd Cramer", + "title": "Java", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Rick Nelson", + "title": "I Need You", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Aretha Franklin", + "title": "Trouble In Mind", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Toy Dolls", + "title": "Little Tin Soldier", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Marion Worth", + "title": "Shake Me I Rattle (Squeeze Me I Cry)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Joe Harnell And His Orchestra", + "title": "Fly Me To The Moon - Bossa Nova", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Ventures", + "title": "The 2,000 Pound Bee (Part 2)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Crystals", + "title": "He's Sure The Boy I Love", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Dean Martin & Sammy Davis Jr.", + "title": "Sam's Song", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Cleftones", + "title": "Lover Come Back To Me", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Paul and Paula", + "title": "Hey Paula", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Dells", + "title": "The (Bossa Nova) Bird", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Mike Clifford", + "title": "What To Do With Laurie", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Mahalia Jackson", + "title": "Silent Night, Holy Night", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Don Covay", + "title": "The Popeye Waddle", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 6, + "missing_count": 71, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1961 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Tokens", + "playlist_title": "The Lion Sleeps Tonight", + "found_song": { + "artist": "The Tokens", + "disabled": false, + "favorite": false, + "guid": "cc03a869-4f7e-5abf-d0f2-bc70338d6354", + "path": "z://MP4\\Stingray Karaoke\\The Lion Sleeps Tonight The Tokens Karaoke with Lyrics.mp4", + "title": "The Lion Sleeps Tonight" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Vee", + "playlist_title": "Run To Him", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "guid": "e3a468a8-e579-aa6d-f499-a638b46e9012", + "path": "z://MP4\\TheKARAOKEChannel\\Run To Him in the style of Bobby Vee.mp4", + "title": "Run To Him" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chubby Checker", + "playlist_title": "The Twist", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52c72379-1c4d-fb1b-a1f9-b1ad9440b0ef", + "path": "z://MP4\\KaraokeOnVEVO\\Chubby Checker - The Twist.mp4", + "title": "The Twist" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Leroy Van Dyke", + "playlist_title": "Walk On By", + "found_song": { + "artist": "Leroy Van Dyke", + "disabled": false, + "favorite": false, + "guid": "894f761a-62b4-de27-4b19-46cc1cff4510", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On By - Leroy Van Dyke.mp4", + "title": "Walk On By" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Marvelettes", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "The Marvelettes", + "disabled": false, + "favorite": false, + "guid": "2776a90a-d6e3-40c3-9fa4-6002e9a80329", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Mr. Postman - The Marvelettes.mp4", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Happy Birthday, Sweet Sixteen", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "05f069f1-a2fc-aaf1-8a41-57de3d6db3ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Birthday, Sweet Sixteen - Neil Sedaka.mp4", + "title": "Happy Birthday, Sweet Sixteen" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jimmy Dean", + "playlist_title": "Big Bad John", + "found_song": { + "artist": "Jimmy Dean", + "disabled": false, + "favorite": false, + "guid": "7decab9d-aa5c-5971-043d-b234bb14f92e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Big Bad John - Jimmy Dean.mp4", + "title": "Big Bad John" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chubby Checker", + "playlist_title": "Let's Twist Again", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "61f63cee-edfb-99bb-5ea7-de27c6933686", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Twist Again - Chubby Checker.mp4", + "title": "Let s Twist Again" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jimmy Elledge", + "playlist_title": "Funny How Time Slips Away", + "found_song": { + "artist": "Jimmy Elledge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "465a791f-cfef-740b-6f13-05879cb92d06", + "path": "z://MP4\\KaraokeOnVEVO\\Jimmy Elledge - Funny How Time Slips Away.mp4", + "title": "Funny How Time Slips Away" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fats Domino", + "playlist_title": "Jambalaya (On The Bayou)", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "d2a40204-8be6-b983-f9cd-cb7cf7b74014", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jambalaya (On The Bayou) - Fats Domino.mp4", + "title": "Jambalaya (On The Bayou)" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Gene Pitney", + "playlist_title": "Town Without Pity", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01295299-513c-1c51-7ec4-efae7d1c1356", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Town Without Pity.mp4", + "title": "Town Without Pity" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Highwaymen", + "playlist_title": "Cotton Fields", + "found_song": { + "artist": "The Highwaymen", + "disabled": false, + "favorite": false, + "guid": "348861de-05d5-679e-3719-c17004ff3e7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Highwaymen - Cotton Fields (Karaoke).mp4", + "title": "Cotton Fields" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dion", + "playlist_title": "The Wanderer", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "232ce56c-596e-99ea-9f01-26c9017b819e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wanderer - Dion.mp4", + "title": "The Wanderer" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Del Shannon", + "playlist_title": "Hey! Little Girl", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "guid": "e0029bec-1e5d-5a4b-702c-316afb9d0c06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF069\\Del Shannon - Hey Little Girl - SF069 - 10.mp3", + "title": "Hey Little Girl" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Shirelles", + "playlist_title": "Baby It's You", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "8e3a794d-b0cb-0897-8348-88b0e4454fd8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s You - The Shirelles.mp4", + "title": "Baby It s You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Burl Ives", + "playlist_title": "A Little Bitty Tear", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "1cb277fc-d28e-b031-6077-4ad0fe470a6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Bitty Tear - Burl Ives.mp4", + "title": "A Little Bitty Tear" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dion", + "playlist_title": "Runaround Sue", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "ff4a2c79-c0ec-bb68-bc59-35343cebb706", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Runaround Sue - Dion.mp4", + "title": "Runaround Sue" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Patsy Cline", + "playlist_title": "Crazy", + "found_song": { + "artist": "Patsy Cline", + "disabled": false, + "favorite": false, + "guid": "d1ed16cb-a6bc-cc77-8c0b-8f3d61408a90", + "path": "z://MP4\\Sing King Karaoke\\Patsy Cline - Crazy (Karaoke Version).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Bobby Vee", + "playlist_title": "Walkin' With My Angel", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2faf26df-6ba2-a09a-a8c6-c2c87708eaf8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Walkin With My Angel.mp4", + "title": "Walkin' With My Angel" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Dovells", + "playlist_title": "Bristol Stomp", + "found_song": { + "artist": "The Dovells", + "disabled": false, + "favorite": false, + "guid": "182de878-47e9-c6fc-02ed-95a216f302f9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bristol Stomp - The Dovells.mp4", + "title": "Bristol Stomp" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Charles Brown", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Charles Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4739858d-abd9-2b2d-ac02-5fa39f906794", + "path": "z://MP4\\KaraokeOnVEVO\\Charles Brown - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Joey Dee & the Starliters", + "playlist_title": "Peppermint Twist - Part I", + "found_song": { + "artist": "Joey Dee & the Starliters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c6e91f-ce32-743d-7bc0-f7252af8f32d", + "path": "z://MP4\\KaraokeOnVEVO\\Joey Dee & the Starliters - Peppermint Twist Part I.mp4", + "title": "Peppermint Twist - Part I" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "James Ray", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Bobby Darin", + "playlist_title": "Multiplication", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "de39442d-fbcc-ff65-b2e9-40c563734e06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF074\\Bobby Darin - Multiplacation - SF074 - 09.mp3", + "title": "Multiplacation" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "James Darren", + "title": "Goodbye Cruel World", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Sandy Nelson", + "title": "Let There Be Drums", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Elvis Presley With The Jordanaires", + "title": "Can't Help Falling In Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Henry Mancini And His Orchestra", + "title": "Moon River", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Linda Scott", + "title": "I Don't Know Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Lettermen", + "title": "When I Fall In Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Ray Charles and his Orchestra", + "title": "Unchain My Heart", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Connie Francis", + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jerry Butler", + "title": "Moon River", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Angels", + "title": "'Til", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ferrante & Teicher", + "title": "Tonight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Impressions", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Brook Benton", + "title": "Revenge", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Crystals", + "title": "There's No Other (Like My Baby)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kenny Dino", + "title": "Your Ma Said You Cried In Your Sleep Last Night", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Elvis Presley With The Jordanaires", + "title": "Rock-A-Hula Baby", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Barbara George", + "title": "I Know (You Don't Love Me No More)", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Bobby Rydell/Chubby Checker", + "title": "Jingle Bell Rock", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Brenda Lee", + "title": "Fool #1", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Solomon Burke", + "title": "Just Out Of Reach (Of My Two Open Arms)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Chantels", + "title": "Well, I Told You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Phil McLean", + "title": "Small Sad Sam", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The G-Clefs", + "title": "I Understand (Just How You Feel)", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Pat Boone", + "title": "Johnny Will", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Highwaymen", + "title": "The Gypsy Rover", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Connie Francis", + "title": "Baby's First Christmas", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ike & Tina Turner", + "title": "Poor Fool", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Vic Dana", + "title": "Little Altar Boy", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gary U.S. Bonds", + "title": "Dear Lady Twist", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Sims Twins", + "title": "Soothe Me", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dion", + "title": "The Majestic", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Dinah Washington", + "title": "September In The Rain", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "John D. Loudermilk", + "title": "Language Of Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Sue Thompson", + "title": "Norman", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Bobby Bland", + "title": "Turn On Your Love Light", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Glen Campbell", + "title": "Turn Around, Look At Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Bobby Darin", + "title": "Irresistible You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Frank Sinatra", + "title": "Pocketful Of Miracles", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Bill Black's Combo", + "title": "Twist-Her", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Lee Dorsey", + "title": "Do-Re-Mi", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Si Zentner And His Orchestra", + "title": "Up A Lazy River", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Roger Williams", + "title": "Maria", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Frank Slay And His Orchestra", + "title": "Flying Circle", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Gladys Knight And The Pips", + "title": "Letter Full Of Tears", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Linda Scott", + "title": "It's All Because", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Drifters", + "title": "Room Full Of Tears", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Johnny Tillotson", + "title": "Dreamy Eyes", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jimmy McCracklin", + "title": "Just Got To Know", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Ral Donner", + "title": "She's Everything (I Wanted You To Be)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Showmen", + "title": "It Will Stand", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Marcels", + "title": "Heartaches", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Gene McDaniels", + "title": "Tower Of Strength", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Chubby Checker", + "title": "Twistin' U.S.A.", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Dave Brubeck Quartet", + "title": "Unsquare Dance", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "David Seville And The Chipmunks", + "title": "Alvin's Harmonica", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Dick Dale and The Del-Tones", + "title": "Let's Go Trippin'", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Anthony Newley", + "title": "Pop Goes The Weasel", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Danny Peppermint and the Jumping Jacks", + "title": "The Peppermint Twist", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Ray Peterson", + "title": "I Could Have Loved You So Well", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "James Brown And The Famous Flames", + "title": "Lost Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Patti Page", + "title": "Go On Home", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ace Cannon", + "title": "Tuff", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sleepy King", + "title": "Pushin' Your Luck", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Marty Robbins", + "title": "I Told The Brook", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "title": "Smoky Places", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Troy Shondell", + "title": "Tears From An Angel", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Johnny Preston", + "title": "Free Me", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Belmonts", + "title": "I Need Some One", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dickie Goodman", + "title": "Santa & The Touchables", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Jimmie Beaumont", + "title": "Ev'rybody's Cryin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 4, + "missing_count": 72, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1960 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 6, + "playlist_artist": "Johnny Horton", + "playlist_title": "North To Alaska", + "found_song": { + "artist": "Johnny Horton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14973725-80aa-7bf8-af95-e9ca550ed150", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Horton - North To Alaska.mp4", + "title": "North To Alaska" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnny Burnette", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Johnny Burnette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42194ae-3a80-9aa8-f21a-d9f23327352c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Burnette - Youre Sixteen.mp4", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bobby Vee", + "playlist_title": "Rubber Ball", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b97bc15a-9ed8-26d4-53da-b49382005bc9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Rubber Ball.mp4", + "title": "Rubber Ball" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Poetry In Motion", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "guid": "41e702d7-2196-9d23-ab98-b72e0548d84a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Poetry In Motion - Johnny Tillotson.mp4", + "title": "Poetry In Motion" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Shirelles", + "playlist_title": "Will You Love Me Tomorrow", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "67016874-ff96-ff33-28c6-1038cfa94122", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Love Me Tomorrow - The Shirelles.mp4", + "title": "Will You Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Jim Reeves", + "playlist_title": "Am I Losing You", + "found_song": { + "artist": "Jim Reeves", + "disabled": false, + "favorite": false, + "guid": "511753e9-6ce3-6182-0d59-23daba8e2684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Am I Losing You - Jim Reeves.mp4", + "title": "Am I Losing You" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Roy Orbison", + "playlist_title": "I'm Hurtin'", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d29afa3-b600-3393-3ae8-0a5668552a16", + "path": "z://MP4\\ZoomKaraokeOfficial\\Roy Orbison - Im Hurtin.mp4", + "title": "I'm Hurtin'" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Calendar Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Skeeter Davis", + "playlist_title": "My Last Date (With You)", + "found_song": { + "artist": "Skeeter Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2264ce7c-78ec-4b14-2a93-c0f5975aad94", + "path": "z://MP4\\KaraokeOnVEVO\\Skeeter Davis - My Last Date (With You.mp4", + "title": "My Last Date (With You)" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Perry Como", + "playlist_title": "Make Someone Happy", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "10bac1c5-caee-8793-28ea-e9e17a360892", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make Someone Happy - Perry Como.mp4", + "title": "Make Someone Happy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Ray Peterson", + "playlist_title": "Corinna, Corinna", + "found_song": { + "artist": "Ray Peterson", + "disabled": false, + "favorite": false, + "guid": "4ae3a3e7-bdc9-067c-df9e-16b8213600f3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Corrina, Corrina - Ray Peterson.mp4", + "title": "Corrina, Corrina" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Sway", + "found_song": { + "artist": "Bobbie Rydell", + "disabled": false, + "favorite": false, + "guid": "fba1bae1-96ad-1eb5-a01f-4013e0a01489", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF137\\Bobbie Rydell - Sway - SF137 - 07.mp3", + "title": "Sway" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Drifters", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "266cd681-d60a-3d21-3de0-70ead8fc34be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - The Drifters.mp4", + "title": "Save The Last Dance For Me" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Blue Diamonds", + "playlist_title": "Ramona", + "found_song": { + "artist": "Blue Diamonds", + "disabled": false, + "favorite": false, + "guid": "acff2317-8b62-91bb-7cf2-373efd6cc0dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ramona - Blue Diamonds.mp4", + "title": "Ramona" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Elvis Presley With The Jordanaires", + "title": "Are You Lonesome To-night?", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Bert Kaempfert And His Orchestra", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Floyd Cramer", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Kathy Young with The Innocents", + "title": "A Thousand Stars", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Ferrante & Teicher", + "title": "Exodus", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Connie Francis", + "title": "Many Tears Ago", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lolita", + "title": "Sailor (Your Home Is The Sea)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jerry Butler", + "title": "He Will Break Your Heart", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Dion", + "title": "Lonely Teenager", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Rosie And The Originals", + "title": "Angel Baby", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "The Ventures", + "title": "Perfidia", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Louis Prima", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "U.S. Bonds", + "title": "New Orleans", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Fats Domino", + "title": "My Girl Josephine", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Bill Black's Combo", + "title": "Blue Tango", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Anita Bryant", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jackie Wilson", + "title": "Alone At Last", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Brook Benton", + "title": "Fools Rush In (Where Angels Fear To Tread)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Maurice Williams & The Zodiacs", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Donnie Brooks", + "title": "Doll House", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ray Charles", + "title": "Ruby", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Hank Ballard And The Midnighters", + "title": "Let's Go, Let's Go, Let's Go", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sam Cooke", + "title": "Sad Mood", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Ferlin Husky", + "title": "Wings Of A Dove", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Damita Jo", + "title": "I'll Save The Last Dance For You", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Marty Robbins", + "title": "Ballad Of The Alamo", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Elvis Presley With The Jordanaires", + "title": "I Gotta Know", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Chubby Checker", + "title": "The Hucklebuck", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lawrence Welk And His Orchestra", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lawrence Welk And His Orchestra", + "title": "Calcutta", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bing Crosby", + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Frank Sinatra", + "title": "Ol' Mac Donald", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Everly Brothers", + "title": "Like Strangers", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Innocents", + "title": "Gee Whiz", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Chimes", + "title": "Once In Awhile", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Frankie Avalon", + "title": "A Perfect Love", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "James Booker", + "title": "Gonzo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "title": "Shop Around", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Bing Crosby", + "title": "Silent Night", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Drifters", + "title": "I Count The Tears", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Olympics", + "title": "Dance By The Light Of The Moon", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bobby Darin", + "title": "Christmas Auld Lang Syne", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "LaVern Baker", + "title": "Bumble Bee", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Santo & Johnny", + "title": "Twistin' Bells", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Shells", + "title": "Baby Oh Baby", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ricky Nelson", + "title": "You Are The Only One", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jackie Wilson", + "title": "Am I The Man", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Fats Domino", + "title": "Natural Born Lover", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The Flamingos", + "title": "Your Other Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Al Caiola And His Orchestra", + "title": "The Magnificent Seven", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Frankie Avalon", + "title": "The Puppet Song", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Mantovani & His Orch.", + "title": "Main Theme from Exodus (Ari's Theme)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Melodeers", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Hank Ballard And The Midnighters", + "title": "The Hoochi Coochi Coo", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Ramblers", + "title": "Rambling", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Adam Wade", + "title": "Gloria's Theme", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Johnny Mathis", + "title": "How To Handle A Woman", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Browns featuring Jim Edward Brown", + "title": "Send Me The Pillow You Dream On", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Larry Verne", + "title": "Mister Livingston", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Andy Williams", + "title": "You Don't Want My Love", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Bill Doggett", + "title": "(Let's Do) The Hully Gully Twist", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Little Willie John", + "title": "Walk Slow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jerry Murad's Harmonicats", + "title": "Cherry Pink And Apple Blossom White", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Joni James", + "title": "My Last Date (With You)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teresa Brewer", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Jimmy Charles", + "title": "The Age For Love", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Marv Johnson", + "title": "Happy Days", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Frank Gari", + "title": "Utopia", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Pepe", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Buddy Knox", + "title": "Lovey Dovey", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Ike & Tina Turner", + "title": "I Idolize You", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Viscounts", + "title": "Wabash Blues", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Annette With The Afterbeats", + "title": "Talk To Me Baby", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Brook Benton", + "title": "Someday You'll Want Me To Want You", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Shelby Flint", + "title": "Angel On My Shoulder", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bobby Darin", + "title": "Child Of God", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Dinah Washington", + "title": "We Have Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jerry Wallace", + "title": "There She Goes", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Jeanne Black", + "title": "Oh, How I Miss You Tonight", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Etta & Harvey", + "title": "Spoonful", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 5, + "missing_count": 82, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1959 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Guy Mitchell", + "playlist_title": "Heartaches By The Number", + "found_song": { + "artist": "Guy Mitchell", + "disabled": false, + "favorite": false, + "guid": "ea1e7a82-aac1-aef4-9655-535df6a2b073", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartaches By The Number - Guy Mitchell.mp4", + "title": "Heartaches By The Number" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marty Robbins", + "playlist_title": "El Paso", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "guid": "77a1beea-b3fa-33c9-d152-1cd2039e4dfb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke El Paso - Marty Robbins.mp4", + "title": "El Paso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Freddie Cannon", + "playlist_title": "Way Down Yonder In New Orleans", + "found_song": { + "artist": "Freddie Cannon", + "disabled": false, + "favorite": false, + "guid": "ab8db552-c55d-fb03-189e-b93346d3e71c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF064\\Freddie Cannon - Way Down Yonder In New Orleans - SF064 - 13.mp3", + "title": "Way Down Yonder In New Orleans" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Darin", + "playlist_title": "Mack The Knife", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "3477148c-7525-a49c-6c3b-cc2a334409e4", + "path": "z://MP4\\KaraFun Karaoke\\Bobby Darin - Mack The Knife.mp4", + "title": "Mack The Knife" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Oh! Carol", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7f4c9f-0abf-cde8-0d8f-5e88db3eb62b", + "path": "z://MP4\\VocalStarKaraoke\\Neil Sedaka - Oh Carol.mp4", + "title": "Oh Carol" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Fleetwoods", + "playlist_title": "Mr. Blue", + "found_song": { + "artist": "The Fleetwoods", + "disabled": false, + "favorite": false, + "guid": "c3f643c3-d0ca-7b55-b1be-deb7f6bd5db0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Blue - The Fleetwoods.mp4", + "title": "Mr. Blue" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fats Domino", + "playlist_title": "Be My Guest", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "78bc4d35-46aa-39a4-f4ae-626fceff798a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be My Guest - Fats Domino.mp4", + "title": "Be My Guest" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Mathis", + "playlist_title": "Misty", + "found_song": { + "artist": "Johnny Mathis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cda023b-cfae-4f5e-e4f4-3a56b7646215", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Mathis - Misty.mp4", + "title": "Misty" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Johnny Preston", + "playlist_title": "Running Bear", + "found_song": { + "artist": "Johnny Preston", + "disabled": false, + "favorite": false, + "guid": "323fac76-156c-b4f9-cfd3-fcb9417b364e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Running Bear - Johnny Preston.mp4", + "title": "Running Bear" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Paul Anka", + "playlist_title": "Put Your Head On My Shoulder", + "found_song": { + "artist": "Paul Anka", + "disabled": false, + "favorite": false, + "guid": "89a54a76-fbec-b983-86bc-4b76289bd5dc", + "path": "z://MP4\\KaraFun Karaoke\\Put Your Head On My Shoulder - Paul Anka Karaoke Version KaraFun.mp4", + "title": "Put Your Head On My Shoulder" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Wink Martindale", + "playlist_title": "Deck Of Cards", + "found_song": { + "artist": "Wink Martindale", + "disabled": false, + "favorite": false, + "guid": "6eabda62-1600-c414-152f-27e12876da97", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF131\\Wink Martindale - Deck Of Cards - SF131 - 04.mp3", + "title": "Deck Of Cards" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Shimmy, Shimmy, Ko-Ko-Bop", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecd08f8d-9101-b14c-e2e0-1424a79737f1", + "path": "z://MP4\\KaraokeOnVEVO\\Little Anthony And The Imperials - Shimmy, Shimmy, Ko-Ko-Bop.mp4", + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Brenda Lee", + "playlist_title": "Sweet Nothin's", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "ae1b2f75-5275-09c9-865c-87c2ac5e72e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweet Nothin s - Brenda Lee.mp4", + "title": "Sweet Nothin s" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mark Dinning", + "playlist_title": "Teen Angel", + "found_song": { + "artist": "Mark Dinning", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aebfadaa-78f0-dbfb-746e-16c459c4c8bf", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Dinning - Teen Angel.mp4", + "title": "Teen Angel" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 33, + "playlist_artist": "The Drifters", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a8c76fb-a044-d46f-2bbf-b4ba278ba7c5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Dance With Me.mp4", + "title": "Dance With Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "d65b04f2-4a45-4d3b-12e3-2526c4632b67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Of Me - Frank Sinatra.mp4", + "title": "All Of Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Frankie Avalon", + "title": "Why", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Miss Toni Fisher", + "title": "The Big Hurt", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Paul Anka", + "title": "It's Time To Cry", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Bobby Rydell", + "title": "We Got Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Connie Francis", + "title": "Among My Souvenirs", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Fabian", + "title": "Hound Dog Man", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ernie Fields & Orch.", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Fabian", + "title": "This Friendly World", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Della Reese", + "title": "Don't You Know", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Browns", + "title": "Scarlet Ribbons (For Her Hair)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brook Benton", + "title": "So Many Ways", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 2", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Steve Lawrence", + "title": "Pretty Blue Eyes", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ricky Nelson", + "title": "I Wanna Be Loved", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Santo & Johnny", + "title": "Tear Drop", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marv Johnson", + "title": "You Got What It Takes", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Price and His Orchestra", + "title": "Come Into My Heart", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Conway Twitty", + "title": "Danny Boy", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bill Black's Combo", + "title": "Smokie - Part 2", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Larry Hall", + "title": "Sandy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Johnny And The Hurricanes", + "title": "Reveille Rock", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Rocco Granata and the International Quintet", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Annette With The Afterbeats", + "title": "First Name Initial", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sammy Turner", + "title": "Always", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Jimmy Clanton", + "title": "Go, Jimmy, Go", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Connie Francis", + "title": "God Bless America", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bob Beckham", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Ricky Nelson", + "title": "Mighty Good", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Drifters", + "title": "(If You Cry) True Love, True Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Royal Teens", + "title": "Believe Me", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Paul Evans and the Curls", + "title": "(Seven Little Girls) Sitting In The Back Seat", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Dinah Washington", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Jackie Wilson", + "title": "Talk That Talk", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 1", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Willy Alberti", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Tommy Facenda", + "title": "High School U.S.A.", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jerry Wallace With The Jewels", + "title": "Primrose Lane", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Spacemen", + "title": "The Clouds", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Della Reese", + "title": "Not One Minute More", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Clovers", + "title": "Love Potion No. 9", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Sarah Vaughan", + "title": "Smooth Operator", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ray Charles and his Orchestra", + "title": "I'm Movin' On", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Andy Williams", + "title": "The Village Of St. Bernadette", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Crests", + "title": "A Year Ago Tonight", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Andy Williams", + "title": "Lonely Street", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lloyd Price and His Orchestra", + "title": "Wont'cha Come Home", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Dee Clark", + "title": "How About That", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Fireflies", + "title": "You Were Mine", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Fats Domino", + "title": "I've Been Around", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Ray Peterson", + "title": "Goodnight My Love (Pleasant Dreams)", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Coasters", + "title": "What About Us", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Don Costa And His Orchestra And Chorus", + "title": "I'll Walk The Line", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rock-A-Teens", + "title": "Woo-Hoo", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Cliff Richard and The Drifters", + "title": "Living Doll", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Kitty Kallen", + "title": "If I Give My Heart To You", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Pat Boone", + "title": "Beyond The Sunset", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Fireballs", + "title": "Torquay", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Hugo & Luigi", + "title": "Just Come Home", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "LaVern Baker", + "title": "Tiny Tim", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Mitch Miller", + "title": "Do-Re-Mi", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Dancer, Prancer And Nervous", + "title": "The Happy Reindeer", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Revels", + "title": "Midnight Stroll", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Tommy Edwards", + "title": "(New In) The Ways Of Love", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Islanders", + "title": "The Enchanted Sea", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tommy Edwards", + "title": "Honestly And Truly", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Rod Bernard", + "title": "One More Chance", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Tony Bennett", + "title": "Climb Ev'ry Mountain", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Titus Turner", + "title": "We Told You Not To Marry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Carl Dobkins, Jr.", + "title": "Lucky Devil", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Dorothy Collins", + "title": "Baciare Baciare (Kissing Kissing)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Jane Morgan", + "title": "Happy Anniversary", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Mormon Tabernacle Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Coasters", + "title": "Run Red Run", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Bluenotes", + "title": "I Don't Know What It Is", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Johnny Cash", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Sandy Nelson", + "title": "Teen Beat", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Frankie Avalon", + "title": "Swingin' On A Rainbow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Clyde McPhatter", + "title": "Let's Try Again", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bill Haley And His Comets", + "title": "Joey's Song", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Brook Benton", + "title": "This Time Of The Year", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Bonnie Guitar", + "title": "Candy Apple Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Rod Lauren", + "title": "If I Had A Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 83, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1958 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Platters", + "playlist_title": "Smoke Gets In Your Eyes", + "found_song": { + "artist": "The Platters", + "disabled": false, + "favorite": false, + "guid": "de1ba92f-aaa5-7e0d-a934-fa6c25a6bd76", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke Gets In Your Eyes - The Platters.mp4", + "title": "Smoke Gets In Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Everly Brothers", + "playlist_title": "Problems", + "found_song": { + "artist": "The Everly Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "061bccb6-db5f-da4f-b6e8-d398c1ac12f2", + "path": "z://MP4\\KaraokeOnVEVO\\The Everly Brothers - Problems.mp4", + "title": "Problems" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Kingston Trio", + "playlist_title": "Tom Dooley", + "found_song": { + "artist": "The Kingston Trio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28bd82f2-50fc-4069-1217-e5d1739ff4e1", + "path": "z://MP4\\KaraokeOnVEVO\\The Kingston Trio - Tom Dooley.mp4", + "title": "Tom Dooley" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elvis Presley", + "playlist_title": "One Night", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "da6ff584-1e6b-e161-661a-5c8f6ce293c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Night - Elvis Presley.mp4", + "title": "One Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "It's Only Make Believe", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "guid": "c577c8ca-76e3-81c2-f9c0-4b60a3bb6359", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Only Make Believe - Conway Twitty.mp4", + "title": "It s Only Make Believe" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elvis Presley", + "playlist_title": "I Got Stung", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bbd6540e-423a-bc5c-797a-c47c83b758a4", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - I Got Stung.mp4", + "title": "I Got Stung" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fats Domino", + "playlist_title": "Whole Lotta Loving", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "92c33bd6-ee64-f30c-26f2-d3e7dd2f5b58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whole Lotta Loving - Fats Domino.mp4", + "title": "Whole Lotta Loving" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Connie Francis", + "playlist_title": "My Happiness", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "guid": "88947e8e-5a01-14a8-76aa-ad5f45c7176b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happiness - Connie Francis.mp4", + "title": "My Happiness" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Lonely Teardrops", + "found_song": { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "guid": "9eb595a5-605c-088c-cd8a-da17cff3a4b6", + "path": "z://MP4\\Stingray Karaoke\\Lonely Teardrops Jackie Wilson Karaoke with Lyrics.mp4", + "title": "Lonely Teardrops" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Bopper", + "playlist_title": "Chantilly Lace", + "found_song": { + "artist": "Big Bopper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e850d845-ed2a-e97e-b44c-369e381d23ba", + "path": "z://MP4\\KaraokeOnVEVO\\Big Bopper - Chantilly Lace.mp4", + "title": "Chantilly Lace" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ritchie Valens", + "playlist_title": "Donna", + "found_song": { + "artist": "Ritchie Valens", + "disabled": false, + "favorite": false, + "guid": "e2d78790-e8ad-0cbe-4ba1-eb2d0a04726e", + "path": "z://MP4\\KaraFun Karaoke\\Donna - Ritchie Valens Karaoke Version KaraFun.mp4", + "title": "Donna" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tommy Edwards", + "playlist_title": "It's All In The Game", + "found_song": { + "artist": "Tommy Edwards", + "disabled": false, + "favorite": false, + "guid": "ec8b3638-e173-ca9b-22c3-864e70b57156", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All In The Game - Tommy Edwards.mp4", + "title": "It s All In The Game" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Crests", + "playlist_title": "16 Candles", + "found_song": { + "artist": "The Crests", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b49d1f7e-99b5-ffe4-28a1-df4ecf51142a", + "path": "z://MP4\\VocalStarKaraoke\\The Crests - 16 Candles.mp4", + "title": "16 Candles" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Neil Sedaka", + "playlist_title": "The Diary", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe489948-a758-63dd-918c-61d73e04911f", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - The Diary.mp4", + "title": "The Diary" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Eddie Cochran", + "playlist_title": "C'mon Everybody", + "found_song": { + "artist": "Eddie Cochran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1addc634-52a2-3083-4422-c8f3e388a093", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddie Cochran - CMon Everybody.mp4", + "title": "C'Mon Everybody" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jane Morgan", + "playlist_title": "The Day The Rains Came", + "found_song": { + "artist": "Jane Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b1e774-5d07-20b5-05af-c3b857009678", + "path": "z://MP4\\VocalStarKaraoke\\Jane Morgan - The Day The Rains Came.mp4", + "title": "The Day The Rains Came" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Lloyd Price", + "playlist_title": "Stagger Lee", + "found_song": { + "artist": "Lloyd Price", + "disabled": false, + "favorite": false, + "guid": "7baaab3a-1aa6-b3a5-2292-97315f68bb7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stagger Lee - Lloyd Price.mp4", + "title": "Stagger Lee" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Chuck Berry", + "playlist_title": "Run Rudolph Run", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e2763a55-f716-761a-efe3-b05a031e8d32", + "path": "z://MP4\\Sing King Karaoke\\Chuck Berry - Run Rudolph Run (Karaoke Version).mp4", + "title": "Run Rudolph Run" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Chuck Berry", + "playlist_title": "Merry Christmas Baby", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e39943d8-0683-999b-a4c7-9a94ee686927", + "path": "z://CDG\\Various\\Chuck Berry - Merry Christmas Baby.mp3", + "title": "Merry Christmas Baby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Bobby Day", + "playlist_title": "Rock-in Robin", + "found_song": { + "artist": "Bobby Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d66a08b4-1589-7d9f-84d7-485f7a5adb79", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Day - Rock-in Robin.mp4", + "title": "Rock-in Robin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "The Teddy Bears", + "playlist_title": "To Know Him, Is To Love Him", + "found_song": { + "artist": "Teddy Bears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60e4f026-ebae-ad0d-edfc-298346cafb1a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Teddy Bears - To Know Him Is To Love Him - SFMW 827 -13.mp3", + "title": "To Know Him Is To Love Him" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Chipmunks With David Seville", + "title": "The Chipmunk Song", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Playmates", + "title": "Beep Beep", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ricky Nelson", + "title": "Lonesome Town", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Clyde McPhatter", + "title": "A Lover's Question", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jimmie Rodgers", + "title": "Bimbombey", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Grammer", + "title": "Gotta Travel On", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Tommy Edwards", + "title": "Love Is All We Need", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bobby Darin", + "title": "Queen Of The Hop", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Cannonball", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cozy Cole", + "title": "Topsy II", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Frankie Avalon", + "title": "I'll Wait For You", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ricky Nelson", + "title": "I Got A Feeling", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Royaltones", + "title": "Poor Boy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Louis Prima And Keely Smith", + "title": "That Old Black Magic", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Nu Tornados", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Donnie Owens", + "title": "Need You", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Four Coins", + "title": "The World Outside", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Reg Owen & His Orchestra", + "title": "Manhattan Spiritual", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The Diamonds", + "title": "Walking Along", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Earl Grant", + "title": "The End", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Cadillacs", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Sam Cooke", + "title": "Love You Most Of All", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "title": "The Teen Commandments", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Big Bopper", + "title": "Big Bopper's Wedding", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Paul Anka", + "title": "(All of a Sudden) My Heart Sings", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Pat Boone", + "title": "I'll Remember Tonight", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Jimmy Clanton", + "title": "A Letter To An Angel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Cozy Cole", + "title": "Turvy II", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "LaVern Baker", + "title": "I Cried A Tear", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Four Lads", + "title": "The Mocking Bird", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Johnny Mathis", + "title": "Call Me", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Ames Brothers", + "title": "Pussy Cat", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Kalin Twins", + "title": "Forget Me Not", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Tommy Dorsey Orchestra", + "title": "Tea For Two Cha Cha", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dee Clark", + "title": "Nobody But You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Augie Rios", + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Chuck Berry", + "title": "Sweet Little Rock And Roller", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "June Valli", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bill Parsons", + "title": "The All American Boy", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bernie Lowe Orchestra", + "title": "Sing Sing Sing", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Roy Hamilton", + "title": "Pledging My Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Billy Vaughn And His Orchestra", + "title": "Cimarron (Roll On)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Four Esquires", + "title": "Hideaway", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Johnny Cash And The Tennessee Two", + "title": "It's Just About Time", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dion & The Belmonts", + "title": "Don't Pity Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Applejacks", + "title": "Rocka-Conga", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Joni James", + "title": "There Goes My Heart", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "James Brown And The Famous Flames", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Jack Scott", + "title": "Goodbye Baby", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Four Preps", + "title": "Cinderella", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tony Dallara", + "title": "Come Prima", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Raymond Lefevre and His Orchestra", + "title": "The Day The Rains Came", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Harvey & The Moonglows", + "title": "Ten Commandments Of Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tab Hunter", + "title": "Jealous Heart", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Polly Bergen", + "title": "Come Prima (Koma Preema)", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Frank Sinatra", + "title": "Mr. Success", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Billy & Lillie", + "title": "Lucky Ladybug", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Everly Brothers", + "title": "Love Of My Life", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Applejacks", + "title": "Mexican Hat Rock", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Quaker City Boys", + "title": "Teasin'", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Perry Como", + "title": "Mandolins In The Moonlight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Jerry Wallace", + "title": "Diamond Ring", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Bobby Helms", + "title": "The Fool And The Angel", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Poni-Tails", + "title": "Seven Minutes In Heaven", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Nat King Cole", + "title": "Non Dimenticar (Don't Forget)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Enoch Light & The Light Brigade", + "title": "I Want To Be Happy Cha Cha", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Bobby Freeman", + "title": "Need Your Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Johnny Tillotson", + "title": "Dreamy Eyes", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Art Lund", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Chuck Berry", + "title": "Joe Joe Gunne", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Ray Charles and his Orchestra", + "title": "Rockhouse (Part 2)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Accents", + "title": "Wiggle, Wiggle", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Little Anthony And The Imperials", + "title": "So Much", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The 5 Chanels", + "title": "The Reason", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Wade Flemons and the Newcomers", + "title": "Here I Stand", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Olympics", + "title": "(I Wanna) Dance With The Teacher", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 1, + "missing_count": 77, + "needs_manual_review": 1 + } + } + ], + "overall_summary": { + "total_songs": 9749, + "exact_matches": 3777, + "fuzzy_matches": 506, + "missing_songs": 5466, + "needs_manual_review": 506 + } +} \ No newline at end of file diff --git a/cli/matching.py b/cli/matching.py index 6eda640..3e3afe9 100644 --- a/cli/matching.py +++ b/cli/matching.py @@ -17,6 +17,7 @@ from utils import ( extract_consolidated_channel_from_path, get_file_extension, parse_multi_artist, + clean_artist_name, validate_song_data, find_mp3_pairs ) @@ -63,10 +64,15 @@ class SongMatcher: if not validate_song_data(song): continue - # Handle multi-artist songs - artists = parse_multi_artist(song['artist']) + # Clean and handle artist names + cleaned_artist = clean_artist_name(song['artist']) + if not cleaned_artist: + cleaned_artist = song['artist'] # Fallback to original if cleaning fails + + # Handle multi-artist songs (after cleaning) + artists = parse_multi_artist(cleaned_artist) if not artists: - artists = [song['artist']] + artists = [cleaned_artist] # Create groups for each artist variation for artist in artists: @@ -90,10 +96,15 @@ class SongMatcher: if i % 1000 == 0 and i > 0: print(f"Processing song {i:,}/{len(songs):,}...") - # Handle multi-artist songs - artists = parse_multi_artist(song['artist']) + # Clean and handle artist names + cleaned_artist = clean_artist_name(song['artist']) + if not cleaned_artist: + cleaned_artist = song['artist'] # Fallback to original if cleaning fails + + # Handle multi-artist songs (after cleaning) + artists = parse_multi_artist(cleaned_artist) if not artists: - artists = [song['artist']] + artists = [cleaned_artist] # Try exact matching first added_to_exact = False @@ -117,10 +128,15 @@ class SongMatcher: if i % 100 == 0 and i > 0: print(f"Fuzzy matching song {i:,}/{len(ungrouped_songs):,}...") - # Handle multi-artist songs - artists = parse_multi_artist(song['artist']) + # Clean and handle artist names + cleaned_artist = clean_artist_name(song['artist']) + if not cleaned_artist: + cleaned_artist = song['artist'] # Fallback to original if cleaning fails + + # Handle multi-artist songs (after cleaning) + artists = parse_multi_artist(cleaned_artist) if not artists: - artists = [song['artist']] + artists = [cleaned_artist] # Try to find an existing fuzzy group added_to_group = False diff --git a/cli/playlist_validation_results.json b/cli/playlist_validation_results.json new file mode 100644 index 0000000..f524c3e --- /dev/null +++ b/cli/playlist_validation_results.json @@ -0,0 +1,99907 @@ +{ + "total_playlists": 169, + "playlist_results": [ + { + "playlist_title": "Top 100 Karaoke Songs", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Neil Diamond", + "playlist_title": "Sweet Caroline", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "70aa1d8b-45b6-b3dd-b5d3-5e470c3fac26", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Sweet Caroline (Karaoke Version).mp4", + "title": "Sweet Caroline" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin' on a Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Wanna Dance With Somebody", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "967b0ffa-1914-ea2f-6940-ca5085595a58", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - I Wanna Dance With Somebody (w.mp4", + "title": "I Wanna Dance With Somebody" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Killers", + "playlist_title": "Mr. Brightside", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "37f83db1-2820-ee7d-bfc7-1d52e4d925fd", + "path": "z://MP4\\Sing King Karaoke\\The Killers - Mr Brightside (Karaoke Version).mp4", + "title": "Mr Brightside" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Backstreet Boys", + "playlist_title": "I Want It That Way", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "48ed3e92-55d2-22f3-f7e5-37b4e70ae523", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - I Want It That Way (Karaoke Version).mp4", + "title": "I Want It That Way" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Spice Girls", + "playlist_title": "Wannabe", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "49467912-14fb-ce08-09fd-2e2ea43cf7d5", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - Wannabe (Karaoke Version).mp4", + "title": "Wannabe" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Oasis", + "playlist_title": "Wonderwall", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "4867a49d-407f-dc48-d795-bf9ca55d73f4", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Wonderwall (Karaoke Version).mp4", + "title": "Wonderwall" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse of the Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 to 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Like a Prayer", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "3cee094e-f784-4473-157d-36b8888cf122", + "path": "z://MP4\\Let's Sing Karaoke\\Madonna - Like A Prayer (Karaoke & Lyrics) (2).mp4", + "title": "Like A Prayer" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neil Diamond", + "playlist_title": "Cracklin' Rosie", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "c746960c-cd2b-498f-71e2-c87535d16a19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cracklin Rosie - Neil Diamond.mp4", + "title": "Cracklin Rosie" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "Any Way You Want It", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "42aa663c-28b8-3a5c-de9f-ddea0f3ecffe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Any Way You Want It - Journey.mp4", + "title": "Any Way You Want It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Adele", + "playlist_title": "Rolling in the Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Madonna", + "playlist_title": "Vogue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "fc9cbc39-ceb7-4b46-e0f1-a074e596a0b0", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Vogue (Karaoke Version).mp4", + "title": "Vogue" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bryan Adams", + "playlist_title": "Summer of '69", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "18407b50-9913-210b-c09e-8ff71ec4d062", + "path": "z://MP4\\Sing King Karaoke\\Bryan Adams - Summer Of '69 (Karaoke Version).mp4", + "title": "Summer Of '69" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Little Mix", + "playlist_title": "Shout Out to My Ex", + "found_song": { + "artist": "Little Mix", + "disabled": false, + "favorite": false, + "guid": "037470bb-4c46-98ff-34de-69d3c553f121", + "path": "z://MP4\\Sing King Karaoke\\Little Mix - Shout Out To My Ex (Karaoke Version).mp4", + "title": "Shout Out To My Ex" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Shania Twain", + "playlist_title": "Man! I Feel Like a Woman!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "e874c98d-5e8f-1afc-ab9b-13f530125319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Man! I Feel Like A Woman! - Shania Twain.mp4", + "title": "Man! I Feel Like A Woman!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Britney Spears", + "playlist_title": "Oops!... I Did It Again", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "15f490ae-59b1-f079-134f-328d1907d5e2", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Oops!...I Did It Again (Karaoke Version).mp4", + "title": "Oops!...I Did It Again" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Weather Girls", + "playlist_title": "It's Raining Men", + "found_song": { + "artist": "The Weather Girls", + "disabled": false, + "favorite": false, + "guid": "aa8e113d-6f78-0b78-3412-62aab432735f", + "path": "z://MP4\\Stingray Karaoke\\It's Raining Men The Weather Girls Karaoke with Lyrics.mp4", + "title": "It's Raining Men" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Queen", + "playlist_title": "Somebody to Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Spice Girls", + "playlist_title": "Say You'll Be There", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "58d4d851-328a-6ea6-9034-f915961891c7", + "path": "z://CDG\\Various\\Spice Girls - Say You'll Be There.mp3", + "title": "Say You'll Be There" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Everybody (Backstreet's Back)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "53eb2ea2-0647-9a14-f0a4-ded4fc3364f1", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Everybody (Backstreet s Back) (Karaoke Version).mp4", + "title": "Everybody (Backstreet s Back)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Fountains of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Liza Minnelli", + "playlist_title": "Cabaret", + "found_song": { + "artist": "Liza Minnelli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6fcb3b4-65ab-a4f6-51dc-5f2eec549eb2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Liza Minnelli - Cabaret.mp4", + "title": "Cabaret" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Missy Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "a7a9e774-0a98-b1f1-4d59-49c353db5cb4", + "path": "z://MP4\\Let's Sing Karaoke\\Elliott, Missy - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop the Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Blink‑182", + "playlist_title": "All the Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Oasis", + "playlist_title": "Don't Look Back in Anger", + "found_song": { + "artist": "Oasis", + "disabled": false, + "favorite": false, + "guid": "404f3b17-3427-39d3-41b3-189922f545f9", + "path": "z://MP4\\Sing King Karaoke\\Oasis - Don't Look Back In Anger (Karaoke Version).mp4", + "title": "Don't Look Back In Anger" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Blink‑182", + "playlist_title": "What's My Age Again?", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "guid": "cb394951-2094-513c-c0a5-663c01bfd5ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s My Age Again - Blink-182.mp4", + "title": "What s My Age Again" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Lionel Richie", + "playlist_title": "Hello", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e2d196a3-492c-3a8e-3aad-e7e7c123297f", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - Hello (Karaoke Version).mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "George Michael", + "playlist_title": "Careless Whisper", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "fa7cfb8d-3c09-9839-6607-8a1f4c5547b5", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Careless Whisper (Karaoke Version).mp4", + "title": "Careless Whisper" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Respect", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "5c0977a8-8c70-110a-a799-b4e46a459dd9", + "path": "z://MP4\\Sing King Karaoke\\Aretha Franklin - Respect (Karaoke Version).mp4", + "title": "Respect" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Losing My Religion", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a4a6f38-5742-6a87-3e4d-80946898fd54", + "path": "z://MP4\\Sing King Karaoke\\Rem - Losing My Religion.mp4", + "title": "Losing My Religion" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Go Your Own Way", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "7c5cc505-466c-1c45-ecfa-9959dd563c64", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Go Your Own Way (Karaoke Version).mp4", + "title": "Go Your Own Way" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Queen", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Salt‑n‑Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Michael Jackson", + "playlist_title": "Billie Jean", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc2977c-cbdf-00f6-0997-c3273d2853d4", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - Billie Jean.mp4", + "title": "Billie Jean" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Elvis Presley", + "playlist_title": "Can't Help Falling in Love", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "575336ed-6637-efa8-89d5-3b6242d61db9", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Can t Help Falling In Love (Karaoke Version).mp4", + "title": "Can t Help Falling In Love" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Frank Sinatra", + "playlist_title": "My Way", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "7c0a9b2c-d218-3bf6-6a5c-a2acc8d2a9b8", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - My Way (Karaoke Version).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Wheatus", + "playlist_title": "Teenage Dirtbag", + "found_song": { + "artist": "Wheatus", + "disabled": false, + "favorite": false, + "guid": "71d88a35-3035-82b3-cabd-1380121d340e", + "path": "z://MP4\\Sing King Karaoke\\Wheatus - Teenage Dirtbag (Karaoke Version).mp4", + "title": "Teenage Dirtbag" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lil Nas X", + "playlist_title": "Old Town Road", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "93825a62-4f0e-57fe-51f1-9c91318f9101", + "path": "z://MP4\\KaraFun Karaoke\\Old Town Road - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Old Town Road" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "JAY‑Z", + "playlist_title": "Empire State of Mind", + "found_song": { + "artist": "Alicia Keys ft. Jay-Z", + "disabled": false, + "favorite": false, + "guid": "5f14663d-bc79-f476-4617-ebcb49d649fd", + "path": "z://MP4\\singsongsmusic\\Empire State of Mind - Karaoke HD (In the style of Alicia Keys & Jay-Z).mp4", + "title": "Empire State of Mind" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "4 Non Blondes", + "playlist_title": "What's Up?", + "found_song": { + "artist": "4 Non Blondes", + "disabled": false, + "favorite": false, + "guid": "77623013-eb25-7103-4a8f-46c62378d7bf", + "path": "z://MP4\\KaraFun Karaoke\\What’s Up - 4 Non Blondes Karaoke Version KaraFun.mp4", + "title": "What’s Up" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Soundgarden", + "playlist_title": "Fell on Black Days", + "found_song": { + "artist": "Soundgarden", + "disabled": false, + "favorite": false, + "guid": "f19b13c4-7dc1-5947-053d-36964f3f017d", + "path": "z://CDG\\Various\\Soundgarden - Fell On Black Days.mp3", + "title": "Fell On Black Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "63ca77f0-ac16-599f-2f08-b4a4412074b2", + "path": "z://MP4\\Sing King Karaoke\\The Jackson 5 - I Want You Back (Karaoke Version).mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Usher", + "playlist_title": "Climax", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "98cbfbe2-e0d2-0d3f-c3a7-d3c4260be6ab", + "path": "z://MP4\\Sing King Karaoke\\Usher - Climax (Karaoke Version).mp4", + "title": "Climax" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "Kenny Rogers & Dolly Parton", + "playlist_title": "Islands in the Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cruel Summer", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2596a18d-f42c-1be9-249f-8e96304456c4", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Cruel Summer (Karaoke Version).mp4", + "title": "Cruel Summer" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Elton John & Kiki Dee", + "playlist_title": "Don't Go Breaking My Heart", + "found_song": { + "artist": "Elton John And Kiki Dee", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "e1fed966-32fe-126e-2146-825d279f55ba", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John And Kiki Dee - Dont Go Breaking My Heart.mp4", + "title": "Dont Go Breaking My Heart" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Marvin Gaye ft. Tammi Terrell", + "playlist_title": "Ain't No Mountain High Enough", + "found_song": { + "artist": "Marvin Gaye ft. Tammi Terrell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcc8b0c2-e8c9-bbc0-53c7-c0569ad97ef9", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye, Tammi Terrell - Ain't No Mountain High Enough (Karaoke Version).mp4", + "title": "Ain't No Mountain High Enough" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "playlist_title": "Despacito", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Eminem & Rihanna", + "playlist_title": "Love the Way You Lie", + "found_song": { + "artist": "Eminem Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1346e2a7-efdf-18cd-07fb-915f1a68c16d", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem Featuring Rihanna - Love The Way You Lie.mp4", + "title": "Love The Way You Lie" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "SZA & Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Beyoncé", + "playlist_title": "Crazy in Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3413c594-b3e7-1563-a3dd-fc63955feb74", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Crazy In Love (2014 Remix) (Karaoke Version) (From Fifty Shades Of Grey ).mp4", + "title": "Crazy In Love" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "The Rocky Horror Show", + "playlist_title": "The Time Warp", + "found_song": { + "artist": "The Rocky Horror Show", + "disabled": false, + "favorite": false, + "guid": "ec64bc5c-bbe0-d44a-233d-a0089629e820", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Time Warp - The Rocky Horror Show.mp4", + "title": "Time Warp" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "I've Had The Time Of My Life", + "found_song": { + "artist": "Bill Medley ft. Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16496c12-f937-78c1-360e-7a09219a748a", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley & Jennifer Warnes - (Ive Had The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 20, + "artist": "Lionel Richie & Diana Ross", + "title": "Endless Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Brandy & Monica", + "title": "The Boy Is Mine", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ed Sheeran & Beyoncé", + "title": "Perfect Duet", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Usher & Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Taylor Swift ft. Ed Sheeran", + "title": "Everything Has Changed", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay‑Z ft. Beyoncé", + "title": "03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Sam Smith & Kim Petras", + "title": "Unholy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Nas & Beyoncé", + "title": "Brown Skin Girl", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Lady Gaga & Bruno Mars", + "title": "Die with a Smile", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Amy Winehouse & Mark Ronson", + "title": "Valerie", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Huey Lewis & Gwyneth Paltrow", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "John Travolta & Olivia Newton‑John", + "title": "Summer Nights", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Ross & Keyshia Cole", + "title": "Love", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Megan Thee Stallion feat. Beyoncé", + "title": "Savage Remix", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lady Gaga & Ariana Grande", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Rihanna & JAY‑Z", + "title": "Umbrella", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 69, + "fuzzy_match_count": 14, + "missing_count": 17, + "needs_manual_review": 14 + } + }, + { + "playlist_title": "2025 - Apple Music Top 50", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Drake", + "playlist_title": "NOKIA", + "found_song": { + "artist": "PARTYNEXTDOOR ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "370f81fc-bd2f-f48c-5a60-9bad027e616c", + "path": "z://MP4\\Sing King Karaoke\\PARTYNEXTDOOR, Drake - NOKIA.mp4", + "title": "NOKIA" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bad Bunny", + "playlist_title": "DtMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mariah the Scientist", + "playlist_title": "Burning Blue", + "found_song": { + "artist": "Mariah the Scientist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4a6ae42-46d3-6e43-9c8f-f27e3db4843d", + "path": "z://MP4\\Sing King Karaoke\\Mariah the Scientist - Burning Blue.mp4", + "title": "Burning Blue" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Bieber", + "playlist_title": "DAISIES", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "d8964ae6-e001-b752-97ab-cd1d2a9d7392", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - DAISIES (Karaoke Version).mp4", + "title": "DAISIES" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Bad Bunny", + "playlist_title": "BAILE INoLVIDABLE", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Superman", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "151e7f1d-9e14-10a2-d98a-d5874a38c414", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Superman (Karaoke Version).mp4", + "title": "Superman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Cardi B", + "playlist_title": "Outside", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef89e7a-6702-d628-11ab-c7f2ef139c1e", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Outside.mp4", + "title": "Outside" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Crazy Train", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75c29fc8-76e1-29c1-575d-057d8e39f7a6", + "path": "z://MP4\\VocalStarKaraoke\\Ozzy Osbourne - Crazy Train.mp4", + "title": "Crazy Train" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar & SZA", + "playlist_title": "luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Toby Keith", + "playlist_title": "Courtesy of the Red, White and Blue", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "14a2ac09-e528-c87d-3300-b03724d8c954", + "path": "z://MP4\\Let's Sing Karaoke\\Keith, Toby - Courtesy Of The Red, White & Blue (Karaoke & Lyrics) (2).mp4", + "title": "Courtesy Of The Red, White & Blue" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Justin Bieber", + "playlist_title": "GO BABY", + "found_song": { + "artist": "Justin Bieber ft. Ludacris", + "disabled": false, + "favorite": false, + "guid": "d920a036-01db-b2f7-d136-65e894e422b0", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber ft. Ludacris - Baby (Karaoke Version).mp4", + "title": "Baby" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Morgan Wallen & Tate McRae", + "title": "What I Want", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Drake", + "title": "GIMME A HUG", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Playboi Carti", + "title": "EVIL J0RDAN", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake", + "title": "What Did I Miss", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lil Baby, Young Thug & Future", + "title": "Dum, Dumb, and Dumber", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Justin Bieber", + "title": "ALL I CAN TAKE", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "BigXthaPlug & Bailey Zimmerman", + "title": "All The Way", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Morgan Wallen & Post Malone", + "title": "I Ain't Comin' Back", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "PARTYNEXTDOOR & Drake", + "title": "CN TOWER", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Travis Scott", + "title": "KICK OUT", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Playboi Carti", + "title": "RATHER LIE", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lil Baby", + "title": "Listen Up", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Kendrick Lamar", + "title": "tv off", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Weeknd", + "title": "Cry For Me", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bad Bunny", + "title": "NUEVAYoL", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Lil Baby & Rylo Rodriguez", + "title": "By Myself", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Travis Scott", + "title": "DUMBO", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Morgan Wallen", + "title": "I'm A Little Crazy", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "20 Cigarettes", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny", + "title": "VOY A LLeVARTE PA PR", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "PARTYNEXTDOOR & Drake", + "title": "SOMETHING ABOUT YOU", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Playboi Carti & The Weeknd", + "title": "RATHER LIE", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Baby", + "title": "F U 2x", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lil Durk", + "title": "Vanish Mode", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Travis Scott, Don Toliver & Waka Flocka Flame", + "title": "CHAMPAIN & VACAY", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Lady Gaga & Bruno Mars", + "title": "Die With A Smile", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "PARTYNEXTDOOR & Drake", + "title": "SOMEBODY LOVES ME", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Kendrick Lamar", + "title": "squabble up", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "PARTYNEXTDOOR & Drake", + "title": "MOTH BALLS", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Playboi Carti & Kendrick Lamar", + "title": "GOOD CREDIT", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Justin Bieber & Gunna", + "title": "WAY IT IS", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Lil Durk", + "title": "They Want To Be You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 3, + "missing_count": 32, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2025 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Luther", + "found_song": { + "artist": "Kendrick Lamar & SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90d317d1-7767-4533-3c29-2f89e1d79c98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kendrick Lamar & SZA - Luther.mp4", + "title": "Luther" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "ROSE", + "playlist_title": "APT.", + "found_song": { + "artist": "Rose ft. Bruno Mars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cdc1d65-2b1e-e8a8-59b6-3e9d1949eda5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rose & Bruno Mars - APT.mp4", + "title": "APT" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Chappell Roan", + "playlist_title": "Pink Pony Club", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "660737f7-9bb5-fc12-1bd7-b52a2d02c473", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Pink Pony Club (Karaoke Version).mp4", + "title": "Pink Pony Club" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I'm The Problem", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6e85ebd-b787-9377-89fe-04d888d20d76", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I'm The Problem (Karaoke Version).mp4", + "title": "I'm The Problem" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Love Somebody", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4bd08d6-3839-bc1d-12c1-7cc1ddb69d03", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Love Somebody (Karaoke Version).mp4", + "title": "Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Drake", + "playlist_title": "Nokia", + "found_song": { + "artist": "PARTYNEXTDOOR ft. Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "370f81fc-bd2f-f48c-5a60-9bad027e616c", + "path": "z://MP4\\Sing King Karaoke\\PARTYNEXTDOOR, Drake - NOKIA.mp4", + "title": "NOKIA" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Gracie Abrams", + "playlist_title": "That's So True", + "found_song": { + "artist": "Gracie Abrams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de084702-1eb2-038d-96d7-a9180a5d2af3", + "path": "z://MP4\\Sing King Karaoke\\Gracie Abrams - That’s So True (Karaoke Version).mp4", + "title": "That’s So True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Alex Warren", + "playlist_title": "Ordinary", + "found_song": { + "artist": "Alex Warren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "130e10f6-f0c1-e61a-51bb-63433dffecb5", + "path": "z://MP4\\Sing King Karaoke\\Alex Warren - Ordinary (Karaoke Version).mp4", + "title": "Ordinary" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "30 For 30", + "found_song": { + "artist": "SZA ft. Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4d5bf6-0850-7bbf-0eb8-5d50f51c1f58", + "path": "z://MP4\\Sing King Karaoke\\SZA, Kendrick Lamar - 30 For 30.mp4", + "title": "30 For 30" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Just In Case", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "620bc32e-1b03-b814-acf2-2f71e50a1b0e", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Just In Case (Karaoke Version).mp4", + "title": "Just In Case" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lola Young", + "playlist_title": "Messy", + "found_song": { + "artist": "Lola Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f4d6765f-389c-8d62-eda8-a8f13089a175", + "path": "z://MP4\\Sing King Karaoke\\Lola Young - Messy (Karaoke Version).mp4", + "title": "Messy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Doechii", + "playlist_title": "Anxiety", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7795470f-0410-b8c4-c871-2bd31edf1a36", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Anxiety.mp4", + "title": "Anxiety" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Leon Thomas", + "playlist_title": "Mutt", + "found_song": { + "artist": "Leon Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3478b3f0-1c00-dd33-d8c6-5a06dc43a0aa", + "path": "z://MP4\\Sing King Karaoke\\Leon Thomas - MUTT (Karaoke Version).mp4", + "title": "MUTT" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "BigXthaPlug", + "playlist_title": "All The Way", + "found_song": { + "artist": "Bailey Zimmerman, BigXthaPlug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d471d766-6037-550d-72d2-27acd9363b22", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman, BigXthaPlug - All The Way.mp4", + "title": "All The Way" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Tate McRae", + "playlist_title": "Sports Car", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb7c7c0f-1ed9-3ab7-3079-aa2d69d87e66", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - Sports car (Karaoke Version).mp4", + "title": "Sports car" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Myles Smith", + "playlist_title": "Stargazing", + "found_song": { + "artist": "Myles Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29311c90-932b-2a64-c703-df0d97cb14f3", + "path": "z://MP4\\Sing King Karaoke\\Myles Smith - Stargazing (Karaoke Version).mp4", + "title": "Stargazing" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "What I Want", + "found_song": { + "artist": "Morgan Wallen ft. Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21b358b6-7363-25ad-0f32-54e89fe7d464", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen & Tate McRae - What I Want.mp4", + "title": "What I Want" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Jessie Murph", + "playlist_title": "Blue Strips", + "found_song": { + "artist": "Jessie Murph", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ff9dec8-ddcd-ad4a-643f-0f3a0db3128c", + "path": "z://MP4\\Sing King Karaoke\\Jessie Murph - Blue Strips (Karaoke Version).mp4", + "title": "Blue Strips" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Gaga", + "playlist_title": "Abracadabra", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9a5b697-3618-889d-d726-20f0447ed149", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Abracadabra.mp4", + "title": "Abracadabra" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Benson Boone", + "playlist_title": "Sorry I'm Here For Someone Else", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b050db46-edec-090c-42eb-29b66c7b1bd2", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Sorry Im Here For Someone Else.mp4", + "title": "Sorry I'm Here For Someone Else" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Riley Green", + "playlist_title": "Worst Way", + "found_song": { + "artist": "Riley Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "145d5ab5-347c-60e1-523a-55c0075c86dc", + "path": "z://MP4\\Sing King Karaoke\\Riley Green - Worst Way (Karaoke Version).mp4", + "title": "Worst Way" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bad Bunny", + "playlist_title": "DTMF", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f3123c8-5b4e-8ee0-bec5-ed2cf44907c1", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - DtMF (Karaoke Version).mp4", + "title": "DtMF" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Marias", + "playlist_title": "No One Noticed", + "found_song": { + "artist": "The Marias", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37ff5d41-37d0-4acf-5f1c-2a49c34c22de", + "path": "z://MP4\\Sing King Karaoke\\The Marias - No One Noticed.mp4", + "title": "No One Noticed" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Got Better", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b2b44598-80a5-fbaa-a291-ffc47cf6e7ae", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Got Better (Karaoke Version).mp4", + "title": "I Got Better" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Manchild", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576600ae-b8e2-8dd5-3eec-157fcee8de7e", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Manchild (Karaoke Version).mp4", + "title": "Manchild" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Ravyn Lenae", + "playlist_title": "Love Me Not", + "found_song": { + "artist": "Ravyn Lenae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4495b3-0ef1-6b9f-e657-816590ccb331", + "path": "z://MP4\\Sing King Karaoke\\Ravyn Lenae - Love Me Not (Karaoke Version).mp4", + "title": "Love Me Not" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Gigi Perez", + "playlist_title": "Sailor Song", + "found_song": { + "artist": "Gigi Perez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "708d4809-5853-8419-0a63-d209e642f8a2", + "path": "z://MP4\\Sing King Karaoke\\Gigi Perez - Sailor Song (Karaoke Version).mp4", + "title": "Sailor Song" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Doechii", + "playlist_title": "Denial Is A River", + "found_song": { + "artist": "Doechii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8979f1e2-8c09-f7f0-70df-89a79a37dfcb", + "path": "z://MP4\\Sing King Karaoke\\Doechii - Denial Is A River.mp4", + "title": "Denial Is A River" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Zach Top", + "playlist_title": "I Never Lie", + "found_song": { + "artist": "Zach Top", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43bee50c-ab50-1919-c283-c5e1306089d3", + "path": "z://MP4\\Sing King Karaoke\\Zach Top - I Never Lie (Karaoke Version).mp4", + "title": "I Never Lie" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ella Langley", + "playlist_title": "Weren't For The Wind", + "found_song": { + "artist": "Ella Langley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09ac26f4-79e4-8dc2-bcac-c9ef6bd6e511", + "path": "z://MP4\\Sing King Karaoke\\Ella Langley - weren't for the wind (Karaoke Version).mp4", + "title": "weren't for the wind" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Smile", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32dfa0e-bb0b-8d78-3cad-a8ca499336a3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Smile.mp4", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bad Bunny", + "playlist_title": "Baile Inolvidable", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "201a5a42-0a2f-d415-b310-4f114c364d38", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - BAILE INoLVIDABLE (Karaoke Version).mp4", + "title": "BAILE INoLVIDABLE" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Benson Boone", + "playlist_title": "Mystical Magical", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1018a9d3-5d8b-9a17-dc2e-9e9d0e65e8a6", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Mystical Magical (Karaoke Version).mp4", + "title": "Mystical Magical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Shaboozey", + "playlist_title": "Good News", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "guid": "fbabc154-3216-7076-b7e9-cc4ef2920ae5", + "path": "z://MP4\\Stingray Karaoke\\Shaboozey - Good News (Karaoke Version).mp4", + "title": "Good News" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Bed Chem", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "746be54f-dfe6-f096-a00b-f3b5f98f816a", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Bed Chem (Karaoke Version).mp4", + "title": "Bed Chem" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "I Ain't Coming Back", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d444fad-0e1a-fe28-0c43-2a505a6a49da", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - I Aint Comin Back (feat Post Malone.mp4", + "title": "I Aint Comin Back" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 16, + "artist": "Kendrick Lamar", + "title": "TV Off", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kendrick Lamar", + "title": "Squabble Up", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 1, + "missing_count": 2, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2024 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Teddy Swims", + "playlist_title": "Lose Control", + "found_song": { + "artist": "Teddy Swims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25d70408-0495-442a-8b9b-ce1cec192de2", + "path": "z://MP4\\Sing King Karaoke\\Teddy Swims - Lose Control (Karaoke Version).mp4", + "title": "Lose Control" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Benson Boone", + "playlist_title": "Beautiful Things", + "found_song": { + "artist": "Benson Boone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59928f52-8e82-ceaa-c4f8-95519420f6c8", + "path": "z://MP4\\Sing King Karaoke\\Benson Boone - Beautiful Things (Karaoke Version).mp4", + "title": "Beautiful Things" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Shaboozey", + "playlist_title": "A Bar Song (Tipsy)", + "found_song": { + "artist": "Shaboozey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed191f7-bb3f-633c-6763-27464548b959", + "path": "z://MP4\\Sing King Karaoke\\Shaboozey - A Bar Song (Tipsy.mp4", + "title": "A Bar Song (Tipsy)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Espresso", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f76adcef-f76f-4294-ec1a-f765c7337f4f", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Espresso (Karaoke Version).mp4", + "title": "Espresso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Hozier", + "playlist_title": "Too Sweet", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fed36cbc-6fc1-8c4c-786d-3211f6a5e3f7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Too Sweet (Karaoke Version).mp4", + "title": "Too Sweet" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "I Had Some Help", + "found_song": { + "artist": "Post Malone ft. Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a74c2a4-c7c1-fb72-3f2e-55162007b763", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, Morgan Wallen - I Had Some Help.mp4", + "title": "I Had Some Help" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Billie Eilish", + "playlist_title": "Birds Of A Feather", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4723e0b8-4ab9-dff3-4a94-aab4fe059b15", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - BIRDS OF A FEATHER (Karaoke Version).mp4", + "title": "BIRDS OF A FEATHER" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Not Like Us", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e25cbbe8-6aa3-5bd0-387d-efaa8e5561c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - Not Like Us (Karaoke Version).mp4", + "title": "Not Like Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tommy Richman", + "playlist_title": "Million Dollar Baby", + "found_song": { + "artist": "Tommy Richman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e04622d-2c44-b67e-ef19-5f23d74e6bb2", + "path": "z://MP4\\Sing King Karaoke\\Tommy Richman - MILLION DOLLAR BABY (Karaoke Version).mp4", + "title": "MILLION DOLLAR BABY" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jack Harlow", + "playlist_title": "Lovin On Me", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6cf30417-3cb7-d86c-1e32-bb65adf78cee", + "path": "z://MP4\\Sing King Karaoke\\Jack Harlow - Lovin On Me.mp4", + "title": "Lovin On Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chappell Roan", + "playlist_title": "Good Luck, Babe!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fcd5e9cd-f6a3-5d4c-a202-4881d68e8de9", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - Good Luck, Babe! (Karaoke Version).mp4", + "title": "Good Luck, Babe!" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "SZA", + "playlist_title": "Saturn", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96afb253-b553-712c-d082-9e55862545cf", + "path": "z://MP4\\Sing King Karaoke\\SZA - Saturn (Karaoke Version).mp4", + "title": "Saturn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Please Please Please", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "32dd3728-cd72-8ff6-c2bb-83b4f04e546c", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Please Please Please (Karaoke Version).mp4", + "title": "Please Please Please" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Gaga", + "playlist_title": "Die With A Smile", + "found_song": { + "artist": "Lady Gaga & Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "b9807cf7-9440-73b0-9734-9bf0766a9909", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga & Bruno Mars - Die With A Smile (Karaoke Version).mp4", + "title": "Die With A Smile" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Zach Bryan", + "playlist_title": "Pink Skies", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "777b38d4-41f7-da76-e60e-f5dd73f93bde", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Pink Skies (Karaoke Version).mp4", + "title": "Pink Skies" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dasha", + "playlist_title": "Austin", + "found_song": { + "artist": "Dasha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5161a767-35e4-f957-16c8-f0f1e25910c6", + "path": "z://MP4\\Sing King Karaoke\\Dasha - Austin.mp4", + "title": "Austin" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Doja Cat", + "playlist_title": "Agora Hills", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ee009ff-d4b1-b932-abfd-853e86523af3", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Agora Hills.mp4", + "title": "Agora Hills" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Luke Combs", + "playlist_title": "Ain't No Love In Oklahoma", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "44cce20d-99ed-54c0-0be8-75c75ab92f6a", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Ain't No Love In Oklahoma.mp4", + "title": "Ain't No Love In Oklahoma" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Taste", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "396e3acc-4a7b-5228-cacf-2f803041c0e6", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Taste (Karaoke Version).mp4", + "title": "Taste" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chappell Roan", + "playlist_title": "Hot To Go!", + "found_song": { + "artist": "Chappell Roan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f528176f-b611-7406-cc2e-74606f508395", + "path": "z://MP4\\Sing King Karaoke\\Chappell Roan - HOT TO GO! (Karaoke Version).mp4", + "title": "HOT TO GO!" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Sabrina Carpenter", + "playlist_title": "Feather", + "found_song": { + "artist": "Sabrina Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61fcc1dd-9caa-8c9c-297d-9db3fbac12dd", + "path": "z://MP4\\Sing King Karaoke\\Sabrina Carpenter - Feather (Karaoke Version).mp4", + "title": "Feather" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Tyla", + "playlist_title": "Water", + "found_song": { + "artist": "Tyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3cb2600a-0b77-85d1-5d2a-ad2f0e356e80", + "path": "z://MP4\\Sing King Karaoke\\Tyla - Water.mp4", + "title": "Water" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jelly Roll", + "playlist_title": "I Am Not Okay", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6055234-c952-8f64-e6be-c7918a583d44", + "path": "z://MP4\\Sing King Karaoke\\Jelly Roll - I Am Not Okay.mp4", + "title": "I Am Not Okay" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Texas Hold 'Em", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7217242c-c010-274f-08c6-6148f30b5944", + "path": "z://MP4\\Stingray Karaoke\\Beyonce - Texas Hold Em.mp4", + "title": "Texas Hold 'Em" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Eminem", + "playlist_title": "Houdini", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b6cd797-9d56-5f32-20d6-00d837596c75", + "path": "z://MP4\\Sing King Karaoke\\Eminem - Houdini (Karaoke Version).mp4", + "title": "Houdini" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Post Malone", + "playlist_title": "Pour Me A Drink", + "found_song": { + "artist": "Post Malone ft. Blake Shelton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "910f8d9a-cbb3-979e-f471-ed68bd8c45f2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Post Malone feat Blake Shelton - Pour Me A Drink (Without Backing Vocals) -.mp4", + "title": "Pour Me A Drink" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Weeknd", + "playlist_title": "Timeless", + "found_song": { + "artist": "The Weeknd, Playboy Carti", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664018f8-e1de-84f4-8507-ba15789f64cb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd, Playboy Carti - Timeless.mp4", + "title": "Timeless" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Flo Milli", + "playlist_title": "Never Lose Me", + "found_song": { + "artist": "Flo Milli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77285d76-662b-bcda-75eb-2803f94d9856", + "path": "z://MP4\\Sing King Karaoke\\Flo Milli - Never Lose Me.mp4", + "title": "Never Lose Me" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jimin", + "playlist_title": "Who", + "found_song": { + "artist": "Jimin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "959de075-da03-a27d-276e-cde34fc2bc6d", + "path": "z://MP4\\Sing King Karaoke\\Jimin - Who (Karaoke Version).mp4", + "title": "Who" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Djo", + "playlist_title": "End Of Beginning", + "found_song": { + "artist": "Djo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e114e7b-714d-5d29-78f9-a0a9b64bdabe", + "path": "z://MP4\\Sing King Karaoke\\Djo - End of Beginning (Karaoke Version).mp4", + "title": "End of Beginning" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "We Can't Be Friends (Wait For Your Love)", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e328b766-e4c6-702e-2714-68b3d0ea5a70", + "path": "z://MP4\\Stingray Karaoke\\Ariana Grande - We Cant Be Friends (Wait For Your Love.mp4", + "title": "We Can't Be Friends (Wait For Your Love)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fortnight", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41d574e0-19b7-8737-cef4-d62b635989de", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Fortnight.mp4", + "title": "Fortnight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Can Do It With A Broken Heart", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7563f047-1b3f-1f28-8a64-d98fe54e6383", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - I Can Do It With A Broken Heart.mp4", + "title": "I Can Do It With A Broken Heart" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 16, + "artist": "Future, Metro Boomin & Kendrick Lamar", + "title": "Like That", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Morgan Wallen", + "title": "Cowgirls", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Taylor Swift", + "title": "Cruel Summer [re-release]", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Marshmello", + "title": "Miles On It", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Morgan Wallen", + "title": "Lies Lies Lies", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "21 Savage", + "title": "Redrum", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "GloRilla", + "title": "Wanna Be", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Kanye West and Ty Dolla $ign", + "title": "Carnival", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Morgan Wallen", + "title": "Thinkin' Bout Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Taylor Swift", + "title": "Is It Over Now? (Taylor's Version)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 3, + "missing_count": 10, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2023 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Last Night", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534171b6-1de7-f01b-71ec-a80ce2adf2d2", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Last Night (Karaoke Version).mp4", + "title": "Last Night" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Flowers", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05de065a-2fbc-d03f-fd4a-2cd38422f621", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Flowers (Karaoke Version).mp4", + "title": "Flowers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "SZA", + "playlist_title": "Kill Bill", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a876e5f-7a4b-9714-8db1-efc3d1d36f83", + "path": "z://MP4\\Sing King Karaoke\\SZA - Kill Bill (Karaoke Version).mp4", + "title": "Kill Bill" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rema", + "playlist_title": "Calm Down", + "found_song": { + "artist": "Rema &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bcb537-1967-4ef3-86d1-f7ffb2c01b76", + "path": "z://MP4\\Sing King Karaoke\\Rema & Selena Gomez - Calm Down.mp4", + "title": "Calm Down" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "SZA", + "playlist_title": "Snooze", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebb0944d-6b49-f79e-fbc4-9b6b99eaaad3", + "path": "z://MP4\\Sing King Karaoke\\SZA - Snooze (Karaoke Version).mp4", + "title": "Snooze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Combs", + "playlist_title": "Fast Car", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edf6eccc-5f4d-fa9a-168e-27f0b97de41e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Fast Car (Karaoke Version).mp4", + "title": "Fast Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Doja Cat", + "playlist_title": "Paint The Town Red", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68043213-8689-9f23-15c7-29aa318b82e0", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Paint The Town Red (Karaoke Version).mp4", + "title": "Paint The Town Red" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Vampire", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac92be2a-60f8-6618-ce9b-be72b1e3bb3f", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - vampire (Karaoke Version).mp4", + "title": "vampire" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Toosii", + "playlist_title": "Favorite Song", + "found_song": { + "artist": "Toosii", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57bccd0f-2a6f-c34e-dfa1-e92b8cde5062", + "path": "z://MP4\\Sing King Karaoke\\Toosii - Favorite Song.mp4", + "title": "Favorite Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jelly Roll", + "playlist_title": "Need A Favor", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5a0228e-137f-97e3-95d1-28af37ac9b4c", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Need A Favor.mp4", + "title": "Need A Favor" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Dua Lipa", + "playlist_title": "Dance The Night", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5e2cac5-b9e1-09e1-a77e-75ffadf54edf", + "path": "z://MP4\\VocalStarKaraoke\\Dua Lipa - Dance The Night.mp4", + "title": "Dance The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "PinkPantheress", + "playlist_title": "Boy's A Liar, Pt. 2", + "found_song": { + "artist": "PinkPantheress, Ice Spice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3dfdf31-08cc-c16d-8977-05487e381c5c", + "path": "z://MP4\\Sing King Karaoke\\Pink Pantheress, Ice Spice - Boys a liar Pt 2.mp4", + "title": "Boy's a liar Pt. 2" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Eslabon Armado", + "playlist_title": "Ella Baila Sola", + "found_song": { + "artist": "Eslabon Armado, Peso Pluma", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2648069d-5072-644a-44e6-eae465a542f7", + "path": "z://MP4\\Sing King Karaoke\\Eslabon Armado, Peso Pluma - Ella Baila Sola (Karaoke Version).mp4", + "title": "Ella Baila Sola" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Zach Bryan", + "playlist_title": "I Remember Everything", + "found_song": { + "artist": "Zach Bryan, Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ac39e69-c0e1-b135-9b83-dd038760f94b", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan, Kacey Musgraves - I Remember Everything.mp4", + "title": "I Remember Everything" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kane Brown", + "playlist_title": "Thank God", + "found_song": { + "artist": "Kane Brown, Katelyn Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "957b98a1-995c-9294-006c-bd61399f15f9", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown, Katelyn Brown - Thank God.mp4", + "title": "Thank God" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Coi Leray", + "playlist_title": "Players", + "found_song": { + "artist": "Coi Leray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5720c368-afb8-92c8-a9e7-fb0232e71bba", + "path": "z://MP4\\Sing King Karaoke\\Coi Leray - Players.mp4", + "title": "Players" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tate McRae", + "playlist_title": "Greedy", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "863f4146-c897-5913-4e20-f4e3073aa13c", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - greedy (Karaoke Version).mp4", + "title": "greedy" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Grupo Frontera", + "playlist_title": "Un x100to", + "found_song": { + "artist": "Grupo Frontera, Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33584a9f-276d-995e-2457-622bf4a79605", + "path": "z://MP4\\Sing King Karaoke\\Grupo Frontera, Bad Bunny - un x100to (Karaoke Version).mp4", + "title": "un x100to" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Billie Eilish", + "playlist_title": "What Was I Made For?", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8244850e-b327-bf77-a6fa-562f7dd5bcfb", + "path": "z://MP4\\KaraokeOnVEVO\\Billie Eilish - What Was I Made For.mp4", + "title": "What Was I Made For?" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "RAYE", + "playlist_title": "Escapism", + "found_song": { + "artist": "RAYE, 070 Shake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee7e72fd-cf4b-3fda-ed55-251a2032a117", + "path": "z://MP4\\Sing King Karaoke\\RAYE, 070 Shake - Escapism.mp4", + "title": "Escapism." + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Post Malone", + "playlist_title": "Chemical", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b47b013c-2d76-f82f-3717-67c1b33e7030", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone - Chemical.mp4", + "title": "Chemical" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Used To Be Young", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42ccee5-1e69-598d-765a-e51a838af884", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Used To Be Young (Karaoke Version).mp4", + "title": "Used To Be Young" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Taylor Swift", + "playlist_title": "Karma", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e00aa6b4-04de-c7f8-dd13-b96a9044e1d0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Karma.mp4", + "title": "Karma" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lavender Haze", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9cd9e1f-f0f9-060a-588d-e2b0120ccaaf", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lavender Haze (Karaoke Version).mp4", + "title": "Lavender Haze" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Metro Boomin, The Weeknd & 21 Savage", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Weeknd", + "title": "Die For You [re-release]", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Morgan Wallen", + "title": "Thinkin' Bout Me", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Taylor Swift", + "title": "Cruel Summer [re-release]", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Gunna", + "title": "Fukumean", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Lil Durk", + "title": "All My Life", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Miguel", + "title": "Sure Thing [re-release]", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nicki Minaj and Ice Spice", + "title": "Barbie World", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Uzi Vert", + "title": "Just Wanna Rock", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Yng Lvcas", + "title": "La Bebe", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bailey Zimmerman", + "title": "Religiously", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Drake", + "title": "Rich Flex", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Drake", + "title": "Search & Rescue", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Fifty Fifty", + "title": "Cupid", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Morgan Wallen", + "title": "One Thing At A Time", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Metro Boomin, Future & Chris Brown", + "title": "Superhero (Heroes & Villains)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 3, + "missing_count": 16, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2022 - Top 50 Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Stay", + "found_song": { + "artist": "The Kid LAROI & Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8f8f2877-e968-a875-df4c-9ec9c197398e", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI & Justin Bieber - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elton John", + "playlist_title": "Cold Heart (PNAU Remix)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "332a01a2-856f-db65-9a20-d560ba04c8f0", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Cold Heart (PNAU Remix).mp4", + "title": "Cold Heart (PNAU Remix)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Post Malone", + "playlist_title": "I Like You (A Happier Song)", + "found_song": { + "artist": "Post Malone ft. Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03fad94f-364f-6370-a8d5-33464fac6bad", + "path": "z://MP4\\KaraokeOnVEVO\\Post Malone Featuring Doja Cat - I Like You (A Happier Song.mp4", + "title": "I Like You (A Happier Song)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lil Nas X", + "playlist_title": "That's What I Want", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c0dcb0c-51a7-3ab3-4e8b-4499b1296240", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Thats What I Want.mp4", + "title": "That's What I Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Adele", + "playlist_title": "Easy On Me", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "f71193d0-9484-56ca-5627-29eb00d15dff", + "path": "z://MP4\\TheKARAOKEChannel\\Adele - Easy On Me (Karaoke With Lyrics).mp4", + "title": "Easy On Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Nicky Youre", + "playlist_title": "Sunroof", + "found_song": { + "artist": "Nicky Youre & dazy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ada99226-079f-62e8-5e47-df3da7a3b6cd", + "path": "z://MP4\\Sing King Karaoke\\Nicky Youre & dazy - Sunroof.mp4", + "title": "Sunroof" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Lil Nas X", + "playlist_title": "Industry Baby", + "found_song": { + "artist": "Lil Nas X & Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12fb266f-d026-cebc-dc99-351c780849b7", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X & Jack Harlow - Industry Baby.mp4", + "title": "Industry Baby" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "Unholy", + "found_song": { + "artist": "Sam Smith ft. Kim Petras", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4720445d-d5cc-7c5f-8bc5-6868a29a2a48", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith, Kim Petras - Unholy.mp4", + "title": "Unholy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "One Right Now", + "found_song": { + "artist": "Post Malone ft. The Weeknd", + "disabled": false, + "favorite": false, + "guid": "c4191576-b710-c254-8eb1-a80d0a77ed5c", + "path": "z://MP4\\Sing King Karaoke\\Post Malone, The Weeknd - One Right Now (Karaoke Version).mp4", + "title": "One Right Now" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "David Guetta", + "playlist_title": "I'm Good (Blue)", + "found_song": { + "artist": "David Guetta &", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0390f1-14cb-2c2f-532b-e55895c9a4d2", + "path": "z://MP4\\Sing King Karaoke\\David Guetta & Bebe Rexha - Im Good (Blue.mp4", + "title": "I'm Good (Blue)" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Muni Long", + "playlist_title": "Hrs And Hrs", + "found_song": { + "artist": "Muni Long", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eefed0d-059d-63e4-4d3f-74af08d5c7e0", + "path": "z://MP4\\Sing King Karaoke\\Muni Long - Hrs And Hrs.mp4", + "title": "Hrs And Hrs" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 31, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Anti-Hero", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d870053-13e6-595a-79cb-96799f0ce6ad", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Anti-Hero (Karaoke Version).mp4", + "title": "Anti-Hero" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Future", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kodak Black", + "title": "Super Gremlin", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bad Bunny", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kate Bush", + "title": "Running Up That Hill [re-release]", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Carolina Gaitan, Mauro Castillo, Adassa, Rhenzy Feliz, Diane Guerrero, Stephanie Beatriz", + "title": "We Don't Talk About Bruno", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Drake", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Gunna and Future", + "title": "Pushin P", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jessica Darrow", + "title": "Surface Pressure", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 2, + "missing_count": 10, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2022 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons X JID", + "playlist_title": "Enemy", + "found_song": { + "artist": "Imagine Dragons X JID", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aaca7ee-7214-a18b-594a-0be332998515", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons X JID - Enemy.mp4", + "title": "Enemy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "GAYLE", + "playlist_title": "abcdefu", + "found_song": { + "artist": "GAYLE", + "disabled": false, + "favorite": false, + "guid": "5ae3f08f-5570-ee55-62f0-f3797e1ff7aa", + "path": "z://MP4\\Sing King Karaoke\\GAYLE - abcdefu (Karaoke Version).mp4", + "title": "abcdefu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "AJR", + "playlist_title": "World's Smallest Violin", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6404ba7-2343-c0e3-b8a0-d5922e5d2d33", + "path": "z://MP4\\Sing King Karaoke\\AJR - World's Smallest Violin (Karaoke Version).mp4", + "title": "World's Smallest Violin" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Metallica", + "playlist_title": "Master Of Puppets", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "a514c91f-1c12-800b-ca4e-175849d12199", + "path": "z://CDG\\Various\\Metallica - Master Of Puppets.mp3", + "title": "Master Of Puppets" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Noah Kahan", + "playlist_title": "Stick Season", + "found_song": { + "artist": "Noah Kahan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29866793-d06e-afe8-7c9c-848ed1d8591e", + "path": "z://MP4\\Sing King Karaoke\\Noah Kahan - Stick Season (Karaoke Version).mp4", + "title": "Stick Season" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foo Fighters", + "playlist_title": "My Hero", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "3dfcf4f9-6d34-c0f8-b91f-1018b7c15e9e", + "path": "z://CDG\\Various\\Foo Fighters - My Hero.mp3", + "title": "My Hero" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Elvis Presley", + "playlist_title": "Suspicious Minds", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "6709163c-b00f-db78-0f0d-cbb3b3789a32", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - Suspicious Minds (Karaoke Version).mp4", + "title": "Suspicious Minds" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Billie Eilish", + "playlist_title": "TV", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6f7a6bcb-24d7-83cc-446c-752b3b79e814", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - TV (Karaoke Version).mp4", + "title": "TV" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Maneskin", + "playlist_title": "Supermodel", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f35248a-e0e5-0d64-2b05-28ebd9fac046", + "path": "z://MP4\\VocalStarKaraoke\\Maneskin - Supermodel.mp4", + "title": "Supermodel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Sharks", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a99c7b-c4a9-9c7e-f05b-44d11dddfd08", + "path": "z://MP4\\KaraokeOnVEVO\\Imagine Dragons - Sharks.mp4", + "title": "Sharks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Nessa Barrett", + "playlist_title": "Die First", + "found_song": { + "artist": "Nessa Barrett", + "disabled": false, + "favorite": false, + "guid": "9e6e11e5-c8c8-8f4c-414e-656f8633af72", + "path": "z://MP4\\Sing King Karaoke\\Nessa Barrett - die first (Karaoke Version).mp4", + "title": "die first" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billie Eilish", + "playlist_title": "The 30th", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7c85452-2038-6a65-6493-a9684c21e1d8", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - The 30th.mp4", + "title": "The 30th" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Falling In Reverse", + "playlist_title": "Voices In My Head", + "found_song": { + "artist": "Falling In Reverse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0cc1a13d-0c54-fa9c-fe54-640af57f22aa", + "path": "z://MP4\\KaraokeOnVEVO\\Falling In Reverse - Voices In My Head.mp4", + "title": "Voices In My Head" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 22, + "playlist_artist": "Demi Lovato", + "playlist_title": "29", + "found_song": { + "artist": "Olly Murs ft. Demi Lovato", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ce0c677-c1a3-9fc2-6887-fdd9d816d95c", + "path": "z://MP4\\Sing King Karaoke\\Olly Murs Feat. Demi Lovato - Up.mp4", + "title": "Up" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "There'd Better Be A Mirrorball", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afd08dd-133e-91e8-fcb3-3e1db5ccc3fc", + "path": "z://MP4\\VocalStarKaraoke\\Arctic Monkeys - Thered Better Be A Mirrorball.mp4", + "title": "Thered Better Be A Mirrorball" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "The Killers", + "playlist_title": "Boy", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "192ec929-cd5b-f6d2-a3ca-ef89f1c2a33c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Bones.mp4", + "title": "Bones" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "AJR", + "playlist_title": "I Won't", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18475993-d9b5-96d8-cfeb-4acdcce60112", + "path": "z://MP4\\VocalStarKaraoke\\AJR - I Wont.mp4", + "title": "I Wont" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Foo Fighters", + "title": "Everlong", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gorillaz Featuring Tame Impala & Bootie Brown", + "title": "New Gold", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cafune", + "title": "Tek It", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Beach Weather", + "title": "Sex, Drugs, Etc.", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Pierce The Veil", + "title": "Pass The Nirvana", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "TALK", + "title": "Run Away To Mars", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The 1975", + "title": "I'm In Love With You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Zach Williams", + "title": "Heart Of God", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Gorillaz Featuring Thundercat", + "title": "Cracker Island", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "CORPSE, Scarlxrd & Kordhell", + "title": "Misa Misa!", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Rex Orange County", + "title": "Amazing", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Zach Bryan", + "title": "Sun To Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Zach Bryan", + "title": "Heavy Eyes", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Steve Lacy", + "title": "Mercury", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Steve Lacy Featuring Foushee", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Shinedown", + "title": "Daylight", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Suki Waterhouse", + "title": "Good Looking", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Panic! At The Disco", + "title": "Don't Let The Light Go Out", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Rex Orange County", + "title": "The Shade", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Steve Lacy", + "title": "Helmet", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Disturbed", + "title": "Hey You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Vance Joy", + "title": "Clarity", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 4, + "missing_count": 25, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2022 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Brown", + "playlist_title": "Under The Influence", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7eaef0d6-4d72-7494-ce64-16f1054fcc29", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Under The Influence (Karaoke Version).mp4", + "title": "Under The Influence" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Beyonce", + "playlist_title": "Cuff It", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d684f929-aa2f-2a48-9869-51f20eec7ccc", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Cuff It.mp4", + "title": "Cuff It" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 38, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Vette Motors", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lil Baby", + "title": "Detox", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lil Baby", + "title": "In A Minute", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Yeat", + "title": "Talk", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tems", + "title": "Free Mind", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lil Tjay", + "title": "Beat The Odds", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake", + "title": "Sticky", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rod Wave", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Beyonce", + "title": "Alien Superstar", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Future & Lil Baby", + "title": "Big Time", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Post Malone Featuring Roddy Ricch", + "title": "Cooped Up", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "City Girls & Usher", + "title": "Good Love", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ice Spice", + "title": "Munch (Feelin' U)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Diddy & Bryson Tiller", + "title": "Gotta Move On", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DJ Khaled Featuring Juice WRLD", + "title": "Juice WRLD Did", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "GloRilla", + "title": "Blessed", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Finesse2Tymes", + "title": "Back End", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "NAV, Travis Scott & Lil Baby", + "title": "Never Sleep", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Moneybagg Yo", + "title": "See Wat I'm Sayin", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Kendrick Lamar, Blxst & Amanda Reifer", + "title": "Die Hard", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Pharrell Williams Featuring 21 Savage & Tyler, The Creator", + "title": "Cash In Cash Out", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "YG", + "title": "Toxic", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Beyonce", + "title": "Church Girl", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Rod Wave", + "title": "Sweet Little Lies", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Chris Brown Featuring WizKid", + "title": "Call Me Everyday", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Future", + "title": "Love You Better", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Lil Baby, 42 Dugg & Veeze", + "title": "U-Digg", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rod Wave Featuring Jack Harlow", + "title": "Yungen", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 1, + "missing_count": 40, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2022 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Charlie Puth Featuring Jung Kook", + "playlist_title": "Left And Right", + "found_song": { + "artist": "Charlie Puth Featuring Jung Kook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a83d2c5-dc7e-b7e4-f1d2-9385fa487fcb", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Jung Kook - Left And Right.mp4", + "title": "Left And Right" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Louis Tomlinson", + "playlist_title": "Bigger Than Me", + "found_song": { + "artist": "Louis Tomlinson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46454cde-26d7-397b-d629-0f7a863301f0", + "path": "z://MP4\\KaraokeOnVEVO\\Louis Tomlinson - Bigger Than Me.mp4", + "title": "Bigger Than Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Post Malone Featuring Doja Cat", + "title": "I Like You (A Happier Song)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Elton John & Britney Spears", + "title": "Hold Me Closer", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Black Eyed Peas, Shakira + David Guetta", + "title": "Don't You Worry", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kane Brown", + "title": "Grand", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull + Zac Brown", + "title": "Can't Stop Us Now", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ellie Goulding Featuring Big Sean", + "title": "Easy Lover", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Kx5 Featuring Hayla", + "title": "Escape", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Macklemore Featuring Windser", + "title": "Maniac", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "David Guetta & Bebe Rexha", + "title": "I'm Good (Blue)", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd, Maren Morris & BEAUZ", + "title": "Make You Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 1, + "missing_count": 16, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2022 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Harry Styles", + "playlist_title": "As It Was", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e3bb1857-fa33-a1a9-afa4-21a04a0f8b07", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - As It Was (Karaoke Version).mp4", + "title": "As It Was" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Steve Lacy", + "playlist_title": "Bad Habit", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bc2462f-3620-621d-e783-31e7babc929b", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Bad Habit (Karaoke Version).mp4", + "title": "Bad Habit" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Harry Styles", + "playlist_title": "Late Night Talking", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "c34e4988-c0c8-6d37-4fe0-1a7a89ba5598", + "path": "z://MP4\\TheKARAOKEChannel\\Harry Styles - Late Night Talking (Karaoke).mp4", + "title": "Late Night Talking" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lizzo", + "playlist_title": "About Damn Time", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96344f43-56fd-c2aa-b3a3-020be0b0993e", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - About Damn Time (Karaoke Version).mp4", + "title": "About Damn Time" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Freaky Girl", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4270abf6-a9ff-3d5f-bbcf-66ee2ba43728", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Freaky Girl (Karaoke Version).mp4", + "title": "Super Freaky Girl" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill (A Deal With God)", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "085df830-2443-f6c0-1387-8b42a728b4a2", + "path": "z://MP4\\Sing King Karaoke\\Kate Bush - Running Up That Hill (A Deal With God) (Karaoke Version).mp4", + "title": "Running Up That Hill (A Deal With God)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beyonce", + "playlist_title": "Break My Soul", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6a926f1-410c-163b-7484-76f9392852e5", + "path": "z://MP4\\VocalStarKaraoke\\Beyonce - Break My Soul.mp4", + "title": "Break My Soul" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jack Harlow", + "playlist_title": "First Class", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "guid": "f22404f3-3f69-20fd-0d8f-a44c6fec8708", + "path": "z://MP4\\TheKARAOKEChannel\\Jack Harlow - First Class (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "First Class" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Doja Cat", + "playlist_title": "Vegas", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f1eabde-b0ab-0bb3-7674-923ef720057c", + "path": "z://MP4\\VocalStarKaraoke\\Doja Cat - Vegas.mp4", + "title": "Vegas" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Joji", + "playlist_title": "Glimpse Of Us", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef36883-ad10-2015-b526-551ba728f87c", + "path": "z://MP4\\Sing King Karaoke\\Joji - Glimpse of Us (Karaoke Version).mp4", + "title": "Glimpse of Us" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bad Bunny", + "playlist_title": "Moscow Mule", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15717045-fd2a-cc5e-3cb4-1627e7e85af4", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Moscow Mule (Karaoke Version).mp4", + "title": "Moscow Mule" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Justin Bieber", + "playlist_title": "Ghost", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23173c42-ca61-324b-d053-c2ad72784f1b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shivers", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef94d586-a0e0-9ecd-5987-5b1c5b4065f3", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shivers (Karaoke Version).mp4", + "title": "Shivers" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Charlie Puth Featuring Jung Kook", + "playlist_title": "Left And Right", + "found_song": { + "artist": "Charlie Puth Featuring Jung Kook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a83d2c5-dc7e-b7e4-f1d2-9385fa487fcb", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Jung Kook - Left And Right.mp4", + "title": "Left And Right" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Sia", + "playlist_title": "Unstoppable", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "f3931d1a-1d08-1fe3-6208-de4a076a8720", + "path": "z://MP4\\Sing King Karaoke\\Sia - Unstoppable (Karaoke Version).mp4", + "title": "Unstoppable" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Em Beihold", + "playlist_title": "Numb Little Bug", + "found_song": { + "artist": "Em Beihold", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7fc7c39-f00d-32f6-fd37-69ee0157e529", + "path": "z://MP4\\Sing King Karaoke\\Em Beihold - Numb Little Bug.mp4", + "title": "Numb Little Bug" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bones", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f43fd104-87e8-42df-d83b-daf51cd430f0", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bones (Karaoke Version).mp4", + "title": "Bones" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Jax", + "playlist_title": "Victoria's Secret", + "found_song": { + "artist": "Jax", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bbf47b1-40ad-7b1c-2a8d-cd1ff9485dd9", + "path": "z://MP4\\Sing King Karaoke\\Jax - Victoria's Secret (Karaoke Version).mp4", + "title": "Victoria's Secret" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Halsey", + "playlist_title": "So Good", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad3e266-edd5-429b-f9a5-e7d31dab1a70", + "path": "z://MP4\\KaraokeOnVEVO\\Halsey - So Good.mp4", + "title": "So Good" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Ingrid Andress With Sam Hunt", + "playlist_title": "Wishful Drinking", + "found_song": { + "artist": "Ingrid Andress With Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e89113b2-56ff-5726-3205-517d8cf0b758", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress With Sam Hunt - Wishful Drinking.mp4", + "title": "Wishful Drinking" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "JVKE", + "playlist_title": "Golden Hour", + "found_song": { + "artist": "JVKE", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3cdcbf9-4e69-95dd-8d20-5f66ec00509e", + "path": "z://MP4\\Sing King Karaoke\\JVKE - golden hour (Karaoke Version).mp4", + "title": "golden hour" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "BLACKPINK", + "playlist_title": "Pink Venom", + "found_song": { + "artist": "BLACKPINK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be28a334-3b0f-d50c-e3d4-f2917a752e5e", + "path": "z://MP4\\Sing King Karaoke\\BLACKPINK - Pink Venom (Karaoke Version).mp4", + "title": "Pink Venom" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Stephen Sanchez", + "playlist_title": "Until I Found You", + "found_song": { + "artist": "Stephen Sanchez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3f82c590-6b0e-360c-7b9e-4efbefc95ea2", + "path": "z://MP4\\Sing King Karaoke\\Stephen Sanchez - Until I Found You (Karaoke Version).mp4", + "title": "Until I Found You" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "d4vd", + "playlist_title": "Romantic Homicide", + "found_song": { + "artist": "d4vd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36f1ac1a-6dbf-feac-d6fc-4d496a02a455", + "path": "z://MP4\\Sing King Karaoke\\d4vd - Romantic Homicide (Karaoke Version).mp4", + "title": "Romantic Homicide" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Lizzo", + "playlist_title": "2 Be Loved (Am I Ready)", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03ef2818-3036-3097-2e10-bbdf05fd5af9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lizzo - 2 Be Loved (Am I Ready).mp4", + "title": "2 Be Loved (Am I Ready)" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Harry Styles", + "playlist_title": "Music For A Sushi Restaurant", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b426848-0057-3cf4-cc16-2ecc257d360b", + "path": "z://MP4\\KaraokeOnVEVO\\Harry Styles - Music For A Sushi Restaurant.mp4", + "title": "Music For A Sushi Restaurant" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rosa Linn", + "playlist_title": "Snap", + "found_song": { + "artist": "Rosa Linn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "adee7e08-5ef2-56ee-f544-d8c06b8f0093", + "path": "z://MP4\\Sing King Karaoke\\Rosa Linn - SNAP (Karaoke Version).mp4", + "title": "SNAP" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Steve Lacy", + "playlist_title": "Static", + "found_song": { + "artist": "Steve Lacy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "505de0dc-6a18-5ff7-3ef0-ad7906090fa4", + "path": "z://MP4\\Sing King Karaoke\\Steve Lacy - Static (Karaoke Version).mp4", + "title": "Static" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "OneRepublic", + "playlist_title": "I Ain't Worried", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b58b3512-608a-f706-0bb3-9b466b69510c", + "path": "z://MP4\\VocalStarKaraoke\\OneRepublic - I Aint Worried.mp4", + "title": "I Aint Worried" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Nicky Youre & dazy", + "title": "Sunroof", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Post Malone Featuring Doja Cat", + "title": "I Like You (A Happier Song)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Future Featuring Drake & Tems", + "title": "Wait For U", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Bad Bunny & Chencho Corleone", + "title": "Me Porto Bonito", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Bad Bunny", + "title": "Titi Me Pregunto", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Drake Featuring 21 Savage", + "title": "Jimmy Cooks", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Elton John & Britney Spears", + "title": "Hold Me Closer", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lil Baby", + "title": "Detox", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Latto", + "title": "Big Energy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "DJ Khaled Featuring Drake & Lil Baby", + "title": "Staying Alive", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yung Gravy", + "title": "Betty (Get Money)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Baby", + "title": "In A Minute", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Bad Bunny", + "title": "Efecto", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Marshmello & Khalid", + "title": "Numb", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Bailey Zimmerman", + "title": "Fall In Love", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Yeat", + "title": "Talk", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "DJ Khaled Featuring Rick Ross, Lil Wayne, JAY-Z, John Legend & Fridayy", + "title": "God Did", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Karol G", + "title": "Provenza", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "David Guetta & Bebe Rexha", + "title": "I'm Good (Blue)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Nardo Wick", + "title": "Dah Dah DahDah", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Karol G x Maldy", + "title": "Gatubela", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Burna Boy", + "title": "Last Last", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cardi B, Ye & Lil Durk", + "title": "Hot Shit", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Tems", + "title": "Free Mind", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "SleazyWorld Go Featuring Lil Baby", + "title": "Sleazy Flow", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Justin Moore", + "title": "With A Woman You Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Bad Bunny & Rauw Alejandro", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Rosalia", + "title": "Despecha", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Hitkidd & GloRilla", + "title": "F.N.F. (Let's Go)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bad Bunny & Bomba Estereo", + "title": "Ojitos Lindos", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil Tjay", + "title": "Beat The Odds", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Drake", + "title": "Sticky", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Gabby Barrett", + "title": "Pick Me Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Despues de La Playa", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DJ Khaled Featuring Future & SZA", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bailey Zimmerman", + "title": "Where It Ends", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Rod Wave", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Bad Bunny", + "title": "Neverita", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brent Faiyaz", + "title": "All Mine", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Tarot", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Manuel Turizo", + "title": "La Bachata", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Lee Brice", + "title": "Soul", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "benny blanco, BTS & Snoop Dogg", + "title": "Bad Decisions", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Rema & Selena Gomez", + "title": "Calm Down", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Future", + "title": "Puffin On Zootiez", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Quavo & Takeoff", + "title": "Hotel Lobby (Unc And Phew)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bizarrap & Quevedo", + "title": "Bzrp Music Sessions, Vol. 52", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Armani White", + "title": "Billie Eilish.", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Romeo Santos & Justin Timberlake", + "title": "Sin Fin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 41, + "fuzzy_match_count": 2, + "missing_count": 57, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2022 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Morgan Wallen", + "playlist_title": "You Proof", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60f04a9e-7edd-b30a-7347-7057599ab738", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - You Proof.mp4", + "title": "You Proof" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "The Kind Of Love We Make", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef246e2b-a870-f474-7777-4e0af7a92be1", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - The Kind of Love We Make (Karaoke Version).mp4", + "title": "The Kind of Love We Make" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Wasted On You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d7ada087-6f5a-fd49-a46d-cd621c65fd66", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Wasted On You (Karaoke Version).mp4", + "title": "Wasted On You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Cole Swindell", + "playlist_title": "She Had Me At Heads Carolina", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ade05-0d0e-5cbd-d83c-370a8db80e1d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cole Swindell - She Had Me At Heads Carolina.mp4", + "title": "She Had Me At Heads Carolina" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Zach Bryan", + "playlist_title": "Something In The Orange", + "found_song": { + "artist": "Zach Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd41ca30-448f-9c57-0414-c9dd5db6a7e1", + "path": "z://MP4\\Sing King Karaoke\\Zach Bryan - Something in the Orange (Karaoke Version).mp4", + "title": "Something in the Orange" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bailey Zimmerman", + "playlist_title": "Rock And A Hard Place", + "found_song": { + "artist": "Bailey Zimmerman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb974cb-d435-bfc9-84c0-0341a4cb8837", + "path": "z://MP4\\Sing King Karaoke\\Bailey Zimmerman - Rock and A Hard Place (Karaoke Version).mp4", + "title": "Rock and A Hard Place" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jelly Roll", + "playlist_title": "Son Of A Sinner", + "found_song": { + "artist": "Jelly Roll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92783478-7334-888c-3ad0-37ff089ae715", + "path": "z://MP4\\KaraokeOnVEVO\\Jelly Roll - Son Of A Sinner.mp4", + "title": "Son Of A Sinner" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ingrid Andress With Sam Hunt", + "playlist_title": "Wishful Drinking", + "found_song": { + "artist": "Ingrid Andress With Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e89113b2-56ff-5726-3205-517d8cf0b758", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress With Sam Hunt - Wishful Drinking.mp4", + "title": "Wishful Drinking" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nate Smith", + "playlist_title": "Whiskey On You", + "found_song": { + "artist": "Nate Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f19c7b0d-5c78-30d9-0c9c-daf6d3a7f606", + "path": "z://MP4\\KaraokeOnVEVO\\Nate Smith - Whiskey On You.mp4", + "title": "Whiskey On You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Ghost Story", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55b70d5b-77f7-e0a4-6f9b-62f379edaf2e", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Ghost Story.mp4", + "title": "Ghost Story" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jackson Dean", + "playlist_title": "Don't Come Lookin'", + "found_song": { + "artist": "Jackson Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd5c0008-bd49-0ef9-7692-12406f44562c", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson Dean - Dont Come Lookin.mp4", + "title": "Don't Come Lookin'" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Thought You Should Know", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "658691d6-43c0-7874-6cbe-4377f3fc39ae", + "path": "z://MP4\\VocalStarKaraoke\\Morgan Wallen - Thought You Should Know.mp4", + "title": "Thought You Should Know" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lainey Wilson", + "playlist_title": "Heart Like A Truck", + "found_song": { + "artist": "Lainey Wilson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0389c8e3-bb2b-307c-e817-4305e4281bd6", + "path": "z://MP4\\Sing King Karaoke\\Lainey Wilson - Heart Like A Truck.mp4", + "title": "Heart Like A Truck" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "Luke Bryan", + "playlist_title": "Country On", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "49f53430-7498-7af5-340f-875c039dc0dd", + "path": "z://MP4\\Stingray Karaoke\\Luke Bryan - Country Girl (Shake It For Me) Karaoke Version.mp4", + "title": "Country Girl" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Carly Pearce", + "playlist_title": "What He Didn't Do", + "found_song": { + "artist": "Carly Pearce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b1f9dc08-25a7-f221-709d-56012e8049be", + "path": "z://MP4\\VocalStarKaraoke\\Carly Pearce - What He Didnt Do.mp4", + "title": "What He Didnt Do" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Tyler Hubbard", + "title": "5 Foot 9", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jon Pardi", + "title": "Last Night Lonely", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Bailey Zimmerman", + "title": "Fall In Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Justin Moore", + "title": "With A Woman You Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kane Brown", + "title": "Like I Love Country Music", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gabby Barrett", + "title": "Pick Me Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Russell Dickerson & Jake Scott", + "title": "She Likes It", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bailey Zimmerman", + "title": "Where It Ends", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jordan Davis", + "title": "What My World Spins Around", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Thomas Rhett Featuring Riley Green", + "title": "Half Of Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lee Brice", + "title": "Soul", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Zach Bryan", + "title": "Oklahoma Smoke Show", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Corey Kent", + "title": "Wild As Her", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Old Dominion", + "title": "No Hard Feelings", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "HARDY Featuring Lainey Wilson", + "title": "Wait In The Truck", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Chris Stapleton", + "title": "Joy Of My Life", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Kelsea Ballerini", + "title": "Heartfirst", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jimmie Allen", + "title": "Down Home", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Zac Brown Band", + "title": "Out In The Middle", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BRELAND Featuring Lady A", + "title": "Told You I Could Drink", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Hailey Whitters", + "title": "Everything She Ain't", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "David Morris", + "title": "Dutton Ranch Freestyle", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Koe Wetzel", + "title": "Creeps", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Jason Aldean", + "title": "That's What Tequila Does", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Dustin Lynch", + "title": "Party Mode", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Little Big Town", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Parker McCollum", + "title": "Handle On You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Walker Hayes", + "title": "Y'all Life", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Drew Green", + "title": "Good Ol' Man", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Luke Combs", + "title": "Tomorrow Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jordan Davis", + "title": "Next Thing You Know", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Frank Ray", + "title": "Country'd Look Good On You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sam Hunt", + "title": "Water Under The Bridge", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Can't Have Mine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 35, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Dreams", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a354524b-3343-e0a7-e332-11645e2a442f", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Dreams (Karaoke Version).mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Billie Eilish", + "playlist_title": "Your Power", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb70b0d7-0df6-e135-d35e-c1dfb460de68", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Your Power (Karaoke Version).mp4", + "title": "Your Power" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Male Fantasy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "6462e7a8-10d8-fd2a-56de-660ee8662c07", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Male Fantasy (Karaoke Version).mp4", + "title": "Male Fantasy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Brutal", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "bd4b44d5-b689-ee64-90bd-d1314912c0e4", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - brutal (Karaoke Version).mp4", + "title": "brutal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Maneskin", + "playlist_title": "I Wanna Be Your Slave", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc17f1fb-e9d1-cf02-2082-9a46644f9b1e", + "path": "z://MP4\\KaraokeOnVEVO\\Maneskin - I Wanna Be Your Slave.mp4", + "title": "I Wanna Be Your Slave" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Follow You", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a41bd323-8641-0aff-b418-b1ae370b0a43", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Follow You (Karaoke Version).mp4", + "title": "Follow You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Surf Curse", + "playlist_title": "Freaks", + "found_song": { + "artist": "Surf Curse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0bd2b48-baa9-1576-55c4-df5ceaa7270a", + "path": "z://MP4\\Sing King Karaoke\\Surf Curse - Freaks (Karaoke Version).mp4", + "title": "Freaks" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Wrecked", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "e45ec851-8ee5-b34e-c10d-61c4e181a3bc", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Wrecked (Karaoke Version).mp4", + "title": "Wrecked" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lorde", + "playlist_title": "Solar Power", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ad46914-fe77-dedf-8524-aebd9009e0a2", + "path": "z://MP4\\VocalStarKaraoke\\Lorde - Solar Power.mp4", + "title": "Solar Power" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "AURORA", + "playlist_title": "Runaway", + "found_song": { + "artist": "Aurora", + "disabled": false, + "favorite": false, + "guid": "a9e2158c-f693-e6ea-3fe4-84582ec646dd", + "path": "z://MP4\\Sing King Karaoke\\Aurora - Runaway (Karaoke Version).mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Higher Power", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "404361fa-961d-87c5-d5d7-20ad64059c3a", + "path": "z://MP4\\KaraFun Karaoke\\Higher Power - Coldplay Karaoke Version KaraFun.mp4", + "title": "Higher Power" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Vance Joy", + "playlist_title": "Missing Piece", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abecd49e-f5a8-e350-0fe3-29050d9d8cff", + "path": "z://MP4\\VocalStarKaraoke\\Vance Joy - Missing Piece.mp4", + "title": "Missing Piece" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "girl in red", + "playlist_title": "Serotonin", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ab9a71d-b0d0-85a0-1c02-c7401e86cdc7", + "path": "z://MP4\\VocalStarKaraoke\\girl in red - Serotonin.mp4", + "title": "Serotonin" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "John Mayer", + "playlist_title": "Last Train Home", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c045d59-7d96-b9a2-cb8c-28616f15073a", + "path": "z://MP4\\ZoomKaraokeOfficial\\John Mayer - Last Train Home.mp4", + "title": "Last Train Home" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "PinkPantheress", + "playlist_title": "Passion", + "found_song": { + "artist": "PinkPantheress", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b01737d-bb96-8ced-b2f8-1e3fb22224c9", + "path": "z://MP4\\Sing King Karaoke\\PinkPantheress - Passion.mp4", + "title": "Passion" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "twenty one pilots", + "playlist_title": "Shy Away", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "992cbb26-6eba-d3b5-9c9b-883ac5f62ec4", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Shy Away (Karaoke Version).mp4", + "title": "Shy Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Billie Eilish", + "playlist_title": "OverHeated", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "703d04b5-3810-8c68-5971-c511811e98db", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Bored (Karaoke Version).mp4", + "title": "Bored" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Billie Eilish", + "title": "Billie Bossa Nova", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Billie Eilish", + "title": "Oxytocin", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billie Eilish", + "title": "I Didn't Change My Number", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Billie Eilish", + "title": "Goldwing", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Willow Featuring Travis Barker", + "title": "transparentsoul", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Billie Eilish", + "title": "Everybody Dies", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Billie Eilish", + "title": "Not My Responsibility", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Weezer", + "title": "All My Favorite Songs", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Big Red Machine Featuring Taylor Swift", + "title": "Renegade", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "PinkPantheress", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rise Against", + "title": "Nowhere Generation", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Modest Mouse", + "title": "We Are Between", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bleachers", + "title": "Stop Making This Hurt", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Machine Gun Kelly Featuring Kellin Quinn", + "title": "Love Race", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lorde", + "title": "Stoned At The Nail Salon", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Foo Fighters", + "title": "Making A Fire", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "bbno$ Featuring Rich Brian", + "title": "Edamame", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Five Finger Death Punch", + "title": "Darkness Settles In", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Clairo", + "title": "Amoeba", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 2, + "missing_count": 22, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Doja Cat", + "playlist_title": "Woman", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de8b0c25-d2e5-068a-ea7c-400844bef91e", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat - Woman (Karaoke Version).mp4", + "title": "Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Nevada", + "found_song": { + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221d49c0-af07-7045-4605-90d5b0abc4e4", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD & YoungBoy Never Broke Again - Bandit.mp4", + "title": "Bandit" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Roddy Ricch", + "title": "Late At Night", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Doja Cat", + "title": "Ain't Shit", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "BIA Featuring Nicki Minaj", + "title": "Whole Lotta Money", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake Featuring Lil Baby", + "title": "Wants And Needs", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Tjay Featuring 6LACK", + "title": "Calling My Phone", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moneybagg Yo", + "title": "Time Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rod Wave", + "title": "Tombstone", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "City Girls", + "title": "Twerkulator", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyler, The Creator Featuring YoungBoy Never Broke Again & Ty Dolla $ign", + "title": "WUSYANAME", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Young Thug & Gunna", + "title": "Ski", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "DaBaby", + "title": "Red Light Green Light", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "T-Pain & Kehlani", + "title": "I Like Dat", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "42 Dugg & Roddy Ricch", + "title": "4 Da Gang", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brent Faiyaz Featuring Drake", + "title": "Wasting Time", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "42 Dugg Featuring Future", + "title": "Maybach", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Trippie Redd & Playboi Carti", + "title": "Miss The Rage", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring Lil Uzi Vert", + "title": "Holy Smokes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Wale Featuring Chris Brown", + "title": "Angles", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Isaiah Rashad", + "title": "RIP Young", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cochise & $NOT", + "title": "Tell Em", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "J. Cole & Lil Baby", + "title": "pride.is.the.devil", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "EST Gee", + "title": "Lick Back", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 2, + "missing_count": 41, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2021 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Doja Cat Featuring SZA", + "playlist_title": "Kiss Me More", + "found_song": { + "artist": "Doja Cat Featuring SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff508c0d-6a40-695e-99b3-fe8a38b41a7b", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat Featuring SZA - Kiss Me More.mp4", + "title": "Kiss Me More" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dua Lipa", + "playlist_title": "Levitating", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "438ba797-9c58-62de-604f-c853f2c519fe", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Levitating (Karaoke Version).mp4", + "title": "Levitating" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Weeknd", + "playlist_title": "Take My Breath", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "d8d25e8d-1897-81e7-ad99-6788f0ca053c", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Take My Breath (Karaoke Version).mp4", + "title": "Take My Breath" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Maroon 5", + "playlist_title": "Lost", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ed2b50c-93cc-309f-a1a3-ec554d8854aa", + "path": "z://MP4\\VocalStarKaraoke\\Maroon 5 - Lost.mp4", + "title": "Lost" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "twenty one pilots", + "playlist_title": "Saturday", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "917159e4-03ab-0bad-ca7c-3f7d7a7fd703", + "path": "z://MP4\\VocalStarKaraoke\\twenty one pilots - Saturday.mp4", + "title": "Saturday" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tesher X Jason Derulo", + "playlist_title": "Jalebi Baby", + "found_song": { + "artist": "Tesher X Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b2b4a0a-9379-2e1d-1e47-b5b10dc99516", + "path": "z://MP4\\VocalStarKaraoke\\Tesher X Jason Derulo - Jalebi Baby.mp4", + "title": "Jalebi Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello ft. Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ed52b-608a-72bb-5e5f-bba2e2e9a466", + "path": "z://MP4\\Sing King Karaoke\\Marshmello X Jonas Brothers - Leave Before You Love Me.mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bazzi", + "title": "I Like That", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Pop Smoke Featuring Dua Lipa", + "title": "Demeanor", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tones And I", + "title": "Cloudy Day", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Dixie Featuring Rubi Rose", + "title": "Psycho", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Alessia Cara", + "title": "Sweet Dream", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Swedish House Mafia Featuring Ty Dolla $ign & 070 Shake", + "title": "Lifetime", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 3, + "missing_count": 15, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2021 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Good 4 U", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100880b2-e004-2f90-16a2-e1f21ec0a772", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - good 4 u (Karaoke Version).mp4", + "title": "good 4 u" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "BTS", + "playlist_title": "Butter", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "a872ee15-8899-bf22-7384-6fb9f03df6f6", + "path": "z://MP4\\Sing King Karaoke\\BTS - Butter (Karaoke Version).mp4", + "title": "Butter" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Bad Habits", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "2bf72f09-d009-22be-c164-8fd85857630e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Bad Habits (Karaoke Version).mp4", + "title": "Bad Habits" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Doja Cat Featuring SZA", + "playlist_title": "Kiss Me More", + "found_song": { + "artist": "Doja Cat Featuring SZA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff508c0d-6a40-695e-99b3-fe8a38b41a7b", + "path": "z://MP4\\Sing King Karaoke\\Doja Cat Featuring SZA - Kiss Me More.mp4", + "title": "Kiss Me More" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lil Nas X", + "playlist_title": "Montero (Call Me By Your Name)", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "f5311fdd-b9e4-5192-0517-536ae897cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Montero (Call Me By Your Name) - Lil Nas X Karaoke Version KaraFun.mp4", + "title": "Montero (Call Me By Your Name)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "946d8d83-62ee-802f-5db2-f21a61a9df86", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - deja vu (Karaoke Version).mp4", + "title": "deja vu" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billie Eilish", + "playlist_title": "Happier Than Ever", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d63ff65d-4573-d54f-47f9-a09092e98871", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Happier Than Ever (Karaoke Version).mp4", + "title": "Happier Than Ever" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Giveon", + "playlist_title": "Heartbreak Anniversary", + "found_song": { + "artist": "Giveon", + "disabled": false, + "favorite": false, + "guid": "4768177f-2db2-c155-b45c-fdf874420553", + "path": "z://MP4\\Sing King Karaoke\\Giveon - HEARTBREAK ANNIVERSARY (Karaoke Version).mp4", + "title": "HEARTBREAK ANNIVERSARY" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Polo G", + "playlist_title": "Rapstar", + "found_song": { + "artist": "Polo G", + "disabled": false, + "favorite": false, + "guid": "f515004c-3364-3a71-e817-34ec72b931e8", + "path": "z://MP4\\Sing King Karaoke\\Polo G - RAPSTAR (Karaoke Version).mp4", + "title": "RAPSTAR" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Kid LAROI", + "playlist_title": "Without You", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "ff5142a1-84a3-3975-b876-23f706442952", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - WITHOUT YOU (Karaoke Version).mp4", + "title": "WITHOUT YOU" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Masked Wolf", + "playlist_title": "Astronaut In The Ocean", + "found_song": { + "artist": "Masked Wolf", + "disabled": false, + "favorite": false, + "guid": "7458a9ca-85b7-0a7d-e2e1-d01a76b015d1", + "path": "z://MP4\\Sing King Karaoke\\Masked Wolf - Astronaut In The Ocean (Karaoke Version).mp4", + "title": "Astronaut In The Ocean" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Megan Thee Stallion", + "playlist_title": "Thot Shit", + "found_song": { + "artist": "Megan Thee Stallion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a528e847-99db-4b7d-e186-3eedc46fa478", + "path": "z://MP4\\KaraokeOnVEVO\\Megan Thee Stallion - Thot Shit.mp4", + "title": "Thot Shit" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Doja Cat", + "playlist_title": "Need To Know", + "found_song": { + "artist": "Doja Cat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d5b2ace-983f-b17b-ea9e-7f9f17a72086", + "path": "z://MP4\\KaraokeOnVEVO\\Doja Cat - Need To Know.mp4", + "title": "Need To Know" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Kali Uchis", + "playlist_title": "Telepatia", + "found_song": { + "artist": "Kali Uchis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463f2441-801c-43a0-cda4-bfde41ccf830", + "path": "z://MP4\\Sing King Karaoke\\Kali Uchis - Telepatia.mp4", + "title": "Telepatia" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Post Malone", + "playlist_title": "Motley Crew", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51bad357-3e6f-0ea2-bf5c-563003b98d51", + "path": "z://MP4\\VocalStarKaraoke\\Post Malone - Motley Crew.mp4", + "title": "Motley Crew" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Maneskin", + "playlist_title": "Beggin'", + "found_song": { + "artist": "Maneskin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74bb8660-ce6d-c45f-9c9b-cee601e22308", + "path": "z://MP4\\Sing King Karaoke\\Maneskin - Beggin.mp4", + "title": "Beggin'" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Traitor", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47dbf4d2-62d0-d9e7-22a3-843dd202836e", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - traitor (Karaoke Version).mp4", + "title": "traitor" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Duncan Laurence", + "playlist_title": "Arcade", + "found_song": { + "artist": "Duncan Laurence", + "disabled": false, + "favorite": false, + "guid": "cf565a73-110f-cdd0-26ea-0c24fceb8f66", + "path": "z://MP4\\Sing King Karaoke\\Duncan Laurence - Arcade (Karaoke Version).mp4", + "title": "Arcade" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Sleepy Hallow", + "playlist_title": "2055", + "found_song": { + "artist": "Sleepy Hallow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ca8eab5-a995-2fe5-9471-cbb56a4850f9", + "path": "z://MP4\\Sing King Karaoke\\Sleepy Hallow - 2055 (Karaoke Version).mp4", + "title": "2055" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Bad Bunny", + "playlist_title": "Yonaguni", + "found_song": { + "artist": "Bad Bunny", + "disabled": false, + "favorite": false, + "guid": "eb1195b0-30a6-b4e4-6d54-4f08ed7032a5", + "path": "z://MP4\\Sing King Karaoke\\Bad Bunny - Yonaguni (Karaoke Version).mp4", + "title": "Yonaguni" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Billie Eilish", + "playlist_title": "NDA", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "1453d84f-1908-ad2b-54ad-dd77ffa088f3", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - NDA (Karaoke Version).mp4", + "title": "NDA" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Camila Cabello", + "playlist_title": "Don't Go Yet", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "f7ddcc0a-74fc-71bb-bb35-adcc41159dba", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Don't Go Yet (Karaoke Version).mp4", + "title": "Don't Go Yet" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dua Lipa", + "playlist_title": "Love Again", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "9f9b14fe-ce53-5ddf-50c7-2984b20d2159", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Love Again (Karaoke Version).mp4", + "title": "Love Again" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Getting Older", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "03461160-f364-e946-4e43-dda2f8164f65", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Getting Older (Karaoke Version).mp4", + "title": "Getting Older" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "AJR", + "playlist_title": "Way Less Sad", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7639a583-7ed3-a9ba-7164-263d282e27c4", + "path": "z://MP4\\KaraokeOnVEVO\\AJR - Way Less Sad.mp4", + "title": "Way Less Sad" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Billie Eilish", + "playlist_title": "Lost Cause", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "3aaf9ee8-95a1-d51d-d66f-565ee5b4e428", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Lost Cause (Karaoke Version).mp4", + "title": "Lost Cause" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Favorite Crime", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "374be4fd-440e-47ed-3174-2086d13083f2", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - favorite crime (Karaoke Version).mp4", + "title": "favorite crime" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Billie Eilish", + "playlist_title": "Halley's Comet", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "f9846ff2-c5a2-1255-e6dc-ce3542b2b34b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Halley's Comet (Karaoke Version).mp4", + "title": "Halley's Comet" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Bella Poarch", + "playlist_title": "Build A Bitch", + "found_song": { + "artist": "Bella Poarch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728ff2c5-a360-3051-f2cf-7bfba6bf5181", + "path": "z://MP4\\Sing King Karaoke\\Bella Poarch - Build A Bitch.mp4", + "title": "Build A Bitch" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Olivia Rodrigo", + "playlist_title": "Happier", + "found_song": { + "artist": "Olivia Rodrigo", + "disabled": false, + "favorite": false, + "guid": "f3ce170a-3513-461f-a60a-fd1c869fc6b7", + "path": "z://MP4\\Sing King Karaoke\\Olivia Rodrigo - happier (Karaoke Version).mp4", + "title": "happier" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 13, + "playlist_artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "playlist_title": "Peaches", + "found_song": { + "artist": "Justin Bieber Featuring Daniel Caesar & Giveon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b191e6d5-535f-d0fd-7f56-a92fc45f7b3b", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Daniel Caesar & Giveon - Peaches.mp4", + "title": "Peaches" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Marshmello X Jonas Brothers", + "playlist_title": "Leave Before You Love Me", + "found_song": { + "artist": "Marshmello ft. Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "676ed52b-608a-72bb-5e5f-bba2e2e9a466", + "path": "z://MP4\\Sing King Karaoke\\Marshmello X Jonas Brothers - Leave Before You Love Me.mp4", + "title": "Leave Before You Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Rauw Alejandro", + "playlist_title": "Todo de Ti", + "found_song": { + "artist": "Rauw Alejandro", + "disabled": false, + "favorite": false, + "guid": "046e251c-8487-283c-43c5-53bb8d19666f", + "path": "z://MP4\\Sing King Karaoke\\Rauw Alejandro - Todo De Ti (Karaoke Version).mp4", + "title": "Todo De Ti" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Kid LAROI & Justin Bieber", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lil Nas X & Jack Harlow", + "title": "Industry Baby", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The Weeknd & Ariana Grande", + "title": "Save Your Tears", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Leave The Door Open", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Silk Sonic (Bruno Mars & Anderson .Paak)", + "title": "Skate", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Doja Cat & The Weeknd", + "title": "You Right", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "DJ Khaled Featuring Lil Baby & Lil Durk", + "title": "Every Chance I Get", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "BTS", + "title": "Permission To Dance", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Roddy Ricch", + "title": "Late At Night", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Maroon 5 Featuring Megan Thee Stallion", + "title": "Beautiful Mistakes", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chris Young + Kane Brown", + "title": "Famous Friends", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Aventura x Bad Bunny", + "title": "Volvi", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Saweetie Featuring Doja Cat", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Doja Cat", + "title": "Ain't Shit", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Moneybagg Yo", + "title": "Wockesha", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "BIA Featuring Nicki Minaj", + "title": "Whole Lotta Money", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Thomas Rhett", + "title": "Country Again", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jason Aldean & Carrie Underwood", + "title": "If I Didn't Love You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Wizkid Featuring Tems", + "title": "Essence", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Justin Moore", + "title": "We Didn't Have Much", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Normani Featuring Cardi B", + "title": "Wild Side", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Regard x Troye Sivan x Tate McRae", + "title": "You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Old Dominion", + "title": "I Was On A Boat That Day", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Farruko", + "title": "Pepas", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Tai Verdes", + "title": "A-O-K", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Billie Eilish", + "title": "Billie Bossa Nova", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Rod Wave", + "title": "Tombstone", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Billie Eilish", + "title": "Oxytocin", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "DaBaby", + "title": "Ball If I Want To", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "J. Cole, 21 Savage & Morray", + "title": "my.life", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jason Aldean", + "title": "Blame It On You", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Migos", + "title": "Straightenin", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Kid LAROI Featuring Polo G & Stunna Gambino", + "title": "Not Sober", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Smiley Featuring Drake", + "title": "Over The Top", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Billie Eilish", + "title": "I Didn't Change My Number", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "H.E.R. Featuring Chris Brown", + "title": "Come Through", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nio Garcia X J Balvin X Bad Bunny", + "title": "AM", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Yung Bleu, Chris Brown & 2 Chainz", + "title": "Baddest", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Lil Baby, Lil Durk & Travis Scott", + "title": "Hats Off", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Capella Grey", + "title": "Gyalis", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Los Legendarios, Wisin & Jhay Cortez", + "title": "Fiel", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "MO3 X OG Bobby Billions", + "title": "Outside", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Isaiah Rashad Featuring Lil Uzi Vert", + "title": "From The Garden", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Tate McRae X Khalid", + "title": "Working", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 5, + "missing_count": 55, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2021 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Walker Hayes", + "playlist_title": "Fancy Like", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "bb56cd6d-5fae-84fa-12c8-8bc296feccc7", + "path": "z://MP4\\Sing King Karaoke\\Walker Hayes - Fancy Like (Karaoke Version).mp4", + "title": "Fancy Like" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Glad You Exist", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "9cac8533-ca41-f3e7-f434-abed794b805c", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Glad You Exist (Karaoke Version).mp4", + "title": "Glad You Exist" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Single Saturday Night", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9530fd5c-fcd3-e3de-8911-be219ed21277", + "path": "z://MP4\\KaraokeOnVEVO\\Cole Swindell - Single Saturday Night.mp4", + "title": "Single Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Elvie Shane", + "playlist_title": "My Boy", + "found_song": { + "artist": "Elvie Shane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e299ffe8-f97d-b6bd-724f-1f391864f124", + "path": "z://MP4\\KaraokeOnVEVO\\Elvie Shane - My Boy.mp4", + "title": "My Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chris Stapleton", + "playlist_title": "You Should Probably Leave", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6069775-f951-11cd-e9e0-54357d694582", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - You Should Probably Leave (Karaoke Version).mp4", + "title": "You Should Probably Leave" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Scotty McCreery", + "playlist_title": "You Time", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8063227b-19f8-13f2-eb36-a5b8dec902e2", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty McCreery - You Time.mp4", + "title": "You Time" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Sand In My Boots", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dbcea48b-298f-718c-dee1-7d626739c6fa", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Sand In My Boots (Karaoke Version).mp4", + "title": "Sand In My Boots" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ingrid Andress", + "playlist_title": "Lady Like", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "c97cf043-8f7c-1ee3-f04e-5091e75a653e", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Andress - Lady Like (Karaoke).mp4", + "title": "Lady Like" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Waves", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "90ab4d06-83f9-7189-3a66-354dd326db57", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Games - King of Karaoke.mp4", + "title": "Games" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Same Boat", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc31a2e9-645c-8eea-a938-89a5fc63af97", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Same Boat.mp4", + "title": "Same Boat" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Breland Featuring Keith Urban", + "playlist_title": "Throw It Back", + "found_song": { + "artist": "Breland Featuring Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56b303b6-0c1b-fcf0-86d4-6f919486cb5d", + "path": "z://MP4\\KaraokeOnVEVO\\Breland Featuring Keith Urban - Throw It Back.mp4", + "title": "Throw It Back" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Kelsea Ballerini & LANY", + "playlist_title": "I Quit Drinking", + "found_song": { + "artist": "Kelsea Ballerini & LANY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd4218e5-b795-8ca9-c348-1ce62b3bfb9e", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini & LANY - I Quit Drinking.mp4", + "title": "I Quit Drinking" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Chase Rice Featuring Florida Georgia Line", + "title": "Drinkin' Beer. Talkin' God. Amen.", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Chris Young + Kane Brown", + "title": "Famous Friends", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lainey Wilson", + "title": "Things A Man Oughta Know", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ryan Hurd With Maren Morris", + "title": "Chasing After You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Thomas Rhett", + "title": "Country Again", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jason Aldean & Carrie Underwood", + "title": "If I Didn't Love You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Elle King & Miranda Lambert", + "title": "Drunk (And I Don't Wanna Go Home)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Justin Moore", + "title": "We Didn't Have Much", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Old Dominion", + "title": "I Was On A Boat That Day", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kane Brown X blackbear", + "title": "Memory", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jameson Rodgers Featuring Luke Combs", + "title": "Cold Beer Calling My Name", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lee Brice", + "title": "Memory I Don't Mess With", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Luke Combs", + "title": "Cold As You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Carly Pearce", + "title": "Next Girl", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kenny Chesney", + "title": "Knowing You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis Featuring Luke Bryan", + "title": "Buy Dirt", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Dustin Lynch Featuring Lauren Alaina Or MacKenzie Porter", + "title": "Thinking 'Bout You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Parker McCollum", + "title": "To Be Loved By You", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Lady A", + "title": "Like A Lady", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jimmie Allen & Brad Paisley", + "title": "Freedom Was A Highway", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Michael Ray", + "title": "Whiskey And Rain", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jon Pardi", + "title": "Tequila Little Time", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Priscilla Block", + "title": "Just About Over You", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dierks Bentley, Breland & HARDY", + "title": "Beers On Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kelsea Ballerini Featuring Kenny Chesney", + "title": "Half Of My Hometown", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Russell Dickerson", + "title": "Home Sweet", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "HARDY", + "title": "Give Heaven Some Hell", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Chase Matthew", + "title": "County Line", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Aaron Lewis", + "title": "Am I The Only One", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Dan + Shay", + "title": "Good Things", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Brett Young", + "title": "Not Yet", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Callista Clark", + "title": "It's 'Cause I Am", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Garth Brooks", + "title": "That's What Cowboys Do", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Mitchell Tenpenny", + "title": "Truth About You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Riley Green", + "title": "If It Wasn't For Trucks", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 4, + "missing_count": 37, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2020 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Clairo", + "playlist_title": "Sofia", + "found_song": { + "artist": "Clairo", + "disabled": false, + "favorite": false, + "guid": "493d606a-1d5a-28a9-c840-9e209ba21d23", + "path": "z://MP4\\Sing King Karaoke\\Clairo - Sofia (Karaoke Version).mp4", + "title": "Sofia" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Plastic Hearts", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "22a03a3f-b4dd-a974-ecf2-ffb3095d4d16", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Plastic Hearts (Karaoke Version).mp4", + "title": "Plastic Hearts" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Machine Gun Kelly", + "playlist_title": "Bloody Valentine", + "found_song": { + "artist": "Machine Gun Kelly", + "disabled": false, + "favorite": false, + "guid": "9dfb5697-7255-7932-697e-6ddffa475e3e", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly - Bloody Valentine (Karaoke Version).mp4", + "title": "Bloody Valentine" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wallows Featuring Clairo", + "playlist_title": "Are You Bored Yet?", + "found_song": { + "artist": "Wallows Featuring Clairo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "787d49b1-b513-603d-e3a0-86ee29c94547", + "path": "z://MP4\\Sing King Karaoke\\Wallows Featuring Clairo - Are You Bored Yet.mp4", + "title": "Are You Bored Yet?" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Glass Animals", + "playlist_title": "Heat Waves", + "found_song": { + "artist": "Glass Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36ad45b-cab5-e536-397a-63c302623aa0", + "path": "z://MP4\\Sing King Karaoke\\Glass Animals - Heat Waves (Karaoke Version).mp4", + "title": "Heat Waves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "BANNERS", + "playlist_title": "Someone To You", + "found_song": { + "artist": "BANNERS", + "disabled": false, + "favorite": false, + "guid": "b004ff62-a2d1-dcdf-7233-c390f1564789", + "path": "z://MP4\\Sing King Karaoke\\BANNERS - Someone To You (Karaoke Version).mp4", + "title": "Someone To You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "347aidan", + "playlist_title": "Dancing In My Room", + "found_song": { + "artist": "347aidan", + "disabled": false, + "favorite": false, + "guid": "374e316f-cff8-a838-b906-f463d34a5315", + "path": "z://MP4\\Sing King Karaoke\\347aidan - Dancing In My Room (Karaoke Version).mp4", + "title": "Dancing In My Room" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Shame Shame", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72b20cd6-cdb9-d160-6d95-d809b7868ad5", + "path": "z://MP4\\VocalStarKaraoke\\Foo Fighters - Shame Shame.mp4", + "title": "Shame Shame" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Billie Eilish", + "playlist_title": "My Future", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "344fb188-6e23-405c-999e-f022368ea91c", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - my future (Karaoke Version).mp4", + "title": "my future" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Peach Tree Rascals", + "playlist_title": "Mariposa", + "found_song": { + "artist": "Peach Tree Rascals", + "disabled": false, + "favorite": false, + "guid": "1dc2808f-e7ac-2894-b666-7c01f6f5b51d", + "path": "z://MP4\\Sing King Karaoke\\Peach Tree Rascals - Mariposa (Karaoke Version).mp4", + "title": "Mariposa" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Cannons", + "playlist_title": "Fire For You", + "found_song": { + "artist": "Cannons", + "disabled": false, + "favorite": false, + "guid": "4a9f1e7a-e3fa-4531-cbdf-89482345a834", + "path": "z://MP4\\Sing King Karaoke\\Cannons - Fire For You (Karaoke Version).mp4", + "title": "Fire For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Penelope Scott", + "playlist_title": "Rat", + "found_song": { + "artist": "Penelope Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ebc73b4b-5518-8581-a5a8-5cda5f22dc06", + "path": "z://MP4\\Sing King Karaoke\\Penelope Scott - Rat.mp4", + "title": "Rat" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Frances Forever", + "playlist_title": "Space Girl", + "found_song": { + "artist": "Frances Forever", + "disabled": false, + "favorite": false, + "guid": "01433b1a-f4a7-1c76-75a9-e5a77636718f", + "path": "z://MP4\\Sing King Karaoke\\Frances Forever - Space Girl (Karaoke Version).mp4", + "title": "Space Girl" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Stellar", + "playlist_title": "Ashes", + "found_song": { + "artist": "Stellar", + "disabled": false, + "favorite": false, + "guid": "344115df-5fc2-f00b-8fb1-319471c68760", + "path": "z://MP4\\Sing King Karaoke\\Stellar - Ashes (Karaoke Version).mp4", + "title": "Ashes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tones And I", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Tones And I", + "disabled": false, + "favorite": false, + "guid": "d6c796e8-2e23-d7cc-9fd1-daa07550d8a4", + "path": "z://MP4\\KaraFun Karaoke\\Fly Away - Tones And I Karaoke Version KaraFun.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Cardigan", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c91637f-a5a9-43bc-7907-9c3d8182d2c0", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - cardigan (Karaoke Version).mp4", + "title": "cardigan" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Machine Gun Kelly & Halsey", + "playlist_title": "Forget Me Too", + "found_song": { + "artist": "Halsey ft. Machine Gun Kelly", + "disabled": false, + "favorite": false, + "guid": "705a1f72-ee7d-9234-6d62-8bed0309e6f9", + "path": "z://MP4\\Forget Me Too - Halsey Machine Gun Kelly (Karaoke Version).mp4", + "title": "Forget Me Too" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Miley Cyrus", + "playlist_title": "High", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "7d81b646-cf91-4a51-b1ab-7bc21aa9ad2e", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - 7 Things (Karaoke Version).mp4", + "title": "7 Things" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Royal & The Serpent", + "playlist_title": "Overwhelmed", + "found_song": { + "artist": "Royal ft. The Serpent", + "disabled": false, + "favorite": false, + "guid": "c4a8a18d-a430-a154-2306-1e2bd714020f", + "path": "z://MP4\\Sing King Karaoke\\Royal & The Serpent - Overwhelmed (Karaoke Version).mp4", + "title": "Overwhelmed" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "My Tears Ricochet", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aad51718-c330-2410-cfa3-f41ef8bae403", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - My Tears Ricochet.mp4", + "title": "My Tears Ricochet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Taylor Swift", + "playlist_title": "August", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2a6763c9-0aac-b2f9-8599-8f2f4012f6f0", + "path": "z://MP4\\Stingray Karaoke\\Taylor Swift - August.mp4", + "title": "August" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "AC/DC", + "playlist_title": "Shot In The Dark", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "8946008c-7acc-d187-60e6-5286e55ad502", + "path": "z://MP4\\ACDC - Shot In The Dark (Karaoke Version).mp4", + "title": "Shot In The Dark" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Taylor Swift", + "playlist_title": "Seven", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d1c19ce-60d3-ae34-d4a1-60cb3e8e879d", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Seven.mp4", + "title": "Seven" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Royal Blood", + "playlist_title": "Trouble's Coming", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d39e4107-bf8a-211f-7d45-e588cf2d0b9d", + "path": "z://MP4\\VocalStarKaraoke\\Royal Blood - Troubles Coming.mp4", + "title": "Troubles Coming" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Juice WRLD x Marshmello", + "title": "Come & Go", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Taylor Swift Featuring Bon Iver", + "title": "Exile", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Miley Cyrus Featuring Billy Idol", + "title": "Night Crawling", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Miley Cyrus", + "title": "WTF Do I Know", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Miley Cyrus", + "title": "Gimme What I Want", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "All Time Low Featuring blackbear", + "title": "Monsters", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Miley Cyrus Featuring Joan Jett", + "title": "Bad Karma", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Miley Cyrus", + "title": "Zombie", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "NEEDTOBREATHE", + "title": "Who Am I", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sista_Prod Featuring Subvrbs", + "title": "Eyes Blue Like The Atlantic", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Taylor Swift", + "title": "This Is Me Trying", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Taylor Swift", + "title": "Mirrorball", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tai Verdes", + "title": "Drugs", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Machine Gun Kelly", + "title": "Drunk Face", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tame Impala", + "title": "Is It True", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Bastille", + "title": "Survivin'", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "CORPSE", + "title": "Miss You!", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Zach Bryan", + "title": "Heading South", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "ILLENIUM", + "title": "Nightlight", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Taylor Swift", + "title": "Mad Woman", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "I Prevail Featuring Delaney Jane", + "title": "Every Time You Leave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 10, + "missing_count": 22, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2020 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "DaBaby Featuring Roddy Ricch", + "playlist_title": "Rockstar", + "found_song": { + "artist": "DaBaby Featuring Roddy Ricch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2812ca6-610d-fe09-b1f0-11cd1777cefa", + "path": "z://MP4\\Sing King Karaoke\\DaBaby Featuring Roddy Ricch - Rockstar.mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "H.E.R.", + "playlist_title": "Damage", + "found_song": { + "artist": "H.E.R.", + "disabled": false, + "favorite": false, + "guid": "333078e3-0881-7f29-0abe-e2b40ee54feb", + "path": "z://MP4\\Sing King Karaoke\\H.E.R. - Damage (Karaoke Version).mp4", + "title": "Damage" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 29, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "Popstar", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Megan Thee Stallion", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Cardi B Featuring Megan Thee Stallion", + "title": "WAP", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rod Wave Featuring ATR Son Son", + "title": "Rags2Riches", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Pop Smoke Featuring 50 Cent & Roddy Ricch", + "title": "The Woo", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Pop Smoke Featuring Lil Tjay", + "title": "Mood Swings", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Travis Scott Featuring Young Thug & M.I.A.", + "title": "Franchise", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "DaBaby", + "title": "Practice", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ne-Yo & Jeremih", + "title": "U 2 Luv", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Future & Lil Uzi Vert", + "title": "Drankin N Smokin", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Money Man Featuring Lil Baby", + "title": "24", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "YoungBoy Never Broke Again", + "title": "Kacey Talk", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "DDG", + "title": "Moonwalking In Calabasas", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "21 Savage & Metro Boomin", + "title": "Runnin", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DaBaby Featuring Young Thug", + "title": "Blind", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Lil Yachty, Future & Playboi Carti", + "title": "Flex Up", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Meek Mill Featuring Lil Durk", + "title": "Pain Away", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Megan Thee Stallion Featuring DaBaby", + "title": "Cry Baby", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "DJ Chose Featuring BeatKing", + "title": "Thick", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Pop Smoke Featuring A Boogie Wit da Hoodie", + "title": "Hello", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "K Camp Featuring Jacquees", + "title": "What's On Your Mind", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Ty Dolla $ign Featuring Post Malone", + "title": "Spicy", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Future & Lil Uzi Vert", + "title": "That's It", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Yung Bleu Featuring Drake", + "title": "You're Mines Still", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Juice WRLD & The Weeknd", + "title": "Smile", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "King Von Featuring Lil Durk", + "title": "Crazy Story 2.0", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Kid LAROI & Juice WRLD", + "title": "Go!", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Usher", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Big Sean Featuring Post Malone", + "title": "Wolves", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 1, + "missing_count": 43, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2020 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Holy", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Zoe Wees", + "playlist_title": "Control", + "found_song": { + "artist": "Zoe Wees", + "disabled": false, + "favorite": false, + "guid": "8651018b-ef16-85b8-bebe-674b331e9550", + "path": "z://MP4\\Sing King Karaoke\\Zoe Wees - Control (Karaoke Version).mp4", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Jason Derulo", + "playlist_title": "Take You Dancing", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d0cd6f1-020c-b614-529e-3c6940bce5a5", + "path": "z://MP4\\VocalStarKaraoke\\Jason Derulo - Take You Dancing.mp4", + "title": "Take You Dancing" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ritt Momney", + "playlist_title": "Put Your Records On", + "found_song": { + "artist": "Ritt Momney", + "disabled": false, + "favorite": false, + "guid": "81f39d24-23e7-6e6b-bdcb-6888f80b4be0", + "path": "z://MP4\\Sing King Karaoke\\Ritt Momney - Put Your Records On (Karaoke Version).mp4", + "title": "Put Your Records On" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Conan Gray", + "playlist_title": "Heather", + "found_song": { + "artist": "Conan Gray", + "disabled": false, + "favorite": false, + "guid": "fb8ba04f-c065-aa3f-e794-ba69de14aeb3", + "path": "z://MP4\\Sing King Karaoke\\Conan Gray - Heather (Karaoke Version).mp4", + "title": "Heather" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Weeknd", + "playlist_title": "Save Your Tears", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f89fc42e-9918-d89f-cf23-9700f6d87715", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Save Your Tears (Karaoke Version).mp4", + "title": "Save Your Tears" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Joel Corry X MNEK", + "playlist_title": "Head & Heart", + "found_song": { + "artist": "Joel Corry X MNEK", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "776101c2-da43-f5d2-787c-3a06bb153153", + "path": "z://MP4\\VocalStarKaraoke\\Joel Corry X MNEK - Head & Heart.mp4", + "title": "Head & Heart" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Kane Brown With Swae Lee & Khalid", + "playlist_title": "Be Like That", + "found_song": { + "artist": "Kane Brown With Swae Lee & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "045c1942-b22b-2ce1-96a7-baccb8074b2c", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown With Swae Lee & Khalid - Be Like That.mp4", + "title": "Be Like That" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Justin Bieber & benny blanco", + "title": "Lonely", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Shawn Mendes & Justin Bieber", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Bebe Rexha Featuring Doja Cat", + "title": "Baby, I'm Jealous", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Why Don't We", + "title": "Fallin'", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Miley Cyrus Featuring Dua Lipa", + "title": "Prisoner", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Zara Larsson", + "title": "Wow", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Juice WRLD x Marshmello", + "title": "Come & Go", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "G-Eazy Featuring blackbear", + "title": "Hate The Way", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 19, + "fuzzy_match_count": 4, + "missing_count": 17, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2020 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Holy", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "BTS", + "playlist_title": "Dynamite", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "c6bc0a10-c4e0-f007-a693-34d555eb7ffe", + "path": "z://MP4\\Sing King Karaoke\\BTS - Dynamite (Karaoke Version).mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Weeknd", + "playlist_title": "Blinding Lights", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87587dc3-6ee7-cd4f-1951-a6851d1ea6f3", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Blinding Lights (Karaoke Version).mp4", + "title": "Blinding Lights" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jose Feliciano", + "playlist_title": "Feliz Navidad", + "found_song": { + "artist": "José Feliciano", + "disabled": false, + "favorite": false, + "guid": "eb804689-a048-9c8c-1b31-7cdcca7d0063", + "path": "z://MP4\\Sing King Karaoke\\José Feliciano - Feliz Navidad (Karaoke Version).mp4", + "title": "Feliz Navidad" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ava Max", + "playlist_title": "Kings & Queens", + "found_song": { + "artist": "Ava Max", + "disabled": false, + "favorite": false, + "guid": "018e2312-62b8-5044-0885-212c8f2a15e0", + "path": "z://MP4\\Sing King Karaoke\\Ava Max - Kings & Queens (Karaoke Version).mp4", + "title": "Kings & Queens" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "Therefore I Am", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "bee73f88-ecc7-5088-7c98-949d922ab7e1", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Therefore I Am (Karaoke Version).mp4", + "title": "Therefore I Am" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Dean Martin", + "playlist_title": "Let It Snow, Let It Snow, Let It Snow", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e27963d9-e668-815b-a709-6ce8af6d2569", + "path": "z://MP4\\Sing King Karaoke\\Dean Martin - Let It Snow, Let It Snow, Let It Snow.mp4", + "title": "Let It Snow, Let It Snow, Let It Snow" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Ronettes", + "playlist_title": "Sleigh Ride", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "b1f8780b-4e8e-2435-e221-e00dbf00997f", + "path": "z://MP4\\Sing King Karaoke\\The Ronettes - Sleigh Ride (Karaoke Version).mp4", + "title": "Sleigh Ride" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "AJR", + "playlist_title": "Bang!", + "found_song": { + "artist": "AJR", + "disabled": false, + "favorite": false, + "guid": "1ada5ff7-9434-6d57-490f-767156b28bde", + "path": "z://MP4\\Sing King Karaoke\\AJR - BANG! (Karaoke Version).mp4", + "title": "BANG!" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "BTS", + "playlist_title": "Life Goes On", + "found_song": { + "artist": "BTS", + "disabled": false, + "favorite": false, + "guid": "28f39318-3748-b0cc-8a92-3a947151ce9b", + "path": "z://MP4\\Sing King Karaoke\\BTS - Life Goes On (Karaoke Version).mp4", + "title": "Life Goes On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Andy Williams", + "playlist_title": "Happy Holiday / The Holiday Season", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "38a81819-ddad-ca94-96ea-dd02b7b0b617", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Holiday The Holiday Season - Andy Williams.mp4", + "title": "Happy Holiday The Holiday Season" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "DaBaby Featuring Roddy Ricch", + "playlist_title": "Rockstar", + "found_song": { + "artist": "DaBaby Featuring Roddy Ricch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2812ca6-610d-fe09-b1f0-11cd1777cefa", + "path": "z://MP4\\Sing King Karaoke\\DaBaby Featuring Roddy Ricch - Rockstar.mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Darlene Love", + "playlist_title": "Christmas (Baby Please Come Home)", + "found_song": { + "artist": "Darlene Love", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fc629a4-f944-091f-2cd1-e0c206f843c2", + "path": "z://MP4\\Sing King Karaoke\\Darlene Love - Christmas (Baby Please Come Home.mp4", + "title": "Christmas (Baby Please Come Home)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Before You Go", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "149bc108-473c-3b90-3c15-62bd9bcdea75", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Before You Go (Karaoke Version).mp4", + "title": "Before You Go" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Perry Como", + "playlist_title": "(There's No Place Like) Home For The Holidays", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26628bfb-0d79-a51c-b34e-3e73048c3ed2", + "path": "z://MP4\\KaraokeOnVEVO\\Perry Como - (There's No Place Like) Home For The Holidays.mp4", + "title": "(There's No Place Like) Home For The Holidays" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Lil Nas X", + "playlist_title": "Holiday", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "e2558a95-71b2-6600-e111-f40daff6dea6", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - HOLIDAY (Karaoke Version).mp4", + "title": "HOLIDAY" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Pop Smoke", + "playlist_title": "What You Know Bout Love", + "found_song": { + "artist": "Pop Smoke", + "disabled": false, + "favorite": false, + "guid": "a276c2c0-c422-d896-f9d2-e3947c5e0790", + "path": "z://MP4\\Sing King Karaoke\\Pop Smoke - What You Know Bout Love (Karaoke Version).mp4", + "title": "What You Know Bout Love" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Midnight Sky", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "4795e4b6-e3ef-9a78-717e-07abea7db336", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Midnight Sky (Karaoke Version).mp4", + "title": "Midnight Sky" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Sam Smith", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "dcd7935c-d228-86c5-6e26-4de117d9ff06", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Tate McRae", + "playlist_title": "You Broke Me First.", + "found_song": { + "artist": "Tate McRae", + "disabled": false, + "favorite": false, + "guid": "52e365db-23c4-02d6-c388-9655517e16ec", + "path": "z://MP4\\Sing King Karaoke\\Tate McRae - you broke me first (Karaoke Version).mp4", + "title": "you broke me first" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Wonder", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "36a4e38b-e3ca-a317-6b08-c29cccd08e13", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Wonder (Karaoke Version).mp4", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jack Harlow", + "playlist_title": "Tyler Herro", + "found_song": { + "artist": "Jack Harlow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d34cae21-5850-5366-95ee-912fb902eb7d", + "path": "z://MP4\\sing2karaoke\\Jack Harlow - Tyler Herro!.mp4", + "title": "Tyler Herro!" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Harry Styles", + "playlist_title": "Golden", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "a648adb6-70c2-cf42-68ef-6d043ce9c28e", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Golden (Karaoke Version).mp4", + "title": "Golden" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "The Kid LAROI", + "playlist_title": "So Done", + "found_song": { + "artist": "The Kid LAROI", + "disabled": false, + "favorite": false, + "guid": "def6713a-b190-d423-50c2-a2f0fb8808af", + "path": "z://MP4\\Sing King Karaoke\\The Kid LAROI - So Done (Karaoke Version).mp4", + "title": "So Done" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Positions", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "15a598cd-c443-bb30-b2a0-9f64c288ffbc", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - positions (Karaoke Version).mp4", + "title": "positions" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Ariana Grande", + "playlist_title": "34+35", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "c838787a-112a-3cc8-a42b-34e53c9f532d", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - 34+35 (Karaoke Version).mp4", + "title": "34+35" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Kane Brown With Swae Lee & Khalid", + "playlist_title": "Be Like That", + "found_song": { + "artist": "Kane Brown With Swae Lee & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "045c1942-b22b-2ce1-96a7-baccb8074b2c", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown With Swae Lee & Khalid - Be Like That.mp4", + "title": "Be Like That" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Gene Autry", + "playlist_title": "Here Comes Santa Claus (Right Down Santa Claus Lane)", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1096ce9b-0757-ec3b-31ef-396137bd03e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Here Comes Santa Claus (Right Down Santa Claus Lane).mp4", + "title": "Here Comes Santa Claus (Right Down Santa Claus Lane)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Michael Buble", + "playlist_title": "It's Beginning To Look A Lot Like Christmas", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "c16e3761-2b08-1636-8f5f-ca05da1fd445", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - It's Beginning To Look A Lot Like Christmas (Karaoke Version).mp4", + "title": "It's Beginning To Look A Lot Like Christmas" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Gene Autry", + "playlist_title": "Rudolph The Red-Nosed Reindeer", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "671f242a-3007-43d7-63a0-895d5319c63e", + "path": "z://MP4\\KaraFun Karaoke\\Rudolph The Red-Nosed Reindeer - Frank Sinatra Karaoke Version KaraFun.mp4", + "title": "Rudolph The Red-Nosed Reindeer" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Machine Gun Kelly X blackbear", + "playlist_title": "My Ex's Best Friend", + "found_song": { + "artist": "Machine Gun Kelly ft. blackbear", + "disabled": false, + "favorite": false, + "guid": "9588006c-b3b2-09b2-602f-3516e052bc04", + "path": "z://MP4\\Sing King Karaoke\\Machine Gun Kelly ft. blackbear - my ex's best friend (Karaoke Version).mp4", + "title": "my ex's best friend" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Ariana Grande", + "playlist_title": "pov", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "5325a100-77c7-9d7c-c2d1-a12e16614a0c", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - pov (Karaoke Version).mp4", + "title": "pov" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Justin Bieber", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brian Setzer", + "disabled": false, + "favorite": false, + "guid": "93d70d8a-edaf-4850-f650-d215cc2af323", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin' Around The Christmas Tree - Brian Setzer.mp4", + "title": "Rockin' Around The Christmas Tree" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "24kGoldn Featuring iann dior", + "title": "Mood", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Bad Bunny & Jhay Cortez", + "title": "Dakiti", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Drake Featuring Lil Durk", + "title": "Laugh Now Cry Later", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Gabby Barrett Featuring Charlie Puth", + "title": "I Hope", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Internet Money & Gunna Featuring Don Toliver & NAV", + "title": "Lemonade", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Megan Thee Stallion", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chris Brown & Young Thug", + "title": "Go Crazy", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Pop Smoke Featuring Lil Baby & DaBaby", + "title": "For The Night", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Dua Lipa Featuring DaBaby", + "title": "Levitating", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jawsh 685 x Jason Derulo", + "title": "Savage Love (Laxed - Siren Beat)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Cardi B Featuring Megan Thee Stallion", + "title": "WAP", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Shawn Mendes & Justin Bieber", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "surf mesa Featuring Emilee", + "title": "ily", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Moneybagg Yo", + "title": "Said Sum", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Perry Como And The Fontane Sisters With Mitchell Ayres And His Orchestra", + "title": "It's Beginning To Look A Lot Like Christmas", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Justin Bieber & benny blanco", + "title": "Lonely", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Jack Harlow Featuring DaBaby, Tory Lanez & Lil Wayne", + "title": "Whats Poppin", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Blake Shelton Featuring Gwen Stefani", + "title": "Happy Anywhere", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bad Bunny & ROSALIA", + "title": "La Noche de Anoche", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Maluma & The Weeknd", + "title": "Hawai", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Miley Cyrus Featuring Dua Lipa", + "title": "Prisoner", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bad Bunny", + "title": "Te Mudaste", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Chris Stapleton", + "title": "Starting Over", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Bad Bunny", + "title": "Yo Visto Asi", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "CJ", + "title": "Whoopty", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "21 Savage & Metro Boomin Featuring Drake", + "title": "Mr. Right Now", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jhene Aiko Featuring H.E.R.", + "title": "B.S.", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bad Bunny", + "title": "Haciendo Que Me Amas", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Bad Bunny", + "title": "Te Deseo Lo Mejor", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Bad Bunny", + "title": "Booker T", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bad Bunny", + "title": "El Mundo Es Mio", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Bad Bunny", + "title": "Hoy Cobre", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Morgan Wallen", + "title": "Somebody's Problem", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "BRS Kash", + "title": "Throat Baby (Go Baby)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Morgan Wallen", + "title": "Still Goin Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bad Bunny", + "title": "Maldita Pobreza", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "King Von", + "title": "Took Her To The O", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Megan Thee Stallion Featuring Young Thug", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "SZA Featuring Ty Dolla $ign", + "title": "Hit Different", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bad Bunny", + "title": "La Droga", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Carrie Underwood", + "title": "Favorite Time Of Year", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Saweetie Featuring Jhene Aiko", + "title": "Back To The Streets", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Polo G", + "title": "Martin & Gina", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kelsea Ballerini", + "title": "Hole In The Bottle", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Karol G", + "title": "Bichota", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 42, + "fuzzy_match_count": 9, + "missing_count": 49, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2020 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Morgan Wallen", + "playlist_title": "More Than My Hometown", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff715bb7-e9e1-66ee-54cc-cc6512931b3c", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - More Than My Hometown (Karaoke Version).mp4", + "title": "More Than My Hometown" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lee Brice", + "playlist_title": "One Of Them Girls", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "9093074c-92a1-1e84-89f8-c5cfef676651", + "path": "z://MP4\\Karaoke Junkies\\Lee Brice - One Of Them Girls (Karaoke).mp4", + "title": "One Of Them Girls" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Love You Like I Used To", + "found_song": { + "artist": "Russell Dickerson", + "disabled": false, + "favorite": false, + "guid": "c4c69aef-5fcf-ac9e-cf76-db1c49dc5436", + "path": "z://MP4\\Karaoke Junkies\\Russell Dickerson - Love You Like I Used To (Karaoke).mp4", + "title": "Love You Like I Used To" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dan + Shay", + "playlist_title": "I Should Probably Go To Bed", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "42630c60-a400-10ac-d00d-b84c9451b7e8", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - I Should Probably Go To Bed (Karaoke Version).mp4", + "title": "I Should Probably Go To Bed" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Combs", + "playlist_title": "Forever After All", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8e6fcb69-4aa1-639e-6cd3-cf3d8f7a76d6", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Forever After All (Karaoke Version).mp4", + "title": "Forever After All" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Morgan Wallen", + "playlist_title": "7 Summers", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3439917-46f9-e943-5620-e6e4e62404b4", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - 7 Summers (Karaoke Version).mp4", + "title": "7 Summers" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady A", + "playlist_title": "Champagne Night", + "found_song": { + "artist": "Lady A", + "disabled": false, + "favorite": false, + "guid": "e1dd0580-adc6-6f23-313c-08cf657f5f10", + "path": "z://MP4\\KaraFun Karaoke\\Champagne Night - Lady A Karaoke Version KaraFun.mp4", + "title": "Champagne Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Niko Moon", + "playlist_title": "Good Time", + "found_song": { + "artist": "Niko Moon", + "disabled": false, + "favorite": false, + "guid": "19aaa025-0c0b-2ad6-52a2-6b05ab7be003", + "path": "z://MP4\\KaraFun Karaoke\\Good Time - Niko Moon Karaoke Version KaraFun.mp4", + "title": "Good Time" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Silent Night", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "816fafb4-6b5d-b86d-5891-5e464e2e4237", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Silent Night.mp4", + "title": "Silent Night" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Gabby Barrett", + "playlist_title": "The Good Ones", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "3ce86173-0d6c-2f44-807c-81aa423cb659", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - The Good Ones (Karaoke Version).mp4", + "title": "The Good Ones" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Parmalee x Blanco Brown", + "playlist_title": "Just The Way", + "found_song": { + "artist": "Parmalee x Blanco Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8424ea16-230d-3587-8953-cfc47cab7eff", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee x Blanco Brown - Just The Way.mp4", + "title": "Just The Way" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Church", + "playlist_title": "Hell Of A View", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "b7cea25d-bf4b-ca70-06b2-47b75a0e5d43", + "path": "z://MP4\\TheKARAOKEChannel\\Eric Church - Hell Of A View (Karaoke with Lyrics).mp4", + "title": "Hell Of A View" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Gone", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a271582-4334-5205-669a-b0b0a86e6247", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Gone.mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Tenille Arts", + "playlist_title": "Somebody Like That", + "found_song": { + "artist": "Tenille Arts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b203f539-0cbd-4f9f-9d94-4e3cc03b8add", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tenille Arts - Somebody Like That.mp4", + "title": "Somebody Like That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 27, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Long Live", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "bf73f481-9843-2b7f-0e7d-6bb32f369c54", + "path": "z://MP4\\King of Karaoke\\Florida Georgia Line - HOLY - King of Karaoke.mp4", + "title": "HOLY" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Taylor Swift", + "playlist_title": "Betty", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "228da555-a7cf-f280-79ab-2ce04fb830bd", + "path": "z://MP4\\VocalStarKaraoke\\Taylor Swift - Betty.mp4", + "title": "Betty" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Blake Shelton Featuring Gwen Stefani", + "title": "Happy Anywhere", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Parker McCollum", + "title": "Pretty Heart", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Lane", + "title": "Big, Big Plans", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "HARDY Featuring Lauren Alaina & Devin Dawson", + "title": "One Beer", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Chris Stapleton", + "title": "Starting Over", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Ain't Always The Cowboy", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Lewis", + "title": "Dicked Down In Dallas", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kelly Clarkson & Brett Eldredge", + "title": "Under The Mistletoe", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Morgan Wallen", + "title": "Somebody's Problem", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Morgan Wallen", + "title": "Still Goin Down", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Carrie Underwood", + "title": "Favorite Time Of Year", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kelsea Ballerini", + "title": "Hole In The Bottle", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kenny Chesney", + "title": "Happy Does", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Thomas Rhett", + "title": "What's Your Country Song", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Darius Rucker", + "title": "Beers And Sunshine", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Luke Bryan", + "title": "Down To One", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Carrie Underwood & John Legend", + "title": "Hallelujah", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Keith Urban Duet With P!nk", + "title": "One Too Many", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dustin Lynch", + "title": "Momma's House", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jordan Davis", + "title": "Almost Maybes", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Dan + Shay", + "title": "Take Me Home For Christmas", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Morgan Wallen", + "title": "Livin' The Dream", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Rascal Flatts", + "title": "How They Remember You", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Brett Young", + "title": "Lady", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Sam Hunt", + "title": "Breaking Up Was Easy In The 90's", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Little Big Town", + "title": "Wine, Beer, Whiskey", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Miranda Lambert", + "title": "Settling Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Brothers Osborne", + "title": "All Night", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Garth Brooks & Trisha Yearwood", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Maren Morris", + "title": "To Hell & Back", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Nelly & Florida Georgia Line", + "title": "Lil Bit", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Dylan Scott", + "title": "Nobody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 2, + "missing_count": 32, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2019 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Hey Look Ma, I Made It", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f71bb7d3-ed74-52e6-82d2-2f0d8148370b", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Hey Look Ma, I Made It (Karaoke Version).mp4", + "title": "Hey Look Ma, I Made It" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Orphans", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "3d0f477b-0c30-adac-57e8-155937c027ec", + "path": "z://MP4\\Coldplay - Orphans Karaoke Instrumetal Lyrics Cover Original Key A.mp4", + "title": "Orphans" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "twenty one pilots", + "playlist_title": "The Hype", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "29c6e3f9-afaa-8d0b-1023-1cd65cdd27e5", + "path": "z://MP4\\Twenty One Pilots - The Hype (Classic Karaoke).mp4", + "title": "The Hype" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Ozzy Osbourne", + "playlist_title": "Under The Graveyard", + "found_song": { + "artist": "Ozzy Osbourne", + "disabled": false, + "favorite": false, + "guid": "fc9a0089-13bc-2bf4-f893-afac80913b0d", + "path": "z://MP4\\Under The Graveyard - Ozzy Osbourne - Instrumental Karaoke by SoMusique.mp4", + "title": "Under The Graveyard" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dermot Kennedy", + "playlist_title": "Outnumbered", + "found_song": { + "artist": "Dermot Kennedy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa34ecd5-df30-51c9-ba84-6d8af7454d6a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dermot Kennedy - Outnumbered.mp4", + "title": "Outnumbered" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "girl in red", + "playlist_title": "we fell in love in october", + "found_song": { + "artist": "girl in red", + "disabled": false, + "favorite": false, + "guid": "efdfd418-5e97-beba-16d8-2d2d3746723e", + "path": "z://MP4\\Sing King Karaoke\\girl in red - we fell in love in october (Karaoke Version).mp4", + "title": "we fell in love in october" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Ludens", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc59546e-f293-7d44-c161-456b04efd79c", + "path": "z://MP4\\KaraokeOnVEVO\\Bring Me The Horizon - Ludens.mp4", + "title": "Ludens" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Rex Orange County", + "playlist_title": "Pluto Projector", + "found_song": { + "artist": "Rex Orange County", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b75fe53e-6cd0-9a36-fe9e-cfe3ec389c50", + "path": "z://MP4\\Sing King Karaoke\\Rex Orange County - Pluto Projector.mp4", + "title": "Pluto Projector" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Beach Bunny", + "playlist_title": "Prom Queen", + "found_song": { + "artist": "Beach Bunny", + "disabled": false, + "favorite": false, + "guid": "a8c7f0ad-132d-df1a-b5eb-e58371db9438", + "path": "z://MP4\\Sing King Karaoke\\Beach Bunny - Prom Queen (Karaoke Version).mp4", + "title": "Prom Queen" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "YUNGBLUD", + "playlist_title": "Parents", + "found_song": { + "artist": "YUNGBLUD", + "disabled": false, + "favorite": false, + "guid": "aba66e72-46ca-aad5-e7ab-879f3509f954", + "path": "z://MP4\\Sing King Karaoke\\YUNGBLUD - Parents (Karaoke Version).mp4", + "title": "Parents" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Marshmello, YUNGBLUD & blackbear", + "title": "Tongue Tied", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Highly Suspect", + "title": "16", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Machine Gun Kelly X YUNGBLUD X Travis Barker", + "title": "I Think I'm OKAY", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Meg Myers", + "title": "Running Up That Hill", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Weezer", + "title": "The End Of The Game", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Green Day", + "title": "Father Of All...", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cage The Elephant", + "title": "Social Cues", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Rex Orange County", + "title": "10/10", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Cory Marks Featuring Travis Tritt, Ivan Moody & Mick Mars", + "title": "Outlaws & Outsiders", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Tool", + "title": "Fear Inoculum", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "White Reaper", + "title": "Might Be Right", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Fall Out Boy Featuring Wyclef Jean", + "title": "Dear Future Self (Hands Up)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Local Natives", + "title": "When Am I Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Bad Wolves", + "title": "Killing Me Slowly", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "AJR", + "title": "Dear Winter", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Black Keys", + "title": "Go", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Neon Trees", + "title": "Used To Like", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Blink-182", + "title": "I Really Wish I Hated You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Badflower", + "title": "The Jester", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YUNGBLUD Featuring Dan Reynolds", + "title": "Original Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Mumford & Sons", + "title": "Blind Leading The Blind", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Tame Impala", + "title": "It Might Be Time", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Papa Roach", + "title": "Come Around", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dayglow", + "title": "Can I Call You Tonight?", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Skillet", + "title": "Legendary", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Lumineers", + "title": "Life In The City", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Dinosaur Pile-Up", + "title": "Back Foot", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "AWOLNATION", + "title": "The Best", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "ONE OK ROCK", + "title": "Stand Out Fit In", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "I Prevail", + "title": "Hurricane", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Coldplay", + "title": "Everyday Life", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "guardin", + "title": "i think you're really cool", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Unlikely Candidates", + "title": "Novocaine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Falling In Reverse", + "title": "Popular Monster", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Cold War Kids", + "title": "Complainer", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Beck", + "title": "Uneventful Days", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "HAIM", + "title": "Now I'm In It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "X Ambassadors", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Of Monsters And Men", + "title": "Wars", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 0, + "missing_count": 39, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2019 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Chris Brown Featuring Gunna", + "playlist_title": "Heat", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Drake Featuring Rick Ross", + "playlist_title": "Money In The Grave", + "found_song": { + "artist": "Drake Featuring Rick Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "391ed033-b5b9-920b-5986-de40806b09e8", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rick Ross - Money In The Grave.mp4", + "title": "Money In The Grave" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 46, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "Hot Now", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Lil Baby", + "title": "Woah", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "DaBaby", + "title": "BOP", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mustard Featuring Roddy Ricch", + "title": "Ballin'", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Young Thug Featuring Gunna", + "title": "Hot", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "title": "Bandit", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Doja Cat & Tyga", + "title": "Juicy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kanye West", + "title": "Follow God", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "NLE Choppa", + "title": "Camelot", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "DaBaby", + "title": "VIBEZ", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "YoungBoy Never Broke Again", + "title": "Make No Sense", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "title": "Hot Girl Summer", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "YoungBoy Never Broke Again", + "title": "Lonely Child", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Khalid", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "YoungBoy Never Broke Again", + "title": "Self Control", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Summer Walker & Usher", + "title": "Come Thru", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Tory Lanez Featuring Jagged Edge & Jermaine Dupri", + "title": "The Trade", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Russ & BIA", + "title": "BEST ON EARTH", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Alicia Keys Featuring Miguel", + "title": "Show Me Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 1, + "missing_count": 35, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2019 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Ed Sheeran Featuring Khalid", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Ed Sheeran Featuring Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f04046c8-236e-bf47-cd18-9d9fd7f4a75e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran Featuring Khalid - Beautiful People.mp4", + "title": "Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Saweetie", + "playlist_title": "My Type", + "found_song": { + "artist": "Saweetie", + "disabled": false, + "favorite": false, + "guid": "b0f6a5a4-ab18-4dcf-cd2c-872bf721165e", + "path": "z://MP4\\Sing King Karaoke\\Saweetie - My Type (Karaoke Version).mp4", + "title": "My Type" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Kesha Featuring Big Freedia", + "playlist_title": "Raising Hell", + "found_song": { + "artist": "Kesha Featuring Big Freedia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14141206-249a-c144-8309-8e0f501205bb", + "path": "z://MP4\\KaraokeOnVEVO\\Kesha Featuring Big Freedia - Raising Hell.mp4", + "title": "Raising Hell" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "playlist_title": "Lonely", + "found_song": { + "artist": "Diplo Presents Thomas Wesley With Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c70e1c4-d41d-7ae3-3996-6ab739ab21c2", + "path": "z://MP4\\KaraokeOnVEVO\\Diplo Presents Thomas Wesley With Jonas Brothers - Lonely.mp4", + "title": "Lonely" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Teeth", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "683b6d6c-0c1c-0f8d-b8ee-e7eba6431766", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Teeth (Karaoke Version).mp4", + "title": "Teeth" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Charlie Puth", + "playlist_title": "Mother", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efeb5c64-4dc6-9072-fb3f-de5951b007ca", + "path": "z://MP4\\KaraokeOnVEVO\\Charlie Puth - Mother.mp4", + "title": "Mother" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Public", + "playlist_title": "Make You Mine", + "found_song": { + "artist": "PUBLIC", + "disabled": false, + "favorite": false, + "guid": "e5a25517-895b-c6e2-ebb5-c3e8e92a040e", + "path": "z://MP4\\Sing King Karaoke\\PUBLIC - Make You Mine (Karaoke Version).mp4", + "title": "Make You Mine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Shawn Mendes & Camila Cabello", + "title": "Senorita", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Why Don't We", + "title": "What Am I", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "French Montana Featuring Post Malone, Cardi B & Rvssian", + "title": "Writing On The Wall", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "AJ Mitchell & Ava Max", + "title": "Slow Dance", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Lauv Featuring Anne-Marie", + "title": "fuck, i'm lonely", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "BTS Featuring Lauv", + "title": "Make It Right", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Loud Luxury And Bryce Vine", + "title": "I'm Not Alright", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Zedd & Kehlani", + "title": "Good Thing", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 2, + "missing_count": 12, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2019 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Post Malone", + "playlist_title": "Circles", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e112d42f-0631-5c6b-0ea2-794bf345c908", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Circles (Karaoke Version).mp4", + "title": "Circles" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lewis Capaldi", + "playlist_title": "Someone You Loved", + "found_song": { + "artist": "Lewis Capaldi", + "disabled": false, + "favorite": false, + "guid": "d767b0bf-6c5b-ff9b-d6bd-b6b673b8b6b4", + "path": "z://MP4\\Sing King Karaoke\\Lewis Capaldi - Someone You Loved (Karaoke Version).mp4", + "title": "Someone You Loved" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lizzo", + "playlist_title": "Good As Hell", + "found_song": { + "artist": "Lizzo ft. Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "e6f2e5cd-d27d-308b-563a-5a9fbcee6c0a", + "path": "z://MP4\\Sing King Karaoke\\Lizzo ft. Ariana Grande - Good As Hell (Remix) (Karaoke Version).mp4", + "title": "Good As Hell" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Maroon 5", + "playlist_title": "Memories", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1fbaa466-6fe9-504b-2ea8-67741ee7adcc", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Memories (Karaoke Version).mp4", + "title": "Memories" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Selena Gomez", + "playlist_title": "Lose You To Love Me", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "fd1b8dc3-38d2-8ac1-e621-34b7cc10cbe4", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Lose You To Love Me (Karaoke Version).mp4", + "title": "Lose You To Love Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Chris Brown Featuring Drake", + "playlist_title": "No Guidance", + "found_song": { + "artist": "Chris Brown Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e361ff9e-d5b9-aaff-e463-144b41b8cad3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Drake - No Guidance.mp4", + "title": "No Guidance" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Billie Eilish", + "playlist_title": "everything i wanted", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "292566a9-43fb-21d8-6cf8-920eb8110f17", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - everything i wanted (Karaoke Version).mp4", + "title": "everything i wanted" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lizzo", + "playlist_title": "Truth Hurts", + "found_song": { + "artist": "Lizzo", + "disabled": false, + "favorite": false, + "guid": "69c8034b-b938-fa9b-ae3b-467bacd767dd", + "path": "z://MP4\\Sing King Karaoke\\Lizzo - Truth Hurts (Karaoke Version).mp4", + "title": "Truth Hurts" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lil Nas X", + "playlist_title": "Panini", + "found_song": { + "artist": "Lil Nas X", + "disabled": false, + "favorite": false, + "guid": "a77fefa2-8c2a-e7da-6298-63f6bc623afc", + "path": "z://MP4\\Sing King Karaoke\\Lil Nas X - Panini (Karaoke Version).mp4", + "title": "Panini" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arizona Zervas", + "playlist_title": "Roxanne", + "found_song": { + "artist": "Arizona Zervas", + "disabled": false, + "favorite": false, + "guid": "491accc0-cfa5-f6e1-9551-24abdc150868", + "path": "z://MP4\\Sing King Karaoke\\Arizona Zervas - Roxanne (Karaoke Version).mp4", + "title": "Roxanne" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "SHAED", + "playlist_title": "Trampoline", + "found_song": { + "artist": "SHAED", + "disabled": false, + "favorite": false, + "guid": "9b99100c-eea2-0eee-3738-dd06ec954a9a", + "path": "z://MP4\\Sing King Karaoke\\SHAED - Trampoline (Karaoke Version).mp4", + "title": "Trampoline" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Travis Scott", + "playlist_title": "HIGHEST IN THE ROOM", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "guid": "d0589488-95f0-df03-0353-01c70e839d48", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott - HIGHEST IN THE ROOM (Karaoke Version).mp4", + "title": "HIGHEST IN THE ROOM" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Billie Eilish", + "playlist_title": "Bad Guy", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "4becb299-aac1-7a98-da4f-7421b3fa185d", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - bad guy (Karaoke Version).mp4", + "title": "bad guy" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Ed Sheeran Featuring Khalid", + "playlist_title": "Beautiful People", + "found_song": { + "artist": "Ed Sheeran Featuring Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f04046c8-236e-bf47-cd18-9d9fd7f4a75e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran Featuring Khalid - Beautiful People.mp4", + "title": "Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Only Human", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "6df2d556-9ff1-d623-175c-d1fe75475d2a", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Only Human (Karaoke Version).mp4", + "title": "Only Human" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Lil Tecca", + "playlist_title": "Ran$om", + "found_song": { + "artist": "Lil Tecca", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dd515b2-c214-01d1-ee18-2b9ccdd1af3b", + "path": "z://MP4\\Sing King Karaoke\\Lil Tecca - Ran$om.mp4", + "title": "Ran$om" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Lil Nas X Featuring Billy Ray Cyrus", + "playlist_title": "Old Town Road", + "found_song": { + "artist": "Lil Nas X Featuring Billy Ray Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39cfb3d1-1320-3e1c-a48a-a4c6d2207294", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Nas X Featuring Billy Ray Cyrus - Old Town Road.mp4", + "title": "Old Town Road" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Khalid", + "playlist_title": "Talk", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "61590d8e-62d9-65f9-b453-874736ef12b2", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Talk (Karaoke Version).mp4", + "title": "Talk" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Sam Smith", + "playlist_title": "How Do You Sleep?", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "5da3c795-2e63-29e5-d2fa-b62727bb5942", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - How Do You Sleep (Karaoke Version).mp4", + "title": "How Do You Sleep" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Summer Walker", + "playlist_title": "Playing Games", + "found_song": { + "artist": "Summer Walker, Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "436ea2d7-1dac-313e-3bb3-cf6a12e86d13", + "path": "z://MP4\\Sing King Karaoke\\Summer Walker, Bryson Tiller - Playing Games (Karaoke Version).mp4", + "title": "Playing Games" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Chris Brown Featuring Gunna", + "playlist_title": "Heat", + "found_song": { + "artist": "Chris Brown Featuring Gunna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad34a8a3-3768-95ee-475b-eeaefa491b5e", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown Featuring Gunna - Heat.mp4", + "title": "Heat" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jonas Brothers", + "playlist_title": "Sucker", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "guid": "d53e3497-8149-1948-7aad-f320cfeb5f5b", + "path": "z://MP4\\Sing King Karaoke\\Jonas Brothers - Sucker (Karaoke Version).mp4", + "title": "Sucker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Halsey", + "playlist_title": "Graveyard", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "b97a91fe-1adb-6dcf-c2ac-53198aa09fae", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Graveyard (Karaoke Version).mp4", + "title": "Graveyard" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "DaBaby", + "playlist_title": "Suge", + "found_song": { + "artist": "DaBaby", + "disabled": false, + "favorite": false, + "guid": "714654e3-e342-23a9-d598-e92b38e5dacb", + "path": "z://MP4\\Sing King Karaoke\\DaBaby - Suge (Karaoke Version).mp4", + "title": "Suge" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "blackbear", + "playlist_title": "Hot Girl Bummer", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "6c01833b-7e55-ec58-ef56-7926f3b2ece7", + "path": "z://MP4\\Sing King Karaoke\\blackbear - hot girl bummer (Karaoke Version).mp4", + "title": "hot girl bummer" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Dua Lipa", + "playlist_title": "Don't Start Now", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "d7c8fafd-a34d-2fda-6bd8-396afa627cc2", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - Don't Start Now (Karaoke Version).mp4", + "title": "Don't Start Now" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Drake Featuring Rick Ross", + "playlist_title": "Money In The Grave", + "found_song": { + "artist": "Drake Featuring Rick Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "391ed033-b5b9-920b-5986-de40806b09e8", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rick Ross - Money In The Grave.mp4", + "title": "Money In The Grave" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Rod Wave", + "playlist_title": "Heart On Ice", + "found_song": { + "artist": "Rod Wave", + "disabled": false, + "favorite": false, + "guid": "b2191505-26d6-a964-b7a0-328b24dad52a", + "path": "z://MP4\\Sing King Karaoke\\Rod Wave - Heart On Ice (Karaoke Version).mp4", + "title": "Heart On Ice" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Harry Styles", + "playlist_title": "Watermelon Sugar", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c1f51e4-ae5f-36f1-c554-f8289c16aa56", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Watermelon Sugar (Karaoke Version).mp4", + "title": "Watermelon Sugar" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Niall Horan", + "playlist_title": "Nice To Meet Ya", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "852178ec-07c8-873c-5a70-4c898f48a572", + "path": "z://MP4\\ZoomKaraokeOfficial\\Niall Horan - Nice To Meet Ya.mp4", + "title": "Nice To Meet Ya" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Camila Cabello", + "playlist_title": "Liar", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "710f9af5-266a-9be0-d578-b2991dbd1ee8", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Liar (Karaoke Version).mp4", + "title": "Liar" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Trevor Daniel", + "playlist_title": "Falling", + "found_song": { + "artist": "Trevor Daniel", + "disabled": false, + "favorite": false, + "guid": "c92ecfac-39bb-3ef3-25bf-59b0a2d78fe8", + "path": "z://MP4\\Sing King Karaoke\\Trevor Daniel - Falling (Karaoke Version).mp4", + "title": "Falling" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Billie Eilish", + "playlist_title": "All The Good Girls Go To Hell", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "47454048-c49b-fbb1-a43a-889b4d46333b", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - all the good girls go to hell (Karaoke Version).mp4", + "title": "all the good girls go to hell" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Harry Styles", + "playlist_title": "Lights Up", + "found_song": { + "artist": "Harry Styles", + "disabled": false, + "favorite": false, + "guid": "985f9eaa-81c7-2932-fbf1-fcd2222c6175", + "path": "z://MP4\\Sing King Karaoke\\Harry Styles - Lights Up (Karaoke Version).mp4", + "title": "Lights Up" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Joji", + "playlist_title": "Slow Dancing In The Dark", + "found_song": { + "artist": "Joji", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1fa9c9c-1cf3-3f6b-6d86-1511c332e244", + "path": "z://MP4\\Sing King Karaoke\\Joji - SLOW DANCING IN THE DARK (Karaoke Version).mp4", + "title": "SLOW DANCING IN THE DARK" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Ant Saunders", + "playlist_title": "Yellow Hearts", + "found_song": { + "artist": "Ant Saunders", + "disabled": false, + "favorite": false, + "guid": "0df1cce5-d558-ba99-4977-e78438e3f911", + "path": "z://MP4\\Sing King Karaoke\\Ant Saunders - Yellow Hearts (Karaoke Version).mp4", + "title": "Yellow Hearts" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "Lover", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2de15e50-06f7-b8d3-6b36-b586b14ff6ef", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Lover (Karaoke Version).mp4", + "title": "Lover" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Tones And I", + "playlist_title": "Dance Monkey", + "found_song": { + "artist": "TONES & I", + "disabled": false, + "favorite": false, + "guid": "10508514-6d47-4d38-5919-238db3e30660", + "path": "z://MP4\\Sing King Karaoke\\TONES & I - DANCE MONKEY (Karaoke Version).mp4", + "title": "DANCE MONKEY" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Sam Smith & Normani", + "playlist_title": "Dancing With A Stranger", + "found_song": { + "artist": "Sam Smith ft. Normani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1569241d-064c-e35f-2049-1231bdcce495", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith & Normani - Dancing With A Stranger.mp4", + "title": "Dancing With A Stranger" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Shawn Mendes & Camila Cabello", + "title": "Senorita", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lil Baby", + "title": "Woah", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "DaBaby", + "title": "BOP", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Mustard Featuring Roddy Ricch", + "title": "Ballin'", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young Thug Featuring Gunna", + "title": "Hot", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Juice WRLD & YoungBoy Never Broke Again", + "title": "Bandit", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Wale Featuring Jeremih", + "title": "On Chill", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Ed Sheeran & Justin Bieber", + "title": "I Don't Care", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Post Malone Featuring Young Thug", + "title": "Goodbyes", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lil Baby & DaBaby", + "title": "Baby", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "NF", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Tory Lanez & T-Pain", + "title": "Jerry Sprunger", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "A Boogie Wit da Hoodie Featuring Lil Uzi Vert", + "title": "Reply", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Doja Cat & Tyga", + "title": "Juicy", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Kanye West", + "title": "Follow God", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jhene Aiko Featuring Big Sean", + "title": "None Of Your Concern", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "YNW Melly & 9lokknine", + "title": "223's", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Post Malone Featuring Ozzy Osbourne & Travis Scott", + "title": "Take What You Want", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "NLE Choppa", + "title": "Camelot", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "DaBaby", + "title": "VIBEZ", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Layton Greene, Lil Baby, City Girls & PnB Rock", + "title": "Leave Em Alone", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "DaBaby Featuring Offset", + "title": "Baby Sitter", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tory Lanez Featuring Chris Brown", + "title": "The Take", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Post Malone Featuring DaBaby", + "title": "Enemies", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Ellie Goulding & Juice WRLD", + "title": "Hate Me", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Dustin Lynch", + "title": "Ridin' Roads", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Russell Dickerson", + "title": "Every Little Thing", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Kenny Chesney", + "title": "Tip Of My Tongue", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "YoungBoy Never Broke Again", + "title": "Make No Sense", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Megan Thee Stallion, Nicki Minaj & Ty Dolla $ign", + "title": "Hot Girl Summer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Chris Lane", + "title": "I Don't Know About You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "YoungBoy Never Broke Again", + "title": "Lonely Child", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Lil Mosey x Gunna", + "title": "Stuck In A Dream", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Chris Janson", + "title": "Good Vibes", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "J Balvin & Bad Bunny", + "title": "La Cancion", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Tory Lanez Featuring Snoop Dogg", + "title": "Beauty In The Benz", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "DaniLeigh Featuring Chris Brown", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Khalid", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Y2K & bbno$", + "title": "Lalala", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Karol G & Nicki Minaj", + "title": "Tusa", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "YoungBoy Never Broke Again", + "title": "Self Control", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chance The Rapper Featuring MadeinTYO & DaBaby", + "title": "Hot Shower", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Trippie Redd Featuring DaBaby", + "title": "Death", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Blake Shelton Featuring Trace Adkins", + "title": "Hell Right", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Black Eyed Peas X J Balvin", + "title": "RITMO (Bad Boys For Life)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 3, + "missing_count": 52, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2019 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Old Dominion", + "playlist_title": "One Man Band", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fdf9bc5d-53fc-8f88-9c2f-95af5b6dbc0a", + "path": "z://MP4\\Sing King Karaoke\\Old Dominion - One Man Band (Karaoke Version).mp4", + "title": "One Man Band" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "Even Though I'm Leaving", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "e57ef8d3-7ed5-772f-e176-56a1ce2bdc6e", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Even Though I'm Leaving (Karaoke Version).mp4", + "title": "Even Though I'm Leaving" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lady Antebellum", + "playlist_title": "What If I Never Get Over You", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "50b6a6a8-a0a2-7e45-de91-00f828f2f78e", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - What If I Never Get Over You (Karaoke Version).mp4", + "title": "What If I Never Get Over You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Maren Morris", + "playlist_title": "The Bones", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "26841095-a7b8-6293-1f1a-fadf26935cfd", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - The Bones (Karaoke Version).mp4", + "title": "The Bones" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Matt Stell", + "playlist_title": "Prayed For You", + "found_song": { + "artist": "Matt Stell", + "disabled": false, + "favorite": false, + "guid": "ea1f55eb-bd28-c300-543b-522a20f98184", + "path": "z://MP4\\Karaoke Junkies\\Matt Stell - Prayed For You (Karaoke).mp4", + "title": "Prayed For You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Sam Hunt", + "playlist_title": "Kinfolks", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e10da16-c816-4abe-45f0-6730797cec94", + "path": "z://MP4\\KaraokeOnVEVO\\Sam Hunt - Kinfolks.mp4", + "title": "Kinfolks" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Keith Urban", + "playlist_title": "We Were", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81631a6e-2a78-0416-62d8-09d7824b0cac", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - We Were.mp4", + "title": "We Were" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "homecoming queen?", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "ee7595d2-fb4c-c8c9-6a2a-54269438fbf2", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - homecoming queen (Karaoke Version).mp4", + "title": "homecoming queen" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Blanco Brown", + "playlist_title": "The Git Up", + "found_song": { + "artist": "Blanco Brown", + "disabled": false, + "favorite": false, + "guid": "c412ee98-7fce-4bf3-e94d-f066eedddf08", + "path": "z://MP4\\Sing King Karaoke\\Blanco Brown - The Git Up (Karaoke Version).mp4", + "title": "The Git Up" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Luke Bryan", + "playlist_title": "What She Wants Tonight", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6e4e74c-5cba-40bd-82ef-30cc07110726", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - What She Wants Tonight.mp4", + "title": "What She Wants Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Gabby Barrett", + "playlist_title": "I Hope", + "found_song": { + "artist": "Gabby Barrett", + "disabled": false, + "favorite": false, + "guid": "afe18863-56c3-af48-6736-eb0cf7ae89b5", + "path": "z://MP4\\Sing King Karaoke\\Gabby Barrett - I Hope (Karaoke Version).mp4", + "title": "I Hope" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ingrid Andress", + "playlist_title": "More Hearts Than Mine", + "found_song": { + "artist": "Ingrid Andress", + "disabled": false, + "favorite": false, + "guid": "0802e2e0-0b78-6366-3bbb-ba7bcbc7a108", + "path": "z://MP4\\Sing King Karaoke\\Ingrid Andress - More Hearts Than Mine (Karaoke Version).mp4", + "title": "More Hearts Than Mine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Luke Combs", + "playlist_title": "Better Together", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff764c98-6f86-43b4-6889-82938466f858", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Better Together (Karaoke Version).mp4", + "title": "Better Together" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Chasin' You", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f567e4ab-5b8a-6672-d383-d51110d81dc3", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Chasin' You (Karaoke Version).mp4", + "title": "Chasin' You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Combs", + "playlist_title": "Refrigerator Door", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "9259e424-7187-5103-bbf2-3266e81eefe9", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Refrigerator Door (Karaoke).mp4", + "title": "Refrigerator Door" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Kane Brown", + "playlist_title": "For My Daughter", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70bf87f2-3f65-3cf2-633f-5eb6d000d6d3", + "path": "z://MP4\\KaraokeOnVEVO\\Kane Brown - For My Daughter.mp4", + "title": "For My Daughter" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Luke Combs", + "playlist_title": "Moon Over Mexico", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "eb496a75-5c45-4d6f-8243-c132f83da176", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Moon Over Mexico (Karaoke).mp4", + "title": "Moon Over Mexico" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Luke Combs", + "playlist_title": "Nothing Like You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "ff33931d-ffad-dd43-9cf5-ec61b3191c62", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Nothing Like You (Karaoke).mp4", + "title": "Nothing Like You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Luke Combs", + "playlist_title": "Lovin' On You", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "8bf6b10f-0942-4dfe-6e38-242d841d5012", + "path": "z://MP4\\Karaoke Junkies\\Luke Combs - Lovin' On You (Karaoke).mp4", + "title": "Lovin' On You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Caylee Hammack", + "playlist_title": "Family Tree", + "found_song": { + "artist": "Caylee Hammack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9400c16d-7cea-7de1-2b14-dc9476d76faa", + "path": "z://MP4\\KaraokeOnVEVO\\Caylee Hammack - Family Tree.mp4", + "title": "Family Tree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 34, + "playlist_artist": "Carly Pearce & Lee Brice", + "playlist_title": "I Hope You're Happy Now", + "found_song": { + "artist": "Carly Pearce & Lee Brice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d205fc6-1781-bb83-3f00-3734ec6339ad", + "path": "z://MP4\\Sing King Karaoke\\Carly Pearce & Lee Brice - I Hope Youre Happy Now.mp4", + "title": "I Hope You're Happy Now" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Dan + Shay & Justin Bieber", + "title": "10,000 Hours", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Marshmello & Kane Brown", + "title": "One Thing Right", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Thomas Rhett", + "title": "Remember You Young", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jon Pardi", + "title": "Heartache Medication", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Dustin Lynch", + "title": "Ridin' Roads", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kenny Chesney", + "title": "Tip Of My Tongue", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Diplo Presents Thomas Wesley Featuring Morgan Wallen", + "title": "Heartless", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jason Aldean", + "title": "We Back ", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Blake Shelton Featuring Trace Adkins", + "title": "Hell Right", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Miranda Lambert", + "title": "It All Comes Out In The Wash", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jimmie Allen", + "title": "Make Me Want To", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Garth Brooks & Blake Shelton", + "title": "Dive Bar", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jordan Davis", + "title": "Slow Dance In A Parking Lot", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Riley Green", + "title": "I Wish Grandpas Never Died", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Ryan Hurd", + "title": "To A T", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Brett Young", + "title": "Catch", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jake Owen", + "title": "Homemade", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Luke Combs & Brooks & Dunn", + "title": "1, 2 Many", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Luke Combs", + "title": "What You See Is What You Get", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Carrie Underwood", + "title": "Drinking Alone", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Luke Combs", + "title": "Reasons", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Luke Combs", + "title": "All Over Again", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Travis Denning", + "title": "After A Few", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Luke Combs Featuring Eric Church", + "title": "Does To Me", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Michael Ray", + "title": "Her World Or Mine", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Chris Young", + "title": "Drowning", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Eric Church", + "title": "Monsters", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 2, + "missing_count": 28, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2018 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Queen", + "playlist_title": "Bohemian Rhapsody", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "907f0224-0e38-c1cd-7643-e7947b5b3ea9", + "path": "z://MP4\\Sing King Karaoke\\Queen - Bohemian Rhapsody (Karaoke Version).mp4", + "title": "Bohemian Rhapsody" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a48ea54-c714-ea62-83f7-08c94bce978d", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Will Rock You (2.mp4", + "title": "We Will Rock You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Queen", + "playlist_title": "Don't Stop Me Now", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "9099a025-0a4b-5648-7c69-1c9c0e570fac", + "path": "z://MP4\\Sing King Karaoke\\Queen - Don't Stop Me Now (Karaoke Version).mp4", + "title": "Don't Stop Me Now" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Queen", + "playlist_title": "Killer Queen", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "86abd8d9-bbe2-3ebb-86a0-818309b65288", + "path": "z://MP4\\Sing King Karaoke\\Queen - Killer Queen (Karaoke Version).mp4", + "title": "Killer Queen" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Queen", + "playlist_title": "We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "f77cf827-4ec3-14c5-7afd-b28061589a08", + "path": "z://MP4\\Sing King Karaoke\\Queen - We Are The Champions (Karaoke Version).mp4", + "title": "We Are The Champions" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Bad Liar", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "9363c3e9-27dd-4168-9f80-a56a8f0526f1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Bad Liar (Karaoke Version).mp4", + "title": "Bad Liar" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Zero", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "f65787cf-7654-65e4-730a-71b0104d2710", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Zero (Karaoke Version).mp4", + "title": "Zero" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Queen", + "playlist_title": "I Want To Break Free", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7eedc299-eedf-9b34-51df-9cc40ad17547", + "path": "z://MP4\\Sing King Karaoke\\Queen - I Want To Break Free (Karaoke Version).mp4", + "title": "I Want To Break Free" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Radio Ga Ga", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "33fc0ad0-9e6a-56f1-2ef1-f6fe431b8b32", + "path": "z://MP4\\Sing King Karaoke\\Queen - Radio Ga Ga (Karaoke Version).mp4", + "title": "Radio Ga Ga" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Queen", + "playlist_title": "Fat Bottomed Girls", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "72634af2-46a7-deba-6d54-666ba5e54ed9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fat Bottomed Girls - Queen.mp4", + "title": "Fat Bottomed Girls" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Queen", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "7d27d172-136b-8538-58cd-1a54e39a4f2a", + "path": "z://MP4\\Sing King Karaoke\\Queen - Love Of My Life (Karaoke Version).mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "George Ezra", + "playlist_title": "Shotgun", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "497317c0-2a67-7155-6744-1ac112e17108", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Shotgun (Karaoke Version).mp4", + "title": "Shotgun" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hozier", + "playlist_title": "Movement", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad509a09-2fce-a4e9-6a0f-427299cf344a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hozier - Movement.mp4", + "title": "Movement" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Queen", + "playlist_title": "Hammer To Fall (Live Aid)", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a297761f-af13-8d18-ff7d-ca16a3655846", + "path": "z://MP4\\KaraFun Karaoke\\Hammer to Fall (Live Aid) - Queen Karaoke Version KaraFun.mp4", + "title": "Hammer to Fall (Live Aid)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The 1975", + "playlist_title": "Love It If We Made It", + "found_song": { + "artist": "The 1975", + "disabled": false, + "favorite": false, + "guid": "312899c6-cc20-877f-7be9-a3e18b41a770", + "path": "z://MP4\\Sing King Karaoke\\The 1975 - Love It If We Made It (Karaoke Version).mp4", + "title": "Love It If We Made It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "twenty one pilots", + "playlist_title": "Chlorine", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "15adda1c-76c5-c59d-1a08-ef7dbceb8be3", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Chlorine (Karaoke Version).mp4", + "title": "Chlorine" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "When The Curtain Falls", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "074febe9-9e38-3e22-7629-5f7907fbdfe3", + "path": "z://MP4\\KaraokeOnVEVO\\Greta Van Fleet - When The Curtain Falls (Karaoke).mp4", + "title": "When The Curtain Falls" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Ghost", + "playlist_title": "Dance Macabre", + "found_song": { + "artist": "Ghost", + "disabled": false, + "favorite": false, + "guid": "72d977f5-2b3f-5d63-0917-d8cd9cff4e3d", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Ghost - Dance Macabre (Karaoke).mp4", + "title": "Dance Macabre" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Mantra", + "found_song": { + "artist": "Bring Me the Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab7172ea-287b-4846-9c6c-6ad52275b06d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-12 - Bring Me the Horizon - Mantra.mp3", + "title": "Mantra" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Elle King", + "playlist_title": "Shame", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "57f1429e-b239-eb79-463d-09af4ffa4776", + "path": "z://MP4\\KaraokeOnVEVO\\Elle King - Shame.mp4", + "title": "Shame" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The Glorious Sons", + "playlist_title": "S.O.S. (Sawed Off Shotgun)", + "found_song": { + "artist": "The Glorious Sons", + "disabled": false, + "favorite": false, + "guid": "7c3f54b6-c3df-5b8f-ca1e-ead95c62ccc5", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Glorious Sons - Sawed Off Shotgun (SOS) (Karaoke).mp4", + "title": "Sawed Off Shotgun (SOS)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Weezer", + "title": "Africa", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Mumford & Sons", + "title": "Guiding Light", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "flora cash", + "title": "You're Somebody Else", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Panic! At The Disco", + "title": "The Greatest Show", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Shinedown", + "title": "Get Up", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Revivalists", + "title": "All My Friends", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Interrupters", + "title": "She's Kerosene", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bad Wolves Featuring DIAMANTE", + "title": "Hear Me Now", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Disturbed", + "title": "Are You Ready", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Struts", + "title": "Body Talks", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Muse", + "title": "Pressure", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Godsmack", + "title": "When Legends Rise", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Imagine Dragons", + "title": "Machine", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Queen", + "title": "Radio Ga Ga (Live Aid)", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Slipknot", + "title": "All Out Life", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Young The Giant", + "title": "Superposition", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Mumford & Sons", + "title": "42", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Foster The People", + "title": "Worst Nites", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "lovelytheband", + "title": "These Are My Friends", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Queen", + "title": "Ay-Oh (Live Aid)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Portugal. The Man", + "title": "Tidal Wave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 26, + "fuzzy_match_count": 3, + "missing_count": 21, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2018 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "6ix9ine Featuring Lil Baby", + "playlist_title": "TIC TOC", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Daniel Caesar Featuring H.E.R.", + "playlist_title": "Best Part", + "found_song": { + "artist": "Daniel Caesar Featuring H.E.R.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2335b9f7-7ad8-f5e2-9a49-807929aeba62", + "path": "z://MP4\\Sing King Karaoke\\Daniel Caesar Featuring H.E.R. - Best Part.mp4", + "title": "Best Part" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "title": "Wake Up In The Sky", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Wayne", + "title": "Uproar", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake", + "title": "Nonstop", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "YG Featuring 2 Chainz, Big Sean & Nicki Minaj", + "title": "Big Bank", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Trippie Redd", + "title": "Topanga", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "French Montana Featuring Drake", + "title": "No Stylist", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tyga & Nicki Minaj", + "title": "Dip", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Metro Boomin Featuring Gunna", + "title": "Space Cadet", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Kanye West & Lil Pump", + "title": "I Love It", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lil Mosey", + "title": "Noticed", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Quavo", + "title": "W O R K I N M E", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Eminem Featuring Joyner Lucas", + "title": "Lucky You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Amine", + "title": "Reel It In", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "6ix9ine Featuring DJ SPINKING", + "title": "TATI", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 1, + "missing_count": 34, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2018 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Bazzi Featuring Camila Cabello", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Bazzi Featuring Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3283d8bf-6c02-04ec-1144-f4282960eb6f", + "path": "z://MP4\\Sing King Karaoke\\Bazzi Featuring Camila Cabello - Beautiful.mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "playlist_title": "Close To Me", + "found_song": { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e000c325-49ce-07f0-8543-618446263e05", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding X Diplo Featuring Swae Lee - Close To Me.mp4", + "title": "Close To Me" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Chainsmokers Featuring Kelsea Ballerini", + "playlist_title": "This Feeling", + "found_song": { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "975c5121-8704-e712-2a81-acccd6f24aa5", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Kelsea Ballerini - This Feeling.mp4", + "title": "This Feeling" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Why Don't We", + "playlist_title": "8 Letters", + "found_song": { + "artist": "Why Don't We", + "disabled": false, + "favorite": false, + "guid": "5eafe4e2-ca60-4f7e-5ef7-6783be8505eb", + "path": "z://MP4\\Sing King Karaoke\\Why Don't We - 8 Letters (Karaoke Version).mp4", + "title": "8 Letters" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Zara Larsson", + "playlist_title": "Ruin My Life", + "found_song": { + "artist": "Zara Larsson", + "disabled": false, + "favorite": false, + "guid": "3047e50a-39ab-f160-2eea-7f4e56c83624", + "path": "z://MP4\\Sing King Karaoke\\Zara Larsson - Ruin My Life (Karaoke Version).mp4", + "title": "Ruin My Life" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "twenty one pilots", + "playlist_title": "My Blood", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "d375bbac-ae9d-37e4-df1a-e92c4c8632da", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - My Blood (Karaoke Version).mp4", + "title": "My Blood" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Lauv Featuring Julia Michaels", + "playlist_title": "There's No Way", + "found_song": { + "artist": "Lauv Featuring Julia Michaels", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b72bee52-591c-90a5-0927-01e196082c26", + "path": "z://MP4\\Sing King Karaoke\\Lauv Featuring Julia Michaels - There's No Way.mp4", + "title": "There's No Way" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lukas Graham", + "playlist_title": "Love Someone", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "09c5bf2a-68c3-74c0-1fec-b9328620e5f1", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Love Someone (Karaoke Version).mp4", + "title": "Love Someone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Loud Luxury Featuring Brando", + "playlist_title": "Body", + "found_song": { + "artist": "Loud Luxury Featuring Brando", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ab0327e-cd22-14e4-23b8-e6fe70b6ef98", + "path": "z://MP4\\Sing King Karaoke\\Loud Luxury Featuring Brando - Body.mp4", + "title": "Body" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Marshmello & Bastille", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Khalid & Normani", + "title": "Love Lies", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Benny Blanco, Halsey & Khalid", + "title": "Eastside", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Maroon 5 Featuring Cardi B", + "title": "Girls Like You", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Silk City x Dua Lipa", + "title": "Electricity", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "title": "Taki Taki", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Labrinth, Sia & Diplo Present... LSD", + "title": "Thunderclouds", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Alessia Cara", + "title": "Trust My Lonely", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Drake Featuring Michael Jackson", + "title": "Don't Matter To Me", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "DJ Khaled Featuring Justin Bieber, Chance The Rapper & Quavo", + "title": "No Brainer", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Steve Aoki Featuring BTS", + "title": "Waste It On Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 6, + "missing_count": 14, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2018 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Travis Scott", + "playlist_title": "Sicko Mode", + "found_song": { + "artist": "Travis Scott ft. Drake", + "disabled": false, + "favorite": false, + "guid": "2338ca0f-a9f9-a74e-1a0a-c756fd71cb37", + "path": "z://MP4\\Sing King Karaoke\\Travis Scott ft. Drake - SICKO MODE (Karaoke Version).mp4", + "title": "SICKO MODE" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Halsey", + "playlist_title": "Without Me", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "bf3e074d-27f3-9d97-8655-5d3421e3a523", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Without Me (Karaoke Version).mp4", + "title": "Without Me" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "High Hopes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "3580ee71-b2b5-fa9d-1ba5-f13946863630", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - High Hopes (Karaoke Version).mp4", + "title": "High Hopes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sheck Wes", + "playlist_title": "Mo Bamba", + "found_song": { + "artist": "Sheck Wes", + "disabled": false, + "favorite": false, + "guid": "50fe49e3-b863-1512-5308-fe5849234eb3", + "path": "z://MP4\\Sing King Karaoke\\Sheck Wes - Mo Bamba (Karaoke Version).mp4", + "title": "Mo Bamba" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Juice WRLD", + "playlist_title": "Lucid Dreams", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1c6d9b2-e080-d11f-0764-a856221dfede", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Lucid Dreams (Karaoke Version).mp4", + "title": "Lucid Dreams" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "Better Now", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "b9c88811-2381-a5a1-ff2e-52e96f223288", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - Better Now (Karaoke Version).mp4", + "title": "Better Now" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "5 Seconds Of Summer", + "playlist_title": "Youngblood", + "found_song": { + "artist": "5 Seconds of Summer", + "disabled": false, + "favorite": false, + "guid": "2468e9ea-d04f-3328-bb3e-23359b7e306e", + "path": "z://MP4\\Sing King Karaoke\\5 Seconds Of Summer - Youngblood (Karaoke Version).mp4", + "title": "Youngblood" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Ella Mai", + "playlist_title": "Trip", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "ebec3d07-0fbb-57bc-d6a4-549f48ba28bd", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Trip (Karaoke Version).mp4", + "title": "Trip" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cardi B", + "playlist_title": "Money", + "found_song": { + "artist": "Cardi B", + "disabled": false, + "favorite": false, + "guid": "5e68a900-adde-0671-86c9-f5e7916a45e4", + "path": "z://MP4\\Sing King Karaoke\\Cardi B - Money (Karaoke Version).mp4", + "title": "Money" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Natural", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "d50110a9-9a82-6d65-d42c-eb55d1548aa1", + "path": "z://MP4\\Stingray Karaoke\\Natural Imagine Dragons Karaoke with Lyrics.mp4", + "title": "Natural" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Flipp Dinero", + "playlist_title": "Leave Me Alone", + "found_song": { + "artist": "Flipp Dinero", + "disabled": false, + "favorite": false, + "guid": "72790b1f-292b-5d5e-be82-c92aed6c9825", + "path": "z://MP4\\Sing King Karaoke\\Flipp Dinero - Leave Me Alone (Karaoke Version).mp4", + "title": "Leave Me Alone" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Khalid", + "playlist_title": "Better", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "25514073-40b2-8ce5-a51b-04747491711d", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Better (Karaoke Version).mp4", + "title": "Better" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Bazzi Featuring Camila Cabello", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Bazzi Featuring Camila Cabello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3283d8bf-6c02-04ec-1144-f4282960eb6f", + "path": "z://MP4\\Sing King Karaoke\\Bazzi Featuring Camila Cabello - Beautiful.mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Drake", + "playlist_title": "In My Feelings", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ef740d8-7d9d-e3a1-17e5-adddfcb51403", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF390\\SF390-02 - Drake - In My Feelings.mp3", + "title": "In My Feelings" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wham!", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "guid": "5966c3ba-f07d-1926-0f67-0b875bce858e", + "path": "z://MP4\\Sing King Karaoke\\Wham! - Last Christmas (Pudding Mix Karaoke Version).mp4", + "title": "Last Christmas" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ella Mai", + "playlist_title": "Boo'd Up", + "found_song": { + "artist": "Ella Mai", + "disabled": false, + "favorite": false, + "guid": "fc8b7192-9e13-6662-e1ea-cd27edeff2a8", + "path": "z://MP4\\Sing King Karaoke\\Ella Mai - Boo'd Up (Karaoke Version).mp4", + "title": "Boo'd Up" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "NF", + "playlist_title": "Lie", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "b15dd48f-952f-f3e7-6e2b-354675205a93", + "path": "z://MP4\\Sing King Karaoke\\NF - Lie (Karaoke Version).mp4", + "title": "Lie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Eilish", + "playlist_title": "When The Party's Over", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "71a1943f-3bbe-80e5-b1f4-65a69de29032", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - when the party's over (Karaoke Version).mp4", + "title": "when the party's over" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "XXXTENTACION", + "playlist_title": "BAD!", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcb82b4c-4984-17b1-cf83-e544826212fb", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - BAD!.mp4", + "title": "BAD!" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Juice WRLD", + "playlist_title": "Armed And Dangerous", + "found_song": { + "artist": "Juice WRLD", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd3ad5c7-3252-7999-ff95-5675e15d02fd", + "path": "z://MP4\\Sing King Karaoke\\Juice WRLD - Armed And Dangerous.mp4", + "title": "Armed And Dangerous" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Lauren Daigle", + "playlist_title": "You Say", + "found_song": { + "artist": "Lauren Daigle", + "disabled": false, + "favorite": false, + "guid": "b37aa5f4-041e-f4e3-3237-2e71866e24ae", + "path": "z://MP4\\Sing King Karaoke\\Lauren Daigle - You Say (Karaoke Version).mp4", + "title": "You Say" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "6ix9ine Featuring Lil Baby", + "playlist_title": "TIC TOC", + "found_song": { + "artist": "6ix9ine Featuring Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1e208796-245c-7d30-ae09-6bd49934380b", + "path": "z://MP4\\Sing King Karaoke\\6ix9ine Featuring Lil Baby - TIC TOC.mp4", + "title": "TIC TOC" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Lil Baby", + "playlist_title": "Close Friends", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58282096-0e31-fa1b-d9e9-6153fd817118", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby - Close Friends.mp4", + "title": "Close Friends" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dean Lewis", + "playlist_title": "Be Alright", + "found_song": { + "artist": "Dean Lewis", + "disabled": false, + "favorite": false, + "guid": "c665eb3d-eb48-446d-f7f3-4bb0d2c6a627", + "path": "z://MP4\\Sing King Karaoke\\Dean Lewis - Be Alright (Karaoke Version).mp4", + "title": "Be Alright" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Billie Eilish", + "playlist_title": "Come Out And Play", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "32ba4069-8510-f0ad-5ede-22d5265d29b2", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - come out and play (Karaoke Version).mp4", + "title": "come out and play" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Dierks Bentley Featuring Brothers Osborne", + "playlist_title": "Burning Man", + "found_song": { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96ec64b9-4e71-7916-0a64-fa4cc7c9d5ab", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Brothers Osborne - Burning Man.mp4", + "title": "Burning Man" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Camila Cabello", + "playlist_title": "Consequences", + "found_song": { + "artist": "Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "a13d70d8-bf23-d7b4-6429-977d047575ea", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello - Consequences (Karaoke Version).mp4", + "title": "Consequences" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bebe Rexha", + "playlist_title": "I'm A Mess", + "found_song": { + "artist": "Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "f1b186ab-2866-50e3-a066-3e142757a058", + "path": "z://MP4\\Sing King Karaoke\\Bebe Rexha - I'm A Mess (Karaoke Version).mp4", + "title": "I'm A Mess" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "The Chainsmokers Featuring Kelsea Ballerini", + "playlist_title": "This Feeling", + "found_song": { + "artist": "The Chainsmokers Featuring Kelsea Ballerini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "975c5121-8704-e712-2a81-acccd6f24aa5", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Kelsea Ballerini - This Feeling.mp4", + "title": "This Feeling" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Maren Morris", + "playlist_title": "Rich", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "be2f1409-5b99-a5e9-e56b-222bd1fb6dec", + "path": "z://MP4\\Sing King Karaoke\\Maren Morris - Rich (Karaoke Version).mp4", + "title": "Rich" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Daniel Caesar Featuring H.E.R.", + "playlist_title": "Best Part", + "found_song": { + "artist": "Daniel Caesar Featuring H.E.R.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2335b9f7-7ad8-f5e2-9a49-807929aeba62", + "path": "z://MP4\\Sing King Karaoke\\Daniel Caesar Featuring H.E.R. - Best Part.mp4", + "title": "Best Part" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Billie Eilish", + "playlist_title": "Ocean Eyes", + "found_song": { + "artist": "Billie Eilish", + "disabled": false, + "favorite": false, + "guid": "fb03dae2-190a-7ef5-4996-742afe03de13", + "path": "z://MP4\\Sing King Karaoke\\Billie Eilish - Ocean Eyes (Karaoke Version).mp4", + "title": "Ocean Eyes" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "playlist_title": "Close To Me", + "found_song": { + "artist": "Ellie Goulding X Diplo Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e000c325-49ce-07f0-8543-618446263e05", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding X Diplo Featuring Swae Lee - Close To Me.mp4", + "title": "Close To Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Ariana Grande", + "playlist_title": "Thank U, Next", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "2d0c03ac-cac3-f8f7-24ca-8454ee0118bb", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - thank u, next (Karaoke Version).mp4", + "title": "thank u, next" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Lil Baby & Gunna", + "playlist_title": "Drip Too Hard", + "found_song": { + "artist": "Lil Baby & Gunna", + "disabled": false, + "favorite": false, + "guid": "2b0a2dfc-e032-005c-a1ac-969091357718", + "path": "z://MP4\\Sing King Karaoke\\Lil Baby & Gunna - Drip Too Hard (Karaoke Version).mp4", + "title": "Drip Too Hard" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Ariana Grande", + "playlist_title": "Breathin", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "717c0ab1-159f-5a5b-555a-b5c05bd7da01", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - breathin (Karaoke Version).mp4", + "title": "breathin" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "lovelytheband", + "playlist_title": "Broken", + "found_song": { + "artist": "lovelytheband", + "disabled": false, + "favorite": false, + "guid": "1e61e0cc-6d24-fc30-b9c5-11caaa33ea38", + "path": "z://MP4\\Sing King Karaoke\\lovelytheband - broken (Karaoke Version).mp4", + "title": "broken" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Ariana Grande", + "playlist_title": "God Is A Woman", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "3715a112-ee83-64e2-2b9e-704b3c7dedb4", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - God Is A Woman (Karaoke Version).mp4", + "title": "God Is A Woman" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Shawn Mendes X Zedd", + "playlist_title": "Lost In Japan", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "e9ac6cf8-b6ed-d0a2-1bb7-8da524b7a118", + "path": "z://MP4\\Stingray Karaoke\\Lost In Japan Shawn Mendes Karaoke with Lyrics.mp4", + "title": "Lost In Japan" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Marshmello & Bastille", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kodak Black Featuring Travis Scott & Offset", + "title": "ZEZE", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Maroon 5 Featuring Cardi B", + "title": "Girls Like You", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gucci Mane X Bruno Mars X Kodak Black", + "title": "Wake Up In The Sky", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Post Malone & Swae Lee", + "title": "Sunflower (Spider-Man: Into The Spider-Verse)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Benny Blanco, Halsey & Khalid", + "title": "Eastside", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bad Bunny Featuring Drake", + "title": "MIA", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Khalid & Normani", + "title": "Love Lies", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "DJ Snake Featuring Selena Gomez, Ozuna & Cardi B", + "title": "Taki Taki", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Lady Gaga & Bradley Cooper", + "title": "Shallow", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Cardi B, Bad Bunny & J Balvin", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tyga Featuring Offset", + "title": "Taste", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "6ix9ine Featuring Nicki Minaj & Murda Beatz", + "title": "FEFE", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Wayne", + "title": "Uproar", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Lil Baby & Drake", + "title": "Yes Indeed", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Drake", + "title": "Nonstop", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Cardi B Featuring Kehlani", + "title": "Ring", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Meek Mill Featuring Jeremih & PnB Rock", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Mitchell Tenpenny", + "title": "Drunk Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "XXXTENTACION x Lil Pump Featuring Maluma & Swae Lee", + "title": "Arms Around You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "6ix9ine Featuring Nicki Minaj & Kanye West", + "title": "MAMA", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "6ix9ine Featuring Tory Lanez", + "title": "KIKA", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "6ix9ine Featuring Bobby Shmurda", + "title": "STOOPID", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Future & Juice WRLD", + "title": "Fine China", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Trippie Redd", + "title": "Topanga", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Yella Beezy", + "title": "That's On Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil' Duval Featuring Snoop Dogg & Ball Greezy", + "title": "Smile (Living My Best Life)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "10 Freaky Girls", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "6ix9ine Featuring A Boogie Wit da Hoodie", + "title": "WAKA", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Trippie Redd Featuring Juice WRLD", + "title": "1400 / 999 Freestyle", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "French Montana Featuring Drake", + "title": "No Stylist", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Tory Lanez & Rich The Kid", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pardison Fontaine Featuring Cardi B", + "title": "Backin' It Up", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Chris Young", + "title": "Hangin' On", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tyga & Nicki Minaj", + "title": "Dip", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Dustin Lynch", + "title": "Good Girl", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Billie Eilish & Khalid", + "title": "Lovely", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Anuel AA & Romeo Santos", + "title": "Ella Quiere Beber", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Lil Baby & Gunna Featuring Drake", + "title": "Never Recover", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "6ix9ine Featuring Anuel AA", + "title": "BEBE", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Thomas Rhett", + "title": "Sixteen", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Russell Dickerson", + "title": "Blue Tacoma", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jacquees", + "title": "You", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Metro Boomin Featuring Gunna", + "title": "Space Cadet", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kip Moore", + "title": "Last Shot", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Jason Aldean", + "title": "Girl Like You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Metro Boomin Featuring 21 Savage", + "title": "Don't Come Out The House", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Kanye West & Lil Pump", + "title": "I Love It", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lil Peep & XXXTENTACION", + "title": "Falling Down", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Lil Mosey", + "title": "Noticed", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 6, + "missing_count": 51, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2018 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Dan + Shay", + "playlist_title": "Speechless", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": true, + "guid": "8d428eda-0064-ce62-92ad-e08e6027fc26", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Speechless (Karaoke Version).mp4", + "title": "Speechless" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Kane Brown", + "playlist_title": "Lose It", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "97fb86c5-d68f-f4df-6a59-374333c1ae7e", + "path": "z://MP4\\Stingray Karaoke\\Lose It Kane Brown Karaoke with Lyrics.mp4", + "title": "Lose It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Combs", + "playlist_title": "She Got The Best Of Me ", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "guid": "2e9f99ff-6fb5-36df-998e-125864356ee2", + "path": "z://MP4\\King of Karaoke\\Luke Combs - She Got the Best of Me - King of Karaoke.mp4", + "title": "She Got the Best of Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan + Shay", + "playlist_title": "Tequila", + "found_song": { + "artist": "Dan + Shay", + "disabled": false, + "favorite": false, + "guid": "b5a5e36f-03c6-9123-542b-522d65a7dfb2", + "path": "z://MP4\\Sing King Karaoke\\Dan + Shay - Tequila (Karaoke Version).mp4", + "title": "Tequila" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Dierks Bentley Featuring Brothers Osborne", + "playlist_title": "Burning Man", + "found_song": { + "artist": "Dierks Bentley Featuring Brothers Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96ec64b9-4e71-7916-0a64-fa4cc7c9d5ab", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Brothers Osborne - Burning Man.mp4", + "title": "Burning Man" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Scotty McCreery", + "playlist_title": "This Is It", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "ac4138e8-24a2-c1c3-cfed-fab42e7745f7", + "path": "z://MP4\\Karaoke Studio\\Scotty McCreery - This Is It (Karaoke with Lyrics).mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Millionaire", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "95534f43-a242-c5f8-adf5-ac47ada16bca", + "path": "z://MP4\\Stingray Karaoke\\Millionaire Chris Stapleton Karaoke with Lyrics.mp4", + "title": "Millionaire" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eric Church", + "playlist_title": "Desperate Man", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "23fceba7-f85b-58cd-8df5-7bccefffbd09", + "path": "z://MP4\\King of Karaoke\\Eric Church - Desperate Man - King of Karaoke.mp4", + "title": "Desperate Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Luke Combs", + "playlist_title": "Beautiful Crazy", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a182bbe1-f007-bd48-dbe6-629ad92b9e92", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - Beautiful Crazy (Karaoke Version).mp4", + "title": "Beautiful Crazy" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jake Owen", + "playlist_title": "Down To The Honkytonk", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "3382b479-7d9a-a4b3-fc3f-d97bf5246b04", + "path": "z://MP4\\Stingray Karaoke\\Down To The Honkytonk Jake Owen Karaoke with Lyrics.mp4", + "title": "Down To The Honkytonk" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Luke Bryan", + "playlist_title": "What Makes You Country", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "073c8c3c-e474-6080-1ec8-49c945a98963", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - What Makes You Country Karaoke.mp4", + "title": "What Makes You Country" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Morgan Wallen", + "playlist_title": "Whiskey Glasses", + "found_song": { + "artist": "Morgan Wallen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "696b4a9b-4671-fc44-d095-73da32cc5452", + "path": "z://MP4\\Sing King Karaoke\\Morgan Wallen - Whiskey Glasses (Karaoke Version).mp4", + "title": "Whiskey Glasses" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Midland", + "playlist_title": "Burn Out", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "26be8d4d-f23f-1ced-ba5a-c0fa3f85a677", + "path": "z://MP4\\King of Karaoke\\Midland - Burn Out - King of Karaoke.mp4", + "title": "Burn Out" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Die From A Broken Heart", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "ebae209e-e013-7968-fab2-5419bc130418", + "path": "z://MP4\\Sing King Karaoke\\Maddie & Tae - Die From A Broken Heart (Karaoke Version).mp4", + "title": "Die From A Broken Heart" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Friends Don't", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "a5fe7352-f222-7435-4ac0-a643e6172f3c", + "path": "z://MP4\\KtvEntertainment\\Maddie & Tae - Friends Don't Karaoke Lyrics.mp4", + "title": "Friends Don't" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jimmie Allen", + "title": "Best Shot", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Mitchell Tenpenny", + "title": "Drunk Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Chris Young", + "title": "Hangin' On", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Dustin Lynch", + "title": "Good Girl", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Thomas Rhett", + "title": "Sixteen", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Kip Moore", + "title": "Last Shot", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jason Aldean", + "title": "Girl Like You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Blake Shelton", + "title": "Turnin' Me On", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jordan Davis", + "title": "Take It From Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Riley Green", + "title": "There Was This Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Tim McGraw", + "title": "Neon Church", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kelsea Ballerini", + "title": "Miss Me More", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Jon Pardi", + "title": "Night Shift", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Old Dominion", + "title": "Make It Sweet", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Carrie Underwood", + "title": "Love Wins", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Brett Young", + "title": "Here Tonight", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Cody Johnson", + "title": "On My Way To You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Keith Urban", + "title": "Never Comin Down", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Michael Ray", + "title": "One That Got Away", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Lee Brice", + "title": "Rumor", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Kenny Chesney Featuring Mindy Smith", + "title": "Better Boat", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tyler Rich", + "title": "The Difference", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Florida Georgia Line", + "title": "Talk You Out Of It", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Chris Lane", + "title": "I Don't Know About You", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Eli Young Band", + "title": "Love Ain't", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins Featuring The Fisk Jubilee Singers", + "title": "Caught Up In The Country", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Granger Smith", + "title": "You're In It", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Chase Rice", + "title": "Eyes On You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Kane Brown", + "title": "Homesick", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Brett Eldredge", + "title": "Love Someone", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Kane Brown", + "title": "Good As You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Travis Denning", + "title": "David Ashley Parker From Powder Springs", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Billy Currington", + "title": "Bring It On Over", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Rascal Flatts", + "title": "Back To Life", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 3, + "missing_count": 35, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2017 - Rock-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Revivalists", + "playlist_title": "Wish I Knew You", + "found_song": { + "artist": "The Revivalists", + "disabled": false, + "favorite": false, + "guid": "844a5802-715e-69b9-2cbe-1508dfe66bba", + "path": "z://MP4\\Karaoke Studio\\Wish I Knew You (In the Style of The Revivalists) Karaoke with Lyrics.mp4", + "title": "Wish I Knew You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Rx (Medicate)", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "227ac9f9-339a-3125-2a0d-00ed6c21ed51", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Theory Of A Deadman - RX (Medicate) (Karaoke).mp4", + "title": "RX (Medicate)" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Whatever It Takes", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "acdf3a83-0de4-9cde-eba8-13ea6f7063a9", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Whatever It Takes (Karaoke Version).mp4", + "title": "Whatever It Takes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Gone Away", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "55b940db-9d51-d87b-f32c-9d3a72ed3c00", + "path": "z://MP4\\King of Karaoke\\Five Finger Death Punch - Gone Away - King of Karaoke.mp4", + "title": "Gone Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alice Merton", + "playlist_title": "No Roots", + "found_song": { + "artist": "Alice Merton", + "disabled": false, + "favorite": false, + "guid": "6a448447-6367-bb35-e5a0-39ae1ff5bd4b", + "path": "z://MP4\\Karaoke Sing Sing\\Alice Merton - No Roots (Karaoke Version).mp4", + "title": "No Roots" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Beck", + "playlist_title": "Up All Night", + "found_song": { + "artist": "Beck", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "2424c4c9-1ace-1f16-ba06-5fc0a8584ca3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF381\\SF381-13 - Beck - Up All Night.mp3", + "title": "Up All Night" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Linkin Park", + "playlist_title": "One More Light", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "ab986ef4-b202-6648-d9f7-d7e893d4a3f2", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - One More Light (Karaoke Version).mp4", + "title": "One More Light" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gary Clark Jr.", + "playlist_title": "Come Together", + "found_song": { + "artist": "Gary Clark Jr. & Junkie XL", + "disabled": false, + "favorite": false, + "guid": "811166b5-3d59-371e-d08e-5c02ea772379", + "path": "z://MP4\\KaraFun Karaoke\\Come Together - Gary Clark Jr. & Junkie XL Karaoke Version KaraFun.mp4", + "title": "Come Together" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Foster The People", + "playlist_title": "Sit Next To Me", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "e91c8241-86d8-bd8c-844c-d9418af1dfb6", + "path": "z://MP4\\Karaoke Studio\\Foster The People - Sit Next To Me (Karaoke Version) - YouTube.mp4", + "title": "Sit Next To Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Hold Me Tight Or Don't", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "06fb4e4d-5b44-4cd8-8ad7-48842d8ba47f", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - HOLD ME TIGHT OR DON'T (Karaoke Version).mp4", + "title": "HOLD ME TIGHT OR DON'T" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Trouble", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38efd75-e122-62bf-fced-371c7e33328b", + "path": "z://MP4\\KaraokeOnVEVO\\Five Finger Death Punch - Trouble.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Bastille", + "playlist_title": "World Gone Mad", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "bcec6da9-e349-a321-2fc0-3af7185d0aa1", + "path": "z://MP4\\Karaoke Sing Sing\\Bastille - World Gone Mad (Karaoke Version).mp4", + "title": "World Gone Mad" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Greta Van Fleet", + "playlist_title": "Highway Tune", + "found_song": { + "artist": "Greta Van Fleet", + "disabled": false, + "favorite": false, + "guid": "fb3d9aba-b7e2-bbb4-95a8-09fb3182f3e1", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Greta Van Fleet - Highway Tune (Karaoke) (Vocal Reduction).mp4", + "title": "Highway Tune" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Weezer", + "playlist_title": "Happy Hour", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "2e184434-1c3c-0ee2-0742-b841cb02a3e3", + "path": "z://MP4\\Karaoke Studio\\Weezer - Happy Hour (Karaoke Version).mp4", + "title": "Happy Hour" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Welshly Arms", + "playlist_title": "Legendary", + "found_song": { + "artist": "Welshly Arms", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f493fd6d-9358-d971-523a-79b4538c9599", + "path": "z://MP4\\KaraokeOnVEVO\\Welshly Arms - Legendary.mp4", + "title": "Legendary" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Seether", + "playlist_title": "Betray And Degrade", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2632adda-dae8-4627-5428-8e5394d160a9", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Betray And Degrade.mp4", + "title": "Betray And Degrade" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Bishop Briggs", + "playlist_title": "Dream", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "e88f608d-cc9d-1184-1ea7-6b3c49acff0e", + "path": "z://MP4\\KtvEntertainment\\Bishop Briggs - Dream Karaoke.mp4", + "title": "Dream" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "U2", + "playlist_title": "American Soul", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "05d7cd10-e56e-e21a-ea70-e89232c8d546", + "path": "z://MP4\\Karaoke Studio\\U2 - American Soul (Karaoke Version).mp4", + "title": "American Soul" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "AC/DC", + "playlist_title": "Thunderstruck", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "0cc0016f-a5dd-f17f-9efe-1247e75375a0", + "path": "z://MP4\\KtvEntertainment\\AC DC - Thunderstruck (Karaoke without Vocal).mp4", + "title": "Thunderstruck" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Angela", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8171f8dc-413c-885b-254a-01caea4348f4", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Lumineers - Gloria.mp4", + "title": "Gloria" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "AC/DC", + "playlist_title": "You Shook Me All Night Long", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "a0fc1a03-6762-6201-a611-b9af4fb97544", + "path": "z://MP4\\KtvEntertainment\\ACDC - You Shook Me All Night Long Karaoke Lyrics.mp4", + "title": "You Shook Me All Night Long" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "AC/DC", + "playlist_title": "Highway To Hell", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "e9a66438-e15b-0e6d-d091-c1e24b10f11a", + "path": "z://MP4\\Sing King Karaoke\\AC DC - Highway To Hell (Karaoke Version).mp4", + "title": "Highway To Hell" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "All That Remains", + "playlist_title": "The Thunder Rolls", + "found_song": { + "artist": "All That Remains", + "disabled": false, + "favorite": false, + "guid": "67d8201d-8247-5ae6-a49b-417975c2c587", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - All That Remains - Thunder Rolls (Karaoke).mp4", + "title": "Thunder Rolls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Dirty Heads", + "playlist_title": "Vacation", + "found_song": { + "artist": "Dirty Heads", + "disabled": false, + "favorite": false, + "guid": "515f867c-9866-e269-4428-2e8199ebc05a", + "path": "z://MP4\\Karaoke Studio\\Dirty Heads - Vacation (Karaoke Version).mp4", + "title": "Vacation" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Thirty Seconds To Mars", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "U2", + "title": "You're The Best Thing About Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chloe Kohanski", + "title": "Call Me", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Foo Fighters", + "title": "The Sky Is A Neighborhood", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Vance Joy", + "title": "Lay It On Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Portugal. The Man", + "title": "Live In The Moment", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Nothing More", + "title": "Go To War", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Royal Blood", + "title": "I Only Lie When I Love You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cold War Kids Featuring Bishop Briggs", + "title": "So Tied Up", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "U2", + "title": "Get Out Of Your Own Way", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Skillet", + "title": "The Resistance", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Noah Mac", + "title": "Ordinary World", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Papa Roach", + "title": "Born For Greatness", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Manchester Orchestra", + "title": "The Gold", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "X Ambassadors", + "title": "Ahead Of Myself", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Fall Out Boy", + "title": "The Last Of The Real Ones", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Score", + "title": "Legend", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Marilyn Manson", + "title": "Kill4me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Two Feet", + "title": "Go Fuck Yourself", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Fozzy", + "title": "Judas", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 7, + "missing_count": 20, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2017 - R-B-Hip-Hop-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Post Malone", + "playlist_title": "Go Flex", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "7b4fd6d5-b21b-75d9-08a9-3213aab2c419", + "path": "z://MP4\\KtvEntertainment\\Post Malone - Go Flex Karaoke Lyrics.mp4", + "title": "Go Flex" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Lil Baby", + "playlist_title": "My Dawg", + "found_song": { + "artist": "Lil Baby", + "disabled": false, + "favorite": false, + "guid": "7a96e336-9795-8ca0-3502-9dccd967ff49", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Baby - My Dawg (Karaoke).mp4", + "title": "My Dawg" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Weeknd", + "playlist_title": "Die For You", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8928b941-78f8-ffb7-7a49-730db50e647b", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Die For You (Karaoke Version).mp4", + "title": "Die For You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Offset & Metro Boomin", + "playlist_title": "Ric Flair Drip", + "found_song": { + "artist": "Offset ft. Metro Boomin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6683f355-dcdc-b50a-10ed-058b2c8c7d01", + "path": "z://MP4\\Sing King Karaoke\\Offset & Metro Boomin - Ric Flair Drip.mp4", + "title": "Ric Flair Drip" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "YoungBoy Never Broke Again", + "playlist_title": "No Smoke", + "found_song": { + "artist": "YoungBoy Never Broke Again", + "disabled": false, + "favorite": false, + "guid": "15e36797-5eb4-739a-9f4f-d400d90c31de", + "path": "z://MP4\\KaraokeOnVEVO\\YoungBoy Never Broke Again - Overdose (Karaoke).mp4", + "title": "Overdose" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Cardi B", + "title": "Bodak Yellow (Money Moves)", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "6ix9ine", + "title": "Gummo", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Migos, Nicki Minaj & Cardi B", + "title": "MotorSport", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Miguel Featuring Travis Scott", + "title": "Sky Walker", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Yo Gotti Featuring Nicki Minaj", + "title": "Rake It Up", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "GoldLink Featuring Brent Faiyaz & Shy Glizzy", + "title": "Crew", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Post Malone", + "title": "Candy Paint", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "N*E*R*D & Rihanna", + "title": "Lemon", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "6ix9ine", + "title": "Kooda", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kodak Black", + "title": "Transportin'", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Lil Uzi Vert", + "title": "Sauce It Up", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eminem Featuring Beyonce", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Miguel Featuring J. Cole & Salaam Remi", + "title": "Come Through And Chill", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Rich The Kid Featuring Kendrick Lamar", + "title": "New Freezer", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jaden Smith", + "title": "Icon", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Wiz Khalifa Featuring Ty Dolla $ign", + "title": "Something New", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Machine Gun Kelly, X Ambassadors & Bebe Rexha", + "title": "Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 3, + "missing_count": 37, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2017 - Pop-Songs", + "total_songs": 40, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Camila Cabello Featuring Young Thug", + "playlist_title": "Havana", + "found_song": { + "artist": "Camila Cabello Featuring Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "266f7a81-7eca-3d06-5e54-10a3a98be6fb", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello Featuring Young Thug - Havana.mp4", + "title": "Havana" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Liam Payne Featuring Quavo", + "playlist_title": "Strip That Down", + "found_song": { + "artist": "Liam Payne Featuring Quavo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d7683f4-1f89-3ea0-cf1f-4fd76668d2f9", + "path": "z://MP4\\Sing King Karaoke\\Liam Payne Featuring Quavo - Strip That Down.mp4", + "title": "Strip That Down" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "MAX Featuring gnash", + "playlist_title": "Lights Down Low", + "found_song": { + "artist": "MAX Featuring gnash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97bb0ab7-f630-cffd-7bc9-d171273cb9a7", + "path": "z://MP4\\Sing King Karaoke\\MAX Featuring gnash - Lights Down Low.mp4", + "title": "Lights Down Low" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Macklemore Featuring Kesha", + "playlist_title": "Good Old Days", + "found_song": { + "artist": "Macklemore Featuring Kesha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4218345-02e7-204b-825c-c08c6493a6ee", + "path": "z://MP4\\VocalStarKaraoke\\Macklemore Featuring Kesha - Good Old Days.mp4", + "title": "Good Old Days" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "WALK THE MOON", + "playlist_title": "One Foot", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "0e5c868a-3415-74ff-bbcb-79f8afecc878", + "path": "z://MP4\\KtvEntertainment\\Walk The Moon - One Foot Karaoke.mp4", + "title": "One Foot" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Blackbear", + "playlist_title": "Do Re Mi", + "found_song": { + "artist": "blackbear", + "disabled": false, + "favorite": false, + "guid": "c0645d87-7866-c9ab-af13-650fa03de5bc", + "path": "z://MP4\\Sing King Karaoke\\blackbear - do re mi (Karaoke Version).mp4", + "title": "do re mi" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lauv", + "playlist_title": "I Like Me Better", + "found_song": { + "artist": "Lauv", + "disabled": false, + "favorite": false, + "guid": "309b922f-f3d5-a8b1-5ed3-708d19a1e707", + "path": "z://MP4\\Sing King Karaoke\\Lauv - I Like Me Better (Karaoke Version).mp4", + "title": "I Like Me Better" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Liam Payne", + "playlist_title": "Bedroom Floor", + "found_song": { + "artist": "Liam Payne", + "disabled": false, + "favorite": false, + "guid": "d4654857-b194-0a80-d598-b032ad7b64c8", + "path": "z://MP4\\Sing King Karaoke\\Liam Payne - Bedroom Floor (Karaoke Version).mp4", + "title": "Bedroom Floor" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Maroon 5 Featuring SZA", + "title": "What Lovers Do", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Sofi Tukker Featuring NERVO, The Knocks & Alisa Ueno", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Zayn Featuring Sia", + "title": "Dusk Till Dawn", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marshmello Featuring Khalid", + "title": "Silence", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Cheat Codes Featuring Fetty Wap & CVBZ", + "title": "Feels Great", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Daya", + "title": "New", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "CNCO & Little Mix", + "title": "Reggaeton Lento (Bailemos)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 3, + "missing_count": 17, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2017 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Camila Cabello Featuring Young Thug", + "playlist_title": "Havana", + "found_song": { + "artist": "Camila Cabello Featuring Young Thug", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "266f7a81-7eca-3d06-5e54-10a3a98be6fb", + "path": "z://MP4\\Sing King Karaoke\\Camila Cabello Featuring Young Thug - Havana.mp4", + "title": "Havana" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lil Pump", + "playlist_title": "Gucci Gang", + "found_song": { + "artist": "Lil Pump", + "disabled": false, + "favorite": false, + "guid": "f47d40ef-4080-745a-6021-9d6e5a55606c", + "path": "z://MP4\\Sing King Karaoke\\Lil Pump - Gucci Gang (Karaoke Version).mp4", + "title": "Gucci Gang" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Thunder", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "27121b29-5236-d124-c480-9dbb5b25f312", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Thunder (Karaoke Version).mp4", + "title": "Thunder" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Smith", + "playlist_title": "Too Good At Goodbyes", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "d6ccd7e6-0e78-07a5-6c2c-8df38bd499c9", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Too Good At Goodbyes (Karaoke Version).mp4", + "title": "Too Good At Goodbyes" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Halsey", + "playlist_title": "Bad At Love", + "found_song": { + "artist": "Halsey", + "disabled": false, + "favorite": false, + "guid": "7957d6a9-4d1f-eb26-dddb-44021a6b9cea", + "path": "z://MP4\\Sing King Karaoke\\Halsey - Bad At Love (Karaoke Version).mp4", + "title": "Bad At Love" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Portugal. The Man", + "playlist_title": "Feel It Still", + "found_song": { + "artist": "Portugal the Man", + "disabled": false, + "favorite": false, + "guid": "64925880-7cd0-f102-e268-ee17989b1748", + "path": "z://MP4\\Sing King Karaoke\\Portugal. The Man - Feel It Still (Karaoke Version).mp4", + "title": "Feel It Still" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Demi Lovato", + "playlist_title": "Sorry Not Sorry", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "d8b13917-d246-9292-d873-e7ea09bb40b7", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Sorry Not Sorry (Karaoke Version).mp4", + "title": "Sorry Not Sorry" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dua Lipa", + "playlist_title": "New Rules", + "found_song": { + "artist": "Dua Lipa", + "disabled": false, + "favorite": false, + "guid": "219e493e-2c37-1fe0-9a10-86bbbc71fac8", + "path": "z://MP4\\Sing King Karaoke\\Dua Lipa - New Rules (Karaoke Version).mp4", + "title": "New Rules" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez X Marshmello", + "playlist_title": "Wolves", + "found_song": { + "artist": "Selena Gomez X Marshmello", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9409a20b-c7d0-f879-f8e6-13fb8102f36d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez X Marshmello - Wolves.mp4", + "title": "Wolves" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "NF", + "playlist_title": "Let You Down", + "found_song": { + "artist": "NF", + "disabled": false, + "favorite": false, + "guid": "f4326188-b1d2-b31c-71f3-f90891444912", + "path": "z://MP4\\Sing King Karaoke\\NF - Let You Down (Karaoke Version).mp4", + "title": "Let You Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Post Malone", + "playlist_title": "I Fall Apart", + "found_song": { + "artist": "Post Malone", + "disabled": false, + "favorite": false, + "guid": "a7c48160-5c23-761b-916a-c9d415e7fdfd", + "path": "z://MP4\\Sing King Karaoke\\Post Malone - I Fall Apart (Karaoke Version).mp4", + "title": "I Fall Apart" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "21 Savage", + "playlist_title": "Bank Account", + "found_song": { + "artist": "21 Savage", + "disabled": false, + "favorite": false, + "guid": "340d5814-f99a-faf1-51c2-ab4fa14f3385", + "path": "z://MP4\\Sing King Karaoke\\21 Savage - Bank Account (Karaoke Version).mp4", + "title": "Bank Account" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Shape Of You", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "e65e5be8-f28d-7c1a-11f3-3a6408d1d09a", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Shape Of You (Karaoke Version).mp4", + "title": "Shape Of You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Charlie Puth", + "playlist_title": "How Long", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "f0645a89-2468-0c37-2a41-11aa7e9bd638", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - How Long (Karaoke Version).mp4", + "title": "How Long" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Khalid", + "playlist_title": "Young Dumb & Broke", + "found_song": { + "artist": "Khalid", + "disabled": false, + "favorite": false, + "guid": "1f3c3c7b-dda4-7482-32bb-060d21d18606", + "path": "z://MP4\\Sing King Karaoke\\Khalid - Young Dumb & Broke (Karaoke Version).mp4", + "title": "Young Dumb & Broke" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Believer", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "15f16cfb-e590-8967-1094-60e3a3496cf1", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Believer (Karaoke Version).mp4", + "title": "Believer" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "French Montana Featuring Swae Lee", + "playlist_title": "Unforgettable", + "found_song": { + "artist": "French Montana Featuring Swae Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "604df22c-a3c5-f2fb-d607-c1f99d7a1fd1", + "path": "z://MP4\\Sing King Karaoke\\French Montana Featuring Swae Lee - Unforgettable.mp4", + "title": "Unforgettable" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Charlie Puth", + "playlist_title": "Attention", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "5be8908f-4826-0e3d-5e51-ea0b382c9a48", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - Attention (Karaoke Version).mp4", + "title": "Attention" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "SZA", + "playlist_title": "The Weekend", + "found_song": { + "artist": "SZA", + "disabled": false, + "favorite": false, + "guid": "e69e3101-7615-84aa-2a43-c7f524016ed6", + "path": "z://MP4\\Sing King Karaoke\\SZA - The Weekend (Karaoke Version).mp4", + "title": "The Weekend" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Bruno Mars", + "playlist_title": "That's What I Like", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "549fedd8-513f-eade-f0a0-1b13bb9485d5", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - That s What I Like (Karaoke Version).mp4", + "title": "That s What I Like" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Andy Williams", + "playlist_title": "It's The Most Wonderful Time Of The Year", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "guid": "fd742737-1ec9-15c2-9e95-57ef8e7a8206", + "path": "z://MP4\\Sing King Karaoke\\Andy Williams - It s The Most Wonderful Time Of The Year (Karaoke Version).mp4", + "title": "It s The Most Wonderful Time Of The Year" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Shawn Mendes", + "playlist_title": "There's Nothing Holdin' Me Back", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43731608-cb85-bd56-84c6-d4dc4501303f", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - There's Nothing Holdin' Me Back.mp4", + "title": "There's Nothing Holdin' Me Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Burl Ives", + "playlist_title": "A Holly Jolly Christmas", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "877f6ede-c5f3-fa3e-efc1-543445356b11", + "path": "z://MP4\\Sing King Karaoke\\Burl Ives - A Holly Jolly Christmas (Karaoke Version).mp4", + "title": "A Holly Jolly Christmas" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Humble.", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3069327c-f9a2-0c55-5c6f-ff03dfd472c5", + "path": "z://MP4\\Sing King Karaoke\\Kendrick Lamar - HUMBLE. (Karaoke Version).mp4", + "title": "HUMBLE." + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "P!nk", + "playlist_title": "What About Us", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "68f30162-418d-6bc2-7322-fc44d61228a6", + "path": "z://MP4\\Sing King Karaoke\\P!nk - What About Us (Karaoke Version).mp4", + "title": "What About Us" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Demi Lovato", + "playlist_title": "Tell Me You Love Me", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "ac7bc2e0-3b3f-a1b0-d288-88a365eac36d", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Tell Me You Love Me (Karaoke Version).mp4", + "title": "Tell Me You Love Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Macklemore Featuring Kesha", + "playlist_title": "Good Old Days", + "found_song": { + "artist": "Macklemore Featuring Kesha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4218345-02e7-204b-825c-c08c6493a6ee", + "path": "z://MP4\\VocalStarKaraoke\\Macklemore Featuring Kesha - Good Old Days.mp4", + "title": "Good Old Days" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "MAX Featuring gnash", + "playlist_title": "Lights Down Low", + "found_song": { + "artist": "MAX Featuring gnash", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97bb0ab7-f630-cffd-7bc9-d171273cb9a7", + "path": "z://MP4\\Sing King Karaoke\\MAX Featuring gnash - Lights Down Low.mp4", + "title": "Lights Down Low" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Love So Soft", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "eeedbbff-3f9b-ea0f-e64f-a85a0d13ca6c", + "path": "z://MP4\\Karaoke Studio\\Kelly Clarkson - Love So Soft (Karaoke Version).mp4", + "title": "Love So Soft" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "XXXTentacion", + "playlist_title": "Jocelyn Flores", + "found_song": { + "artist": "XXXTENTACION", + "disabled": false, + "favorite": false, + "guid": "3f599413-bdeb-c758-02dd-f8d5e71b08de", + "path": "z://MP4\\Sing King Karaoke\\XXXTENTACION - Jocelyn Flores (Karaoke Version).mp4", + "title": "Jocelyn Flores" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Niall Horan", + "playlist_title": "Too Much To Ask", + "found_song": { + "artist": "Niall Horan", + "disabled": false, + "favorite": false, + "guid": "9ced32c6-4cc0-2537-fd8c-347f615fdc6d", + "path": "z://MP4\\Sing King Karaoke\\Niall Horan - Too Much To Ask (Karaoke Version).mp4", + "title": "Too Much To Ask" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 19, + "playlist_artist": "Logic Featuring Alessia Cara & Khalid", + "playlist_title": "1-800-273-8255", + "found_song": { + "artist": "Logic Featuring Alessia Cara & Khalid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d269ff17-f1a3-a644-b8e7-587036816c65", + "path": "z://MP4\\Sing King Karaoke\\Logic Featuring Alessia Cara & Khalid - 1-800-273-8255.mp4", + "title": "1-800-273-8255" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "playlist_title": "Despacito", + "found_song": { + "artist": "Luis Fonsi & Daddy Yankee Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b8df8eb-a0f7-ec45-81fe-a02159100ec8", + "path": "z://MP4\\Sing King Karaoke\\Luis Fonsi & Daddy Yankee Featuring Justin Bieber - Despacito.mp4", + "title": "Despacito" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Taylor Swift", + "playlist_title": "...Ready For It?", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28f01172-a569-9d71-f197-75381809e561", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ready For It.mp4", + "title": "...Ready For It?" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Offset & Metro Boomin", + "playlist_title": "Ric Flair Drip", + "found_song": { + "artist": "Offset ft. Metro Boomin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6683f355-dcdc-b50a-10ed-058b2c8c7d01", + "path": "z://MP4\\Sing King Karaoke\\Offset & Metro Boomin - Ric Flair Drip.mp4", + "title": "Ric Flair Drip" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Taylor Swift", + "playlist_title": "Look What You Made Me Do", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9f8a1891-dbf1-0651-acb3-5a9292166ba8", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Look What You Made Me Do (Karaoke Version) - YouTube.mp4", + "title": "Look What You Made Me Do" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Ed Sheeran Duet With Beyonce", + "title": "Perfect", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Post Malone Featuring 21 Savage", + "title": "Rockstar", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "G-Eazy Featuring A$AP Rocky & Cardi B", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Cardi B", + "title": "Bodak Yellow (Money Moves)", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Maroon 5 Featuring SZA", + "title": "What Lovers Do", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "6ix9ine", + "title": "Gummo", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Gucci Mane Featuring Migos", + "title": "I Get The Bag", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Migos, Nicki Minaj & Cardi B", + "title": "MotorSport", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "J Balvin & Willy William Featuring Beyonce", + "title": "Mi Gente", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "G-Eazy & Halsey", + "title": "Him & I", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Kendrick Lamar Featuring Zacari", + "title": "Love.", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Uzi Vert Featuring Nicki Minaj", + "title": "The Way Life Goes", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marshmello Featuring Khalid", + "title": "Silence", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Miguel Featuring Travis Scott", + "title": "Sky Walker", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Taylor Swift Featuring Ed Sheeran & Future", + "title": "End Game", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "A$AP Ferg", + "title": "Plain Jane", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "YBN Nahmir", + "title": "Rubbin Off The Paint", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Post Malone Featuring Quavo", + "title": "Congratulations", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Brown Featuring Yo Gotti, A Boogie Wit da Hoodie & Kodak Black", + "title": "Pills And Automobiles", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Hailee Steinfeld & Alesso Featuring Florida Georgia Line & Watt", + "title": "Let Me Go", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kodak Black Featuring XXXTENTACION", + "title": "Roll In Peace", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kodak Black Featuring Lil Wayne", + "title": "Codeine Dreaming", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Post Malone", + "title": "Candy Paint", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "N*E*R*D & Rihanna", + "title": "Lemon", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "6ix9ine", + "title": "Kooda", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lil Xan", + "title": "Betrayed", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Thomas Rhett", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "BTS Featuring Desiigner", + "title": "MIC Drop", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Famous Dex Featuring A$AP Rocky", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tay-K", + "title": "The Race", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Luis Fonsi & Demi Lovato", + "title": "Echame La Culpa", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "NAV Featuring Lil Uzi Vert", + "title": "Wanted You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Zayn Featuring Sia", + "title": "Dusk Till Dawn", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "21 Savage, Offset & Metro Boomin Featuring Travis Scott", + "title": "Ghostface Killers", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "XXXTentacion Featuring Trippie Redd", + "title": "F**k Love", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Becky G Featuring Bad Bunny", + "title": "Mayores", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Farruko, Nicki Minaj, Bad Bunny, 21 Savage & Rvssian", + "title": "Krippy Kush", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Tank", + "title": "When We", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kodak Black", + "title": "Transportin'", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Yo Gotti", + "title": "Juice", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Romeo Santos Featuring Nicky Jam & Daddy Yankee", + "title": "Bella y Sensual", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Calvin Harris Featuring Kehlani & Lil Yachty", + "title": "Faking It", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Natti Natasha x Ozuna", + "title": "Criminal", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lil Uzi Vert", + "title": "Sauce It Up", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 6, + "missing_count": 45, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2017 - Country-Songs", + "total_songs": 50, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LANCO", + "playlist_title": "Greatest Love Story", + "found_song": { + "artist": "LANCO", + "disabled": false, + "favorite": false, + "guid": "7072dfaa-5f54-5e5b-6511-c7ca344015df", + "path": "z://MP4\\Karaoke Studio\\Greatest Love Story (In the Style of LANCO) Karaoke with lyrics.mp4", + "title": "Greatest Love Story" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kane Brown Featuring Lauren Alaina", + "playlist_title": "What Ifs", + "found_song": { + "artist": "Kane Brown Featuring Lauren Alaina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "baf2d056-5745-fdd5-d04a-aec5934e000b", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown Featuring Lauren Alaina - What Ifs.mp4", + "title": "What Ifs" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Luke Combs", + "playlist_title": "When It Rains It Pours", + "found_song": { + "artist": "Luke Combs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99a17419-b765-581f-4efb-2e76a98b2702", + "path": "z://MP4\\Sing King Karaoke\\Luke Combs - When It Rains It Pours (Karaoke Version).mp4", + "title": "When It Rains It Pours" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Hunt", + "playlist_title": "Body Like A Back Road", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "aafc36bd-edad-52e5-30dd-bdd993b0102a", + "path": "z://MP4\\Sing King Karaoke\\Sam Hunt - Body Like A Back Road (Karaoke Version).mp4", + "title": "Body Like A Back Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Luke Bryan", + "playlist_title": "Light It Up", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "1e953953-f454-e34e-a0ce-a5b322fb46f4", + "path": "z://MP4\\Stingray Karaoke\\Light It Up Luke Bryan Karaoke with Lyrics.mp4", + "title": "Light It Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blake Shelton", + "playlist_title": "I'll Name The Dogs", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "09a944b1-95b3-e9cf-fbfe-f9a8f8595440", + "path": "z://MP4\\Karaoke Studio\\Blake Shelton - I'll Name The Dogs (Karaoke Version).mp4", + "title": "I'll Name The Dogs" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brett Young", + "playlist_title": "Like I Loved You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "8e1d75ec-5257-0c3d-da82-7823a0bf5858", + "path": "z://MP4\\Karaoke Studio\\Like I Loved You (In the Style of Brett Young) Karaoke with Lyrics.mp4", + "title": "Like I Loved You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Eric Church", + "playlist_title": "Round Here Buzz", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "eec8aaa5-6777-b8fa-ead7-0ba932e2b554", + "path": "z://MP4\\Karaoke Studio\\Round Here Buzz (In the Style of Eric Church) Karaoke with Lyrics.mp4", + "title": "Round Here Buzz" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Garth Brooks", + "playlist_title": "Ask Me How I Know", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "984e3845-0d1a-cfc8-d459-4eb824cca111", + "path": "z://MP4\\Karaoke Studio\\Garth Brooks - Ask Me How I Know (Karaoke Version).mp4", + "title": "Ask Me How I Know" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Chris Young", + "playlist_title": "Losing Sleep", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "42d6b53e-6b66-1bc9-8d4a-d64519e79d7a", + "path": "z://MP4\\Karaoke Studio\\Chris Young - Losing Sleep (Karaoke Version).mp4", + "title": "Losing Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maren Morris", + "playlist_title": "I Could Use A Love Song", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "5ebb5bfe-f8be-2a3b-c232-84ed27d4ae35", + "path": "z://MP4\\KtvEntertainment\\Maren Morris - I Could Use a Love Song Karaoke Lyrics.mp4", + "title": "I Could Use a Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Walker Hayes", + "playlist_title": "You Broke Up With Me", + "found_song": { + "artist": "Walker Hayes", + "disabled": false, + "favorite": false, + "guid": "4e69684a-908e-beb0-22b8-98d590f4991a", + "path": "z://MP4\\Karaoke Studio\\Walker Hayes - You Broke Up With Me (Karaoke Version).mp4", + "title": "You Broke Up With Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Chris Janson", + "playlist_title": "Fix A Drink", + "found_song": { + "artist": "Chris Janson", + "disabled": false, + "favorite": false, + "guid": "9a77ae8b-425b-66e3-9901-328c2f61bd60", + "path": "z://MP4\\KtvEntertainment\\Chris Janson - Fix a Drink Karaoke.mp4", + "title": "Fix a Drink" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Old Dominion", + "playlist_title": "Written In The Sand", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "26581144-cd10-d3d4-be38-651dca24cb8a", + "path": "z://MP4\\Karaoke Studio\\Old Dominion - Written In The Sand (Karaoke Version).mp4", + "title": "Written In The Sand" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Devin Dawson", + "playlist_title": "All On Me", + "found_song": { + "artist": "Devin Dawson", + "disabled": false, + "favorite": false, + "guid": "e9208348-a1ee-9d9d-8fa6-1ef5d9118a9d", + "path": "z://MP4\\KtvEntertainment\\Devin Dawson - All On Me Karaoke.mp4", + "title": "All On Me" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Scotty McCreery", + "playlist_title": "Five More Minutes", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "c537baca-5bf2-be2d-c49d-ea18f1754885", + "path": "z://MP4\\KtvEntertainment\\Scotty McCreery - Five More Minutes Karaoke.mp4", + "title": "Five More Minutes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Broken Halos", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "guid": "aaddffc9-3ddf-3abe-d447-d93a5e7b37bf", + "path": "z://MP4\\KtvEntertainment\\Chris Stapleton - Broken Halos Karaoke Lyrics (2).mp4", + "title": "Broken Halos" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Urban", + "playlist_title": "Female", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "28ad1988-ad9a-e768-1d98-e3355a050669", + "path": "z://MP4\\Karaoke Studio\\Keith Urban - Female (Karaoke Version).mp4", + "title": "Female" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "01fa4c78-9955-0acb-ca31-728b39580a4b", + "path": "z://MP4\\Karaoke Studio\\Thomas Rhett - Marry Me (Karaoke Version).mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aaron Watson", + "playlist_title": "Outta Style", + "found_song": { + "artist": "Aaron Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e20eac4a-479e-3a07-3934-d48f478d3ded", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Watson - Outta Style.mp4", + "title": "Outta Style" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Kane Brown", + "playlist_title": "Heaven", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "8cf650fe-e4c0-b840-1f42-6e31bad6c49a", + "path": "z://MP4\\Sing King Karaoke\\Kane Brown - Heaven (Karaoke Version).mp4", + "title": "Heaven" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Brett Eldredge", + "playlist_title": "The Long Way", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "2692b3e8-3f0f-1382-cae5-ac3443b7d220", + "path": "z://MP4\\Karaoke Studio\\Brett Eldredge - The Long Way (Karaoke Version).mp4", + "title": "The Long Way" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Granger Smith", + "playlist_title": "Happens Like That", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "c9943190-809b-d585-b512-187b0eb2ce5c", + "path": "z://MP4\\Karaoke Studio\\Granger Smith - Happens Like That (Karaoke with Lyrics).mp4", + "title": "Happens Like That" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lee Brice", + "playlist_title": "Boy", + "found_song": { + "artist": "Lee Brice", + "disabled": false, + "favorite": false, + "guid": "7b09a304-69ec-433c-1980-ab99594554ba", + "path": "z://MP4\\Karaoke Studio\\Lee Brice - Boy (Karaoke Version).mp4", + "title": "Boy" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Smooth", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "c7cbfd68-b99d-773e-607f-441d5e1c776e", + "path": "z://MP4\\Karaoke Studio\\Florida Georgia Line - Smooth (Karaoke Version).mp4", + "title": "Smooth" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kane Brown", + "playlist_title": "Found You", + "found_song": { + "artist": "Kane Brown", + "disabled": false, + "favorite": false, + "guid": "ab8632aa-598f-6e49-3526-65967316d37e", + "path": "z://MP4\\Karaoke Studio\\Kane Brown - Found You (Karaoke Version).mp4", + "title": "Found You" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Michael Ray", + "playlist_title": "Get To You", + "found_song": { + "artist": "Michael Ray", + "disabled": false, + "favorite": false, + "guid": "a6a35c8a-6262-05a1-847b-20db9147ed68", + "path": "z://MP4\\Karaoke Studio\\Michael Ray - Get To You (Karaoke with Lyrics).mp4", + "title": "Get To You" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darius Rucker", + "playlist_title": "For The First Time", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "guid": "86a3b590-7cd7-7c4b-b5be-c57186a82527", + "path": "z://MP4\\Karaoke Studio\\Darius Rucker - For The First Time (Karaoke with Lyrics).mp4", + "title": "For The First Time" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Little Big Town", + "playlist_title": "When Someone Stops Loving You", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "a111ab69-3582-2cf7-27f7-0845c599726c", + "path": "z://MP4\\Stingray Karaoke\\When Someone Stops Loving You Little Big Town Karaoke with Lyrics.mp4", + "title": "When Someone Stops Loving You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Russell Dickerson", + "playlist_title": "Yours", + "found_song": { + "artist": "Russel Dickerson", + "disabled": false, + "favorite": false, + "guid": "13a12fa6-62da-bf6d-7909-abc8dab23d9e", + "path": "z://MP4\\Karaoke Studio\\Russel Dickerson - Yours (Karaoke Version).mp4", + "title": "Yours" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Tin Man", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "43f75206-e8fd-748b-ce17-50855894e358", + "path": "z://MP4\\King of Karaoke\\Miranda Lambert - Tin Man - King of Karaoke.mp4", + "title": "Tin Man" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Midland", + "playlist_title": "Make A Little", + "found_song": { + "artist": "Midland", + "disabled": false, + "favorite": false, + "guid": "1e9730db-4340-45ea-7142-da2eb5838aa1", + "path": "z://MP4\\KtvEntertainment\\Midland - Make a Little Karaoke.mp4", + "title": "Make a Little" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Brantley Gilbert", + "playlist_title": "Ones That Like Me", + "found_song": { + "artist": "Brantley Gilbert", + "disabled": false, + "favorite": false, + "guid": "dc0f74fb-711c-dfe7-5735-d58602ed3d8b", + "path": "z://MP4\\Karaoke Studio\\Brantley Gilbert - The Ones That Like Me (Karaoke with Lyrics).mp4", + "title": "The Ones That Like Me" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Bebe Rexha & Florida Georgia Line", + "title": "Meant To Be", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Thomas Rhett", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Dustin Lynch", + "title": "Small Town Boy", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Kelsea Ballerini", + "title": "Legends", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Easton Corbin", + "title": "A Girl Like You", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Tim McGraw & Faith Hill", + "title": "The Rest Of Our Life", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jordan Davis", + "title": "Singles You Up", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "High Valley", + "title": "She's With Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Big & Rich", + "title": "California", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Chris Lane Featuring Tori Kelly", + "title": "Take Back Home Girl", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Morgan Wallen Featuring Florida Georgia Line", + "title": "Up Down", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Cole Swindell", + "title": "Stay Downtown", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Chase Rice", + "title": "Three Chords & The Truth", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "David Lee Murphy & Kenny Chesney", + "title": "Everything's Gonna Be Alright", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Dylan Scott", + "title": "Hooked", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Red Marlow", + "title": "The Dance", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Taylor Swift", + "title": "New Year's Day", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 29, + "fuzzy_match_count": 4, + "missing_count": 17, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2016 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Waste A Moment", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "cad209d7-37d8-4857-a24a-17a979ae70cb", + "path": "z://MP4\\Karaoke Sing Sing\\Kings Of Leon - Waste A Moment (Karaoke Version).mp4", + "title": "Waste A Moment" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Lumineers", + "playlist_title": "Ophelia", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "4d35e840-a495-5597-ca00-f309fff48fbd", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ophelia (Karaoke Version).mp4", + "title": "Ophelia" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Fitz And The Tantrums", + "playlist_title": "HandClap", + "found_song": { + "artist": "Fitz And The Tantrums", + "disabled": false, + "favorite": false, + "guid": "352d05f7-d8c0-034f-f76a-dbeb0c36fde6", + "path": "z://MP4\\King of Karaoke\\Fitz And The Tantrums - HandClap - King of Karaoke.mp4", + "title": "HandClap" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "twenty one pilots", + "playlist_title": "Cancer", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "8d835e62-43e1-dc8e-9434-df9f369b9e91", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Cancer (Karaoke Version).mp4", + "title": "Cancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bastille", + "playlist_title": "Good Grief", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "a16cf0b7-9f7c-4df0-58f4-b9c352ce2020", + "path": "z://MP4\\King of Karaoke\\Bastille - Good Grief - King of Karaoke.mp4", + "title": "Good Grief" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kaleo", + "playlist_title": "Way Down We Go", + "found_song": { + "artist": "Kaleo", + "disabled": false, + "favorite": false, + "guid": "5733f138-96ae-59ea-402e-da2fd17ea925", + "path": "z://MP4\\KtvEntertainment\\Kaleo - Way Down We Go Karaoke Lyrics.mp4", + "title": "Way Down We Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bishop Briggs", + "playlist_title": "River", + "found_song": { + "artist": "Bishop Briggs", + "disabled": false, + "favorite": false, + "guid": "d056b86a-af1c-b358-8b7a-40cea9ba399b", + "path": "z://MP4\\King of Karaoke\\Bishop Briggs - River - King of Karaoke.mp4", + "title": "River" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blink-182", + "playlist_title": "Bored To Death", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "ff7d3959-134d-f8e8-7121-5c367a0e13c3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Blink 182 - Bored to Death - SF364 - 17.mp3", + "title": "Bored to Death" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Dark Necessities", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "b7d8c55a-0212-9786-64e1-3fc8883429a0", + "path": "z://MP4\\KtvEntertainment\\Red Hot Chili Peppers - Dark Necessities Karaoke Lyrics.mp4", + "title": "Dark Necessities" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Green Day", + "playlist_title": "Bang Bang", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "93012853-2ab1-af5d-d1b6-b5998749f1d9", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Bang Bang (Karaoke Version).mp4", + "title": "Bang Bang" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Trouble", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "guid": "da3139ba-c284-df17-5770-49c42a64e04b", + "path": "z://MP4\\KtvEntertainment\\Cage The Elephant - Trouble Karaoke Lyrics.mp4", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Green Day", + "playlist_title": "Revolution Radio", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf8b1d0f-5805-89f1-2548-bd13abc7e5a1", + "path": "z://MP4\\CCKaraoke\\Green Day - Revolution Radio.mp4", + "title": "Revolution Radio" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Head And The Heart", + "title": "All We Ever Knew", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Panic! At The Disco", + "title": "Bohemian Rhapsody", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Metallica", + "title": "Hardwired", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Beck", + "title": "Wow", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Skillet", + "title": "Feel Invincible", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Fray", + "title": "Singing Low", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Phantogram", + "title": "You Don't Get Me High Anymore", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2016 - Hot R & B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "D.R.A.M. Featuring Lil Yachty", + "playlist_title": "Broccoli", + "found_song": { + "artist": "D.R.A.M. Featuring Lil Yachty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa9e3d9b-ce3c-9529-0250-b8add07f3e29", + "path": "z://MP4\\Sing King Karaoke\\D.R.A.M. Featuring Lil Yachty - Broccoli.mp4", + "title": "Broccoli" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "For Free", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Aminé", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Usher Featuring Young Thug", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Post Malone Featuring Justin Bieber", + "title": "Deja Vu", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 14, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2016 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Chainsmokers Featuring Halsey", + "playlist_title": "Closer", + "found_song": { + "artist": "The Chainsmokers Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f356cc1e-7e81-12cc-d369-747aa42b0412", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Halsey - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Calvin Harris Featuring Rihanna", + "playlist_title": "This Is What You Came For", + "found_song": { + "artist": "Calvin Harris Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2f5acf0-bc6e-73f3-0f93-cbc184be0915", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris Featuring Rihanna - This Is What You Came For.mp4", + "title": "This Is What You Came For" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Charlie Puth Featuring Selena Gomez", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Charlie Puth Featuring Selena Gomez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48a2880c-0d7f-13f2-97be-75ca5f35b324", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Selena Gomez - We Dont Talk Anymore.mp4", + "title": "We Don't Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "DJ Snake Featuring Justin Bieber", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "DJ Snake Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec3c8e50-91f7-7c53-391a-e6a3ba54d085", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake Featuring Justin Bieber - Let Me Love You.mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "gnash Featuring Olivia O'Brien", + "playlist_title": "I Hate U I Love U", + "found_song": { + "artist": "gnash Featuring Olivia O'Brien", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "227b53d5-4176-1d56-ed1c-ebcd0a7ca392", + "path": "z://MP4\\KaraokeOnVEVO\\gnash Featuring Olivia O'Brien - I Hate U I Love U.mp4", + "title": "I Hate U I Love U" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Major Lazer Featuring Justin Bieber & MO", + "title": "Cold Water", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Sia Featuring Sean Paul", + "title": "Cheap Thrills", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kiiara", + "title": "Gold", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Daya", + "title": "Sit Still, Look Pretty", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2016 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Dierks Bentley Featuring Elle King", + "playlist_title": "Different For Girls", + "found_song": { + "artist": "Dierks Bentley Featuring Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cac1bb8e-54e3-4552-865b-9014ac8559d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Elle King - Different For Girls.mp4", + "title": "Different For Girls" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Florida Georgia Line Featuring Tim McGraw", + "playlist_title": "May We All", + "found_song": { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84803f89-e341-6a16-038b-96d21682c081", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line Featuring Tim McGraw - May We All.mp4", + "title": "May We All" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jason Aldean", + "playlist_title": "Lights Come On", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "c4940a37-bf90-38da-3006-f590932ca21b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Lights Come On Karaoke Lyrics.mp4", + "title": "Lights Come On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Church Bells", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2fb127d9-b8ab-384a-e9d1-817210938d39", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Church Bells Karaoke Lyrics.mp4", + "title": "Church Bells" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Old Dominion", + "playlist_title": "Song For Another Time", + "found_song": { + "artist": "Old Dominion", + "disabled": false, + "favorite": false, + "guid": "4f23529f-5e04-5b37-a3e0-c59435612402", + "path": "z://MP4\\KtvEntertainment\\Old Dominion - Song for Another Time Karaoke Lyrics.mp4", + "title": "Song for Another Time" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Brett Eldredge", + "playlist_title": "Wanna Be That Song", + "found_song": { + "artist": "Brett Eldredge", + "disabled": false, + "favorite": false, + "guid": "198e8564-3efa-a31a-8f36-a29d06b2fcdc", + "path": "z://MP4\\King of Karaoke\\Brett Eldredge - Wanna Be That Song - King of Karaoke.mp4", + "title": "Wanna Be That Song" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tim McGraw", + "playlist_title": "How I'll Always Be", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "d869240f-5d69-1914-1b16-4ce620577f16", + "path": "z://MP4\\KtvEntertainment\\Tim McGraw - How I'll Always Be Karaoke Lyrics.mp4", + "title": "How I'll Always Be" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Maren Morris", + "playlist_title": "80s Mercedes", + "found_song": { + "artist": "Maren Morris", + "disabled": false, + "favorite": false, + "guid": "36c6ad47-709e-8c16-fb6c-ea7f6c6bbbcd", + "path": "z://MP4\\King of Karaoke\\Maren Morris - 80's Mercedes - King of Karaoke.mp4", + "title": "80's Mercedes" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Castaway", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc147dd9-db98-e9d7-ec55-e224b034d4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Castaway.mp4", + "title": "Castaway" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Miranda Lambert", + "title": "Vice", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jason Aldean", + "title": "A Little More Summertime", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 3, + "missing_count": 5, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2016 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Chainsmokers Featuring Halsey", + "playlist_title": "Closer", + "found_song": { + "artist": "The Chainsmokers Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f356cc1e-7e81-12cc-d369-747aa42b0412", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Halsey - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Heathens", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "c8c5a7dc-9a92-eaee-1a2b-80f6368c8aa5", + "path": "z://MP4\\KtvEntertainment\\Twenty One Pilots - Heathens Karaoke Lyrics.mp4", + "title": "Heathens" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Chainsmokers Featuring Daya", + "playlist_title": "Don't Let Me Down", + "found_song": { + "artist": "The Chainsmokers Featuring Daya", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36eeb7f0-b717-d583-3b1d-5e62f6b60a9d", + "path": "z://MP4\\Sing King Karaoke\\The Chainsmokers Featuring Daya - Dont Let Me Down.mp4", + "title": "Don't Let Me Down" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "DJ Snake Featuring Justin Bieber", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "DJ Snake Featuring Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec3c8e50-91f7-7c53-391a-e6a3ba54d085", + "path": "z://MP4\\Sing King Karaoke\\DJ Snake Featuring Justin Bieber - Let Me Love You.mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Calvin Harris Featuring Rihanna", + "playlist_title": "This Is What You Came For", + "found_song": { + "artist": "Calvin Harris Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2f5acf0-bc6e-73f3-0f93-cbc184be0915", + "path": "z://MP4\\Sing King Karaoke\\Calvin Harris Featuring Rihanna - This Is What You Came For.mp4", + "title": "This Is What You Came For" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Treat You Better", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "86959351-08cc-b8f5-3e7a-dfc9ac3fb6f8", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Treat You Better (Karaoke Version).mp4", + "title": "Treat You Better" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "twenty one pilots", + "playlist_title": "Ride", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fb02418-da7d-994b-2575-0f07dea36751", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Send My Love (To Your New Lover)", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "ffe00eb0-3919-435f-493e-b0364fe732e1", + "path": "z://MP4\\Stingray Karaoke\\Send My Love (To Your New Lover) Adele Karaoke with Lyrics.mp4", + "title": "Send My Love (To Your New Lover)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Rihanna", + "playlist_title": "Needed Me", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "7a77b7fe-555e-8eae-59ec-19642b9085fc", + "path": "z://MP4\\Karaoke Sing Sing\\Rihanna - Needed Me (Karaoke Version).mp4", + "title": "Needed Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "D.R.A.M. Featuring Lil Yachty", + "playlist_title": "Broccoli", + "found_song": { + "artist": "D.R.A.M. Featuring Lil Yachty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa9e3d9b-ce3c-9529-0250-b8add07f3e29", + "path": "z://MP4\\Sing King Karaoke\\D.R.A.M. Featuring Lil Yachty - Broccoli.mp4", + "title": "Broccoli" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Charlie Puth Featuring Selena Gomez", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Charlie Puth Featuring Selena Gomez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48a2880c-0d7f-13f2-97be-75ca5f35b324", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth Featuring Selena Gomez - We Dont Talk Anymore.mp4", + "title": "We Don't Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Gaga", + "playlist_title": "Perfect Illusion", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "9a283ade-da99-10cf-4ce6-0ab3d2e741dc", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Perfect Illusion (Karaoke Version).mp4", + "title": "Perfect Illusion" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Can't Stop The Feeling!", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": true, + "guid": "dafe7b97-b6e3-c9a8-9912-306e81985faa", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - CAN T STOP THE FEELING (Karaoke Version).mp4", + "title": "Can't Stop The Feeling" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Tory Lanez", + "playlist_title": "Luv", + "found_song": { + "artist": "Tory Lanez", + "disabled": false, + "favorite": false, + "guid": "156c7e7b-ed3e-27a8-77bc-3aba8126b4dc", + "path": "z://MP4\\Sing King Karaoke\\Tory Lanez - Luv (Karaoke Version).mp4", + "title": "Luv" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "gnash Featuring Olivia O'Brien", + "playlist_title": "I Hate U I Love U", + "found_song": { + "artist": "gnash Featuring Olivia O'Brien", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "227b53d5-4176-1d56-ed1c-ebcd0a7ca392", + "path": "z://MP4\\KaraokeOnVEVO\\gnash Featuring Olivia O'Brien - I Hate U I Love U.mp4", + "title": "I Hate U I Love U" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Desiigner", + "playlist_title": "Panda", + "found_song": { + "artist": "Desiigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ac156a9-5028-04db-cc75-2e10384eddc6", + "path": "z://MP4\\Sing King Karaoke\\Desiigner - Panda.mp4", + "title": "Panda" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "DJ Khaled Featuring Drake", + "playlist_title": "For Free", + "found_song": { + "artist": "DJ Khaled Featuring Drake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c4b7-ff0a-c9b5-6322-bfc7fc3736a3", + "path": "z://MP4\\Sing King Karaoke\\DJ Khaled Featuring Drake - For Free.mp4", + "title": "For Free" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Flume Featuring Kai", + "playlist_title": "Never Be Like You", + "found_song": { + "artist": "Flume Featuring Kai", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7451b951-591e-7c03-ce60-87c8783266d6", + "path": "z://MP4\\Sing King Karaoke\\Flume Featuring Kai - Never Be Like You.mp4", + "title": "Never Be Like You" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Drake", + "playlist_title": "Controlla", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "7fc6fdda-f674-3f84-6a61-a6c77ecbeb48", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - Controlla (Karaoke Version) (2).mp4", + "title": "Controlla" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Kungs vs Cookin' On 3 Burners", + "playlist_title": "This Girl", + "found_song": { + "artist": "Kungs vs Cookin on 3 Burners", + "disabled": false, + "favorite": false, + "guid": "2c270ad9-0f7e-b06b-66cc-8fe16c1ffb2a", + "path": "z://MP4\\Sing King Karaoke\\Kungs vs Cookin on 3 Burners - This Girl (Karaoke Version).mp4", + "title": "This Girl" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "P!nk", + "playlist_title": "Just Like Fire", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5bca412-08d4-c811-1299-6869c11545b2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Just Like Fire.mp4", + "title": "Just Like Fire" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Peter Pan", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "085842b2-76a5-2756-4f50-44c92edcfec9", + "path": "z://MP4\\Sing King Karaoke\\Kelsea Ballerini - Peter Pan (Karaoke Version).mp4", + "title": "Peter Pan" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Dierks Bentley Featuring Elle King", + "playlist_title": "Different For Girls", + "found_song": { + "artist": "Dierks Bentley Featuring Elle King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cac1bb8e-54e3-4552-865b-9014ac8559d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley Featuring Elle King - Different For Girls.mp4", + "title": "Different For Girls" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Mike Posner", + "playlist_title": "I Took A Pill In Ibiza", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "94722783-fde9-b881-ca28-ffaa2e8ace7d", + "path": "z://MP4\\King of Karaoke\\Mike Posner - I Took A Pill In Ibiza - King of Karaoke.mp4", + "title": "I Took A Pill In Ibiza" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Future Featuring The Weeknd", + "playlist_title": "Low Life", + "found_song": { + "artist": "Future Featuring The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9cbd6719-5003-b918-69e5-a712ebf1f55b", + "path": "z://MP4\\Sing King Karaoke\\Future Featuring The Weeknd - Low Life.mp4", + "title": "Low Life" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lukas Graham", + "playlist_title": "7 Years", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "guid": "1abdfb9a-3f16-49da-20fa-27c018e7afda", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - 7 Years (Karaoke Version).mp4", + "title": "7 Years" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Lukas Graham", + "playlist_title": "Mama Said", + "found_song": { + "artist": "Lukas Graham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf326eb9-ce55-1ea5-15f6-e0fbb9e348ca", + "path": "z://MP4\\Sing King Karaoke\\Lukas Graham - Mama Said.mp4", + "title": "Mama Said" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kanye West", + "playlist_title": "Fade", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "guid": "23d69248-d1b6-ebdf-0628-043a33e0c291", + "path": "z://MP4\\Karaoke Sing Sing\\Kanye West - Fade (Karaoke Version).mp4", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "H.O.L.Y.", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "d4a90636-2339-5316-1d86-3320dbd72599", + "path": "z://MP4\\Sing King Karaoke\\Florida Georgia Line - H.O.L.Y. (Karaoke Version).mp4", + "title": "H.O.L.Y." + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Me Too", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8ce83ac-a9c0-a16c-d165-eb1f89e1e11d", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Me Too.mp4", + "title": "Me Too" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Sam Hunt", + "playlist_title": "Make You Miss Me", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "288da4a7-378d-e1fd-75bb-a7e0b71ce1e0", + "path": "z://MP4\\Stingray Karaoke\\Make You Miss Me Sam Hunt Karaoke with Lyrics.mp4", + "title": "Make You Miss Me" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Kent Jones", + "playlist_title": "Don't Mind", + "found_song": { + "artist": "Kent Jones", + "disabled": false, + "favorite": false, + "guid": "da9ef826-7412-f18d-c651-233d02ad617e", + "path": "z://MP4\\Sing King Karaoke\\Kent Jones - Don t Mind (Karaoke Version).mp4", + "title": "Don t Mind" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Alessia Cara", + "playlist_title": "Scars To Your Beautiful", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "e89f04fa-a5fb-a7ce-e044-242f5f102df2", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Scars To Your Beautiful (Karaoke Version).mp4", + "title": "Scars To Your Beautiful" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Cole Swindell", + "playlist_title": "Middle Of A Memory", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "a060d0aa-1de4-c088-e43d-68d4bd4d91a6", + "path": "z://MP4\\KtvEntertainment\\Cole Swindell - Middle of a Memory Karaoke Lyrics.mp4", + "title": "Middle of a Memory" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tucker Beathard", + "playlist_title": "Rock On", + "found_song": { + "artist": "Tucker Beathard", + "disabled": false, + "favorite": false, + "guid": "f37ccde2-0683-e616-f0d8-dae238e53ccf", + "path": "z://MP4\\KtvEntertainment\\Tucker Beathard - Rock On Karaoke Lyrics.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "William Michael Morgan", + "playlist_title": "I Met A Girl", + "found_song": { + "artist": "William Michael Morgan", + "disabled": false, + "favorite": false, + "guid": "4b42cf2f-c28f-236c-4a9d-d972e5c75028", + "path": "z://MP4\\King of Karaoke\\William Michael Morgan - I Met a Girl - King of Karaoke.mp4", + "title": "I Met a Girl" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Katy Perry", + "playlist_title": "Rise", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "2c2eed9b-e4fc-1402-e226-60b0c6abbe5a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Rise (Karaoke Version).mp4", + "title": "Rise" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Keith Urban", + "playlist_title": "Blue Ain't Your Color", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e3ffd089-95ff-cb38-7cfa-573c3f49a61f", + "path": "z://MP4\\Karaoke Sing Sing\\Keith Urban - Blue Ain't Your Color (Karaoke Version).mp4", + "title": "Blue Ain't Your Color" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kehlani", + "playlist_title": "Gangsta", + "found_song": { + "artist": "Kehlani", + "disabled": false, + "favorite": false, + "guid": "726eaa3c-925a-da1b-79d8-3c44133d388e", + "path": "z://MP4\\Sing King Karaoke\\Kehlani - Gangsta (from Suicide Squad) (Karaoke Version).mp4", + "title": "Gangsta" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Move", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "8b74fb61-cc33-d9bb-28b6-04ebe2189fd2", + "path": "z://MP4\\King of Karaoke\\Luke Bryan - Move - King of Karaoke.mp4", + "title": "Move" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Florida Georgia Line Featuring Tim McGraw", + "playlist_title": "May We All", + "found_song": { + "artist": "Florida Georgia Line Featuring Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84803f89-e341-6a16-038b-96d21682c081", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line Featuring Tim McGraw - May We All.mp4", + "title": "May We All" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Beyonce", + "playlist_title": "Hold Up", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "4369e9b3-383d-bedc-000a-cfe851d157cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF364\\Beyonce - Hold Up - SF364 - 04.mp3", + "title": "Hold Up" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Brett Young", + "playlist_title": "Sleep Without You", + "found_song": { + "artist": "Brett Young", + "disabled": false, + "favorite": false, + "guid": "17eef818-83e6-6e5a-0b33-1944a9069019", + "path": "z://MP4\\KtvEntertainment\\Brett Young - Sleep Without You Karaoke Lyrics.mp4", + "title": "Sleep Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Justin Moore", + "playlist_title": "You Look Like I Need A Drink", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "c17e9327-b012-cd12-7b77-b5ef14a3d2e7", + "path": "z://MP4\\KtvEntertainment\\Justin Moore - You Look Like I Need a Drink Karaoke Lyrics.mp4", + "title": "You Look Like I Need a Drink" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chris Brown", + "playlist_title": "Grass Ain't Greener", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "d52b28d1-c381-257c-e387-84a9a3ab1466", + "path": "z://MP4\\KtvEntertainment\\Chris Brown - Grass Ain't Greener (Karaoke without Vocal).mp4", + "title": "Grass Ain't Greener" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 14, + "playlist_artist": "Drake Featuring WizKid & Kyla", + "playlist_title": "One Dance", + "found_song": { + "artist": "Drake Featuring WizKid & Kyla", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636e92e6-a598-aa9e-8e53-1f172fd11f04", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring WizKid & Kyla - One Dance.mp4", + "title": "One Dance" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Ariana Grande", + "playlist_title": "Into You", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f78eb1c-4822-a0a5-a5a2-5606fcd28893", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Into You.mp4", + "title": "Into You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Fifth Harmony Featuring Ty Dolla $ign", + "playlist_title": "Work From Home", + "found_song": { + "artist": "Fifth Harmony Featuring Ty Dolla $ign", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d57b87ee-796e-89fc-6297-051df54e4c9e", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony Featuring Ty Dolla $ign - Work From Home.mp4", + "title": "Work From Home" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kenny Chesney Featuring P!nk", + "playlist_title": "Setting The World On Fire", + "found_song": { + "artist": "Kenny Chesney ft. Pink", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61cf2fcd-9563-d340-061d-780fb240a35c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Chesney feat Pink - Setting The World On Fire.mp4", + "title": "Setting The World On Fire" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Fifth Harmony Featuring Fetty Wap", + "playlist_title": "All In My Head (Flex)", + "found_song": { + "artist": "Fifth Harmony Featuring Fetty Wap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69f71ae8-afe2-19d5-ed92-fbd77116be98", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony Featuring Fetty Wap - All In My Head (Flex.mp4", + "title": "All In My Head (Flex)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Amin�", + "playlist_title": "Caroline", + "found_song": { + "artist": "Aminé", + "disabled": false, + "favorite": false, + "guid": "9a08e0e8-670c-fbfa-cb2c-4b4323cdb941", + "path": "z://MP4\\Sing King Karaoke\\Aminé - Caroline (Karaoke Version).mp4", + "title": "Caroline" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Major Lazer Featuring Justin Bieber & MO", + "title": "Cold Water", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Sia Featuring Sean Paul", + "title": "Cheap Thrills", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake Featuring Rihanna", + "title": "Too Good", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ariana Grande Featuring Nicki Minaj", + "title": "Side To Side", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Kiiara", + "title": "Gold", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Wayne, Wiz Khalifa & Imagine Dragons With Logic & Ty Dolla $ign Feat. X Ambassadors", + "title": "Sucker For Pain", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Sia Featuring Kendrick Lamar", + "title": "The Greatest", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Daya", + "title": "Sit Still, Look Pretty", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Hailee Steinfeld & Grey Featuring Zedd", + "title": "Starving", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Desiigner", + "title": "Tiimmy Turner", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Usher Featuring Young Thug", + "title": "No Limit", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Rihanna Featuring Drake", + "title": "Work", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Young Thug And Travis Scott Featuring Quavo", + "title": "Pick Up The Phone", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Rob $tone Featuring J. Davi$ & Spooks", + "title": "Chill Bill", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Martin Garrix & Bebe Rexha", + "title": "In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Lil Uzi Vert", + "title": "Money Longer", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Billy Currington", + "title": "It Don't Hurt Like It Used To", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kanye West", + "title": "Father Stretch My Hands Pt. 1", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "DJ Khaled Featuring Jay Z & Future", + "title": "I Got The Keys", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Miranda Lambert", + "title": "Vice", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Marc E. Bassy Featuring G-Eazy", + "title": "You & Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Chance The Rapper Featuring Lil Wayne & 2 Chainz", + "title": "No Problem", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "ScHoolboy Q Featuring Kanye West", + "title": "THat Part", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Young M.A", + "title": "OOOUUU", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Dae Dae", + "title": "Wat U Mean (Aye, Aye, Aye)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jason Aldean", + "title": "A Little More Summertime", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Post Malone Featuring Justin Bieber", + "title": "Deja Vu", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Britney Spears Featuring G-Eazy", + "title": "Make Me...", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "YG Featuring Drake & Kamaiyah", + "title": "Why You Always Hatin?", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Skrillex & Rick Ross", + "title": "Purple Lamborghini", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Blake Shelton", + "title": "She's Got A Way With Words", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "DJ ESCO Featuring Future & Lil Uzi Vert", + "title": "Too Much Sauce", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "PARTYNEXTDOOR Featuring Drake", + "title": "Come And See Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Lil Yachty", + "title": "1 Night", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wale", + "title": "My PYT", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "LoCash", + "title": "I Know Somebody", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Drake", + "title": "Childs Play", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Jake Owen", + "title": "American Country Love Song", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Nicky Jam", + "title": "With You Tonight / Hasta El Amanecer", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "DJ Drama Featuring Chris Brown, Skeme & Lyquin", + "title": "Wishing", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "DJ Khaled Featuring Nicki Minaj, Chris Brown & August Alsina", + "title": "Do You Mind", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Rae Sremmurd Featuring Gucci Mane", + "title": "Black Beatles", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "French Montana Featuring Drake", + "title": "No Shopping", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "21 Savage & Metro Boomin Featuring Future", + "title": "X", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Lil Uzi Vert", + "title": "You Was Right", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Grace Featuring G-Eazy", + "title": "You Don't Own Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 48, + "fuzzy_match_count": 6, + "missing_count": 46, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "2015 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Fetty Wap Featuring Remy Boyz", + "playlist_title": "679", + "found_song": { + "artist": "Fetty Wap Featuring Remy Boyz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae00e365-7288-44e4-1275-f6eb4d0a5629", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Remy Boyz - 679.mp4", + "title": "679" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Fetty Wap Featuring Monty", + "playlist_title": "My Way", + "found_song": { + "artist": "Fetty Wap Featuring Monty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6404500f-258a-087b-6e7d-c732c679c5a8", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Monty - My Way.mp4", + "title": "My Way" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Drake & Future", + "title": "Jumpman", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Post Malone", + "title": "White Iverson", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tory Lanez", + "title": "Say It", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Fetty Wap", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Bryson Tiller", + "title": "Exchange", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Drake", + "title": "Back To Back", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Young Thug", + "title": "Best Friend", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 1, + "missing_count": 15, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2015 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Plush", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Uma Thurman", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "f182f5bf-fdc9-f83b-4fc3-8cc8b8fb7156", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Uma Thurman (Karaoke Version).mp4", + "title": "Uma Thurman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Interstate Love Song", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c310d8b-b8ef-2f7a-c9e9-d92289e70168", + "path": "z://MP4\\VocalStarKaraoke\\Stone Temple Pilots - Interstate Love Song.mp4", + "title": "Interstate Love Song" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "James Bay", + "playlist_title": "Let It Go", + "found_song": { + "artist": "James Bay", + "disabled": false, + "favorite": false, + "guid": "22477687-4e1d-d712-226f-bd4804a20576", + "path": "z://MP4\\Sing King Karaoke\\James Bay - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Coldplay", + "playlist_title": "Everglow", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "c0fd55aa-59f1-ccba-69bc-7a319562be9b", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Everglow SING SING KARAOKE (2).mp4", + "title": "Everglow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Emperor's New Clothes", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "f26dea3c-f8d7-1d91-43f4-21bc960129a9", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Emperor s New Clothes (Karaoke Version).mp4", + "title": "Emperor s New Clothes" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Coleman Hell", + "playlist_title": "2 Heads", + "found_song": { + "artist": "Coleman Hell", + "disabled": false, + "favorite": false, + "guid": "9282dd1b-e31d-a629-ca08-6e73b5d75e1f", + "path": "z://MP4\\KtvEntertainment\\Coleman Hell - 2 Heads Karaoke Lyrics.mp4", + "title": "2 Heads" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Panic! At The Disco", + "playlist_title": "Victorious", + "found_song": { + "artist": "Panic! At The Disco", + "disabled": false, + "favorite": false, + "guid": "8f9934c9-345b-f590-6972-08e07ad4172f", + "path": "z://MP4\\Sing King Karaoke\\Panic! At The Disco - Victorious (Karaoke Version).mp4", + "title": "Victorious" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Vance Joy", + "playlist_title": "Fire And The Flood", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "guid": "bed78baa-c635-684e-8e82-373df3d64cca", + "path": "z://MP4\\KtvEntertainment\\Vance Joy - Fire And The Flood Karaoke Lyrics.mp4", + "title": "Fire And The Flood" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Disturbed", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "c9653713-3363-f884-5e55-e0c5a3c873a6", + "path": "z://MP4\\Sing King Karaoke\\Disturbed - The Sound Of Silence (Karaoke Version).mp4", + "title": "The Sound Of Silence" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "X Ambassadors", + "playlist_title": "Unsteady", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "695e4b0f-b4da-469c-ee11-6a36f1afa00e", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Unsteady (Karaoke Version).mp4", + "title": "Unsteady" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Coldplay", + "playlist_title": "Hymn For The Weekend", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "48890024-ca3b-d6cb-3d9a-b54bb680cba6", + "path": "z://MP4\\Karaoke Sing Sing\\Coldplay - Hymn For The Weekend (Karaoke Version) (2).mp4", + "title": "Hymn For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Throne", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef1de65-f7e7-95ed-9b6f-838cd0b0e15e", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Throne.mp4", + "title": "Throne" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Disturbed", + "playlist_title": "The Light", + "found_song": { + "artist": "Disturbed", + "disabled": false, + "favorite": false, + "guid": "95293349-45e4-d019-b487-f2a5c3e76acf", + "path": "z://MP4\\KtvEntertainment\\Disturbed - The Light Karaoke Lyrics.mp4", + "title": "The Light" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Stone Temple Pilots", + "playlist_title": "Creep", + "found_song": { + "artist": "Stone Temple Pilots", + "disabled": false, + "favorite": false, + "guid": "c117baee-a5fb-e16d-f99f-f99b3156c65a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Plush - Stone Temple Pilots.mp4", + "title": "Plush" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Nathaniel Rateliff & The Night Sweats", + "title": "S.O.B.", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Cage The Elephant", + "title": "Mess Around", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Death Cab For Cutie", + "title": "The Ghosts Of Beverly Drive", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Shinedown", + "title": "Cut The Cord", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 20, + "fuzzy_match_count": 1, + "missing_count": 4, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2015 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Chainsmokers Featuring ROZES", + "playlist_title": "Roses", + "found_song": { + "artist": "The Chainsmokers Featuring ROZES", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7b168f1-1ab3-d7da-abaf-8d94d7818bc2", + "path": "z://MP4\\KaraokeOnVEVO\\The Chainsmokers Featuring ROZES - Roses.mp4", + "title": "Roses" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "I Know What You Did Last Summer", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "03da8e9b-ed33-5fdb-877f-3563bbb64edc", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version).mp4", + "title": "I Know What You Did Last Summer" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Meghan Trainor Featuring John Legend", + "title": "Like I'm Gonna Lose You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 3, + "missing_count": 1, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2015 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Chris Young", + "playlist_title": "I'm Comin' Over", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "88b4e560-332f-21d8-e422-af643886485c", + "path": "z://MP4\\KtvEntertainment\\Chris Young - I'm Comin' Over Karaoke Lyrics.mp4", + "title": "I'm Comin' Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Stapleton", + "playlist_title": "Tennessee Whiskey", + "found_song": { + "artist": "Chris Stapleton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d709564-c81f-c9d0-98c1-8e840dda4810", + "path": "z://MP4\\Sing King Karaoke\\Chris Stapleton - Tennessee Whiskey (Karaoke Version).mp4", + "title": "Tennessee Whiskey" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eric Church", + "playlist_title": "Mr. Misunderstood", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6299265f-42fd-3d2d-b6d8-8b7db5e32606", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - Mr Misunderstood.mp4", + "title": "Mr. Misunderstood" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Keith Urban", + "playlist_title": "Break On Me.", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1580035c-5e84-7d7c-44c2-92358c41ae49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Break On Me - Keith Urban.mp4", + "title": "Break On Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Blake Shelton", + "title": "Gonna", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jana Kramer", + "title": "I Got The Boy", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tim McGraw", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Randy Houser", + "title": "We Went", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Brad Paisley", + "title": "Country Nation", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kenny Chesney", + "title": "Save It For A Rainy Day", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Emily Ann Roberts", + "title": "9 To 5", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 10, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2015 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Adele", + "playlist_title": "Hello", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f6206d2-050f-7766-e24b-b11f9717b1b0", + "path": "z://MP4\\Sing King Karaoke\\Adele - Hello.mp4", + "title": "Hello" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Justin Bieber", + "playlist_title": "Sorry", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8c5a210b-7a96-c295-321a-57e8f9a1193a", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Sorry (Karaoke Version).mp4", + "title": "Sorry" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Drake", + "playlist_title": "Hotline Bling", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "d20067f0-79ed-e2b1-dd01-98b040dbf270", + "path": "z://MP4\\Sing King Karaoke\\Drake - Hotline Bling (Karaoke Version).mp4", + "title": "Hotline Bling" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Justin Bieber", + "playlist_title": "What Do You Mean?", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "6d114efe-4193-b18d-15ae-0caf3ea13a48", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - What Do You Mean (Karaoke Version).mp4", + "title": "What Do You Mean" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Justin Bieber", + "playlist_title": "Love Yourself", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "7a08a1bc-cd76-6cb3-a6c6-e13e0d06dab7", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Love Yourself (Karaoke Version).mp4", + "title": "Love Yourself" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Weeknd", + "playlist_title": "The Hills", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f71ef0e-0cc7-46ad-48f4-e7912a64e184", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - The Hills (Karaoke Version).mp4", + "title": "The Hills" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Shawn Mendes", + "playlist_title": "Stitches", + "found_song": { + "artist": "Shawn Mendes", + "disabled": false, + "favorite": false, + "guid": "2ed89576-5a0a-8f07-81c6-776e83c94720", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes - Stitches (Karaoke Version) (2).mp4", + "title": "Stitches" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alessia Cara", + "playlist_title": "Here", + "found_song": { + "artist": "Alessia Cara", + "disabled": false, + "favorite": false, + "guid": "3b62e704-ff03-8e18-293d-fc1d5dc4e8a6", + "path": "z://MP4\\Sing King Karaoke\\Alessia Cara - Here (Karaoke Version).mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Selena Gomez", + "playlist_title": "Same Old Love", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "c99e8830-dbc0-79db-6d86-827def50ec3d", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Same Old Love (Karaoke Version).mp4", + "title": "Same Old Love" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Fetty Wap Featuring Remy Boyz", + "playlist_title": "679", + "found_song": { + "artist": "Fetty Wap Featuring Remy Boyz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ae00e365-7288-44e4-1275-f6eb4d0a5629", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap Featuring Remy Boyz - 679.mp4", + "title": "679" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Elle King", + "playlist_title": "Ex's & Oh's", + "found_song": { + "artist": "Elle King", + "disabled": false, + "favorite": false, + "guid": "22d30d96-78b9-07c0-57ad-d60406d61d19", + "path": "z://MP4\\Sing King Karaoke\\Elle King - Ex s & Oh s (Karaoke Version).mp4", + "title": "Ex s & Oh s" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "On My Mind", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "7eb3b94b-f9dc-f94c-eb9b-8d72c827c0a1", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - On My Mind (Karaoke Version).mp4", + "title": "On My Mind" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Weeknd", + "playlist_title": "Can't Feel My Face", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "7a060f40-8b36-0eb3-e2f2-280dea1b8f50", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Can t Feel My Face (Karaoke Version).mp4", + "title": "Can t Feel My Face" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Weeknd", + "playlist_title": "In The Night", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "2a8d18d3-5726-fdca-d96b-c8f43d59f5bb", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - In The Night (Karaoke Version).mp4", + "title": "In The Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bryson Tiller", + "playlist_title": "Don't", + "found_song": { + "artist": "Bryson Tiller", + "disabled": false, + "favorite": false, + "guid": "e0a0cd10-4d3f-9472-4026-8f4b277376ba", + "path": "z://MP4\\Sing King Karaoke\\Bryson Tiller - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Die A Happy Man", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "19b7c986-4c2b-c4f7-1c8f-7d0afdec7880", + "path": "z://MP4\\KtvEntertainment\\Thomas Rhett - Die a Happy Man Karaoke Lyrics.mp4", + "title": "Die a Happy Man" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fetty Wap", + "playlist_title": "Trap Queen", + "found_song": { + "artist": "Fetty Wap", + "disabled": false, + "favorite": false, + "guid": "5767dfb9-338f-32b2-d567-3904fc950fde", + "path": "z://MP4\\Sing King Karaoke\\Fetty Wap - Trap Queen (Karaoke Version).mp4", + "title": "Trap Queen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "twenty one pilots", + "playlist_title": "Stressed Out", + "found_song": { + "artist": "Twenty One Pilots", + "disabled": false, + "favorite": false, + "guid": "ad7ab667-78a2-7ba7-54cf-4d2fe66283cf", + "path": "z://MP4\\Sing King Karaoke\\twenty one pilots - Stressed Out (Karaoke Version).mp4", + "title": "Stressed Out" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "The Chainsmokers Featuring ROZES", + "playlist_title": "Roses", + "found_song": { + "artist": "The Chainsmokers Featuring ROZES", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7b168f1-1ab3-d7da-abaf-8d94d7818bc2", + "path": "z://MP4\\KaraokeOnVEVO\\The Chainsmokers Featuring ROZES - Roses.mp4", + "title": "Roses" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Demi Lovato", + "playlist_title": "Confident", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "3647fd72-2096-294d-bc91-5e4a9faeea55", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Confident (Karaoke Version).mp4", + "title": "Confident" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "One Direction", + "playlist_title": "Perfect", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8f2c67e4-1e09-353e-cedf-37625e44263c", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "R. City Featuring Adam Levine", + "playlist_title": "Locked Away", + "found_song": { + "artist": "R. City Featuring Adam Levine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df18f5fe-3a4b-9b71-00bf-23caed979ea3", + "path": "z://MP4\\KaraokeOnVEVO\\R. City Featuring Adam Levine - Locked Away.mp4", + "title": "Locked Away" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sam Hunt", + "playlist_title": "Break Up In A Small Town", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "1270d62c-3e23-3ec5-f07d-2702424f5dcf", + "path": "z://MP4\\KtvEntertainment\\Sam Hunt - Break Up in a Small Town Karaoke Lyrics.mp4", + "title": "Break Up in a Small Town" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "G-Eazy x Bebe Rexha", + "playlist_title": "Me, Myself & I", + "found_song": { + "artist": "G-Eazy x Bebe Rexha", + "disabled": false, + "favorite": false, + "guid": "5c95bca5-a478-73aa-27e6-ef16018b0fd4", + "path": "z://MP4\\Sing King Karaoke\\G-Eazy x Bebe Rexha - Me, Myself & I (Karaoke Version).mp4", + "title": "Me, Myself & I" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Adventure Of A Lifetime", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "0b53cb86-053f-834a-1c1f-f13f372480d0", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Adventure Of A Lifetime (Karaoke Version).mp4", + "title": "Adventure Of A Lifetime" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "OMI", + "playlist_title": "Cheerleader", + "found_song": { + "artist": "Omi", + "disabled": false, + "favorite": false, + "guid": "c540b934-5f5f-3a71-b7d3-d6e741719be8", + "path": "z://MP4\\King of Karaoke\\Omi - Cheerleader - King of Karaoke.mp4", + "title": "Cheerleader" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Drag Me Down", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "be1e4656-c769-4e82-4855-ce8d4bd255e1", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Drag Me Down (Karaoke Version).mp4", + "title": "Drag Me Down" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Cam", + "playlist_title": "Burning House", + "found_song": { + "artist": "Cam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "442f7947-03a8-8e08-9b57-38f8d68192fa", + "path": "z://MP4\\KaraokeOnVEVO\\Cam - Burning House.mp4", + "title": "Burning House" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Daya", + "playlist_title": "Hide Away", + "found_song": { + "artist": "Daya", + "disabled": false, + "favorite": false, + "guid": "39ca78d5-a955-1e15-a270-159aaace4ed4", + "path": "z://MP4\\Sing King Karaoke\\Daya - Hide Away (Karaoke Version).mp4", + "title": "Hide Away" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "X Ambassadors", + "playlist_title": "Renegades", + "found_song": { + "artist": "X Ambassadors", + "disabled": false, + "favorite": false, + "guid": "259a4156-c0ac-aa25-b0a2-d0e54666a508", + "path": "z://MP4\\Sing King Karaoke\\X Ambassadors - Renegades (Karaoke Version).mp4", + "title": "Renegades" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Justin Bieber", + "playlist_title": "I'll Show You", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "53f8885e-3935-fceb-f17b-609be590152e", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - I ll Show You (Karaoke Version).mp4", + "title": "I ll Show You" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Flo Rida", + "playlist_title": "My House", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "169f563c-d4fc-a25c-ed64-16fb2ca8c960", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - My House (Karaoke Version).mp4", + "title": "My House" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Used To Love You", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "60195f13-45b7-2885-a108-7fd529c1db28", + "path": "z://MP4\\King of Karaoke\\Gwen Stefani - Used To Love You - King of Karaoke.mp4", + "title": "Used To Love You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brothers Osborne", + "playlist_title": "Stay A Little Longer", + "found_song": { + "artist": "Brothers Osborne", + "disabled": false, + "favorite": false, + "guid": "832b9dd4-d848-e7bf-2f03-89feaeff2fd2", + "path": "z://MP4\\KtvEntertainment\\Brothers Osborne - Stay a Little Longer Karaoke Lyrics.mp4", + "title": "Stay a Little Longer" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rachel Platten", + "playlist_title": "Stand By You", + "found_song": { + "artist": "Rachel Platten", + "disabled": false, + "favorite": false, + "guid": "815dbc1d-b6d5-16a9-4869-dd16da4c443c", + "path": "z://MP4\\Sing King Karaoke\\Rachel Platten - Stand By You (Karaoke Version).mp4", + "title": "Stand By You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "DNCE", + "playlist_title": "Cake By The Ocean", + "found_song": { + "artist": "DNCE", + "disabled": false, + "favorite": false, + "guid": "c89e0315-b92a-f48b-71ae-4fbfce369616", + "path": "z://MP4\\Sing King Karaoke\\DNCE - Cake By The Ocean (Karaoke Version).mp4", + "title": "Cake By The Ocean" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Gonna Know We Were Here", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "a2cc1e64-648b-e994-7034-25038cf499b0", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Gonna Know We Were Here Karaoke Lyrics.mp4", + "title": "Gonna Know We Were Here" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Justin Bieber Featuring Halsey", + "playlist_title": "The Feeling", + "found_song": { + "artist": "Justin Bieber Featuring Halsey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca00629e-16c4-ec1a-281c-05537a3db246", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Halsey - The Feeling.mp4", + "title": "The Feeling" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "LoCash", + "playlist_title": "I Love This Life", + "found_song": { + "artist": "Locash", + "disabled": false, + "favorite": false, + "guid": "f5c25ab2-527c-1ad4-2f0d-3f30b47f5b00", + "path": "z://MP4\\KtvEntertainment\\Locash - I Love This Life Karaoke Lyrics.mp4", + "title": "I Love This Life" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Charlie Puth", + "playlist_title": "One Call Away", + "found_song": { + "artist": "Charlie Puth", + "disabled": false, + "favorite": false, + "guid": "6b486886-19ab-1362-d2f3-a708badcdece", + "path": "z://MP4\\Sing King Karaoke\\Charlie Puth - One Call Away (Karaoke Version).mp4", + "title": "One Call Away" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Selena Gomez", + "playlist_title": "Hands To Myself", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "efe55fee-38b6-5f30-9f10-771e89ba1963", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Hands To Myself (Karaoke Version).mp4", + "title": "Hands To Myself" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Adele", + "playlist_title": "When We Were Young", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "beef5188-21b8-62c6-1927-ceb10997e319", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When We Were Young - Adele.mp4", + "title": "When We Were Young" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Luke Bryan", + "playlist_title": "Strip It Down", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "33f2fa07-04c2-7114-3ed3-b94bdde0284b", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Strip It Down Karaoke Lyrics.mp4", + "title": "Strip It Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Smoke Break", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "2b9d8644-3714-3a73-f2a7-1934aabe3bbe", + "path": "z://MP4\\KtvEntertainment\\Carrie Underwood - Smoke Break Karaoke Lyrics.mp4", + "title": "Smoke Break" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Irresistible", + "found_song": { + "artist": "Fall Out Boy ft. Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "9a37bb08-839f-dc59-6597-6fb17579e7a4", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy ft. Demi Lovato - Irresistible (Karaoke Version).mp4", + "title": "Irresistible" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Justin Bieber", + "playlist_title": "Purpose", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1cf6aa40-aec6-2ec4-081d-b6ea7371c784", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Purpose (Karaoke Version).mp4", + "title": "Purpose" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Dawin", + "playlist_title": "Dessert", + "found_song": { + "artist": "Dawin", + "disabled": false, + "favorite": false, + "guid": "cbf6cf3b-0bb3-75da-738d-e7e125062236", + "path": "z://MP4\\Sing King Karaoke\\Dawin - Dessert (Karaoke Version).mp4", + "title": "Dessert" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mark My Words", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "f6f92ea6-2e33-f115-fde6-8b7cf08c9f57", + "path": "z://MP4\\Karaoke Sing Sing\\Justin Bieber - Mark My Words (Karaoke Version) (2).mp4", + "title": "Mark My Words" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Granger Smith", + "playlist_title": "Backroad Song", + "found_song": { + "artist": "Granger Smith", + "disabled": false, + "favorite": false, + "guid": "605742b9-1363-7b25-012c-eb6ffe9ce538", + "path": "z://MP4\\KtvEntertainment\\Granger Smith - Backroad Song Karaoke Lyrics.mp4", + "title": "Backroad Song" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Justin Bieber", + "playlist_title": "Company", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "93f7481f-6143-ff0c-fdb9-7223e31bf286", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Company (Karaoke Version).mp4", + "title": "Company" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 16, + "playlist_artist": "Travi$ Scott", + "playlist_title": "Antidote", + "found_song": { + "artist": "Travis Scott", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c372f14-61ec-107d-baa6-192e5b4e4f01", + "path": "z://MP4\\Sing King Karaoke\\Travi$ Scott - Antidote.mp4", + "title": "Antidote" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Taylor Swift", + "playlist_title": "Wildest Dreams", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "24404eb7-7e09-047d-ea24-009099774011", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Wildest Dreams (Karaoke Version).mp4", + "title": "Wildest Dreams" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Ariana Grande", + "playlist_title": "Focus", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "88113fe8-2ee0-5477-5b89-2c2fe464cd41", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Focus (Karaoke Version).mp4", + "title": "Focus" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Silento", + "playlist_title": "Watch Me", + "found_song": { + "artist": "Silento", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "a53f2732-b795-e1ab-3712-e744569aeeee", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF354\\Silento - Watch Me (Whip - SF354 - 13.mp3", + "title": "Watch Me (Whip" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Shawn Mendes & Camila Cabello", + "playlist_title": "I Know What You Did Last Summer", + "found_song": { + "artist": "Shawn Mendes ft. Camila Cabello", + "disabled": false, + "favorite": false, + "guid": "03da8e9b-ed33-5fdb-877f-3563bbb64edc", + "path": "z://MP4\\Sing King Karaoke\\Shawn Mendes & Camila Cabello - I Know What You Did Last Summer (Karaoke Version).mp4", + "title": "I Know What You Did Last Summer" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 86, + "playlist_artist": "Kelsea Ballerini", + "playlist_title": "Dibs", + "found_song": { + "artist": "Kelsea Ballerini", + "disabled": false, + "favorite": false, + "guid": "bf271c3f-b802-bc02-8019-f5a6b50b7426", + "path": "z://MP4\\KtvEntertainment\\Kelsea Ballerini - XO Karaoke Lyrics.mp4", + "title": "XO" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Beautiful Drug", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "e2904051-2f30-7d11-b5e0-d6461ae93316", + "path": "z://MP4\\KtvEntertainment\\Zac Brown Band - Beautiful Drug Karaoke Lyrics.mp4", + "title": "Beautiful Drug" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Meghan Trainor Featuring John Legend", + "title": "Like I'm Gonna Lose You", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake & Future", + "title": "Jumpman", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Major Lazer & DJ Snake Featuring M0", + "title": "Lean On", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jordan Smith", + "title": "Somebody To Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Post Malone", + "title": "White Iverson", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Tory Lanez", + "title": "Say It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Future Featuring Drake", + "title": "Where Ya At", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Skrillex & Diplo With Justin Bieber", + "title": "Where Are U Now", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Selena Gomez Featuring A$AP Rocky", + "title": "Good For You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Wiz Khalifa Featuring Charlie Puth", + "title": "See You Again", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Fetty Wap", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "iLoveMemphis", + "title": "Hit The Quan", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "DeJ Loaf Featuring Big Sean", + "title": "Back Up", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bryson Tiller", + "title": "Exchange", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blake Shelton", + "title": "Gonna", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Missy Elliott Featuring Pharrell Williams", + "title": "WTF (Where They From)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Rudimental Featuring Ed Sheeran", + "title": "Lay It All On Me", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "DLOW", + "title": "Bet You Can't Do It Like Me", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Nelly Featuring Jeremih", + "title": "The Fix", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Drake & Future", + "title": "Big Rings", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Drake", + "title": "Back To Back", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Luke Bryan Featuring Karen Fairchild", + "title": "Home Alone Tonight", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Yo Gotti", + "title": "Down In The DM", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Dan + Shay", + "title": "Nothin' Like You", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jana Kramer", + "title": "I Got The Boy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Young Thug", + "title": "Best Friend", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Tim McGraw", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Macklemore & Ryan Lewis Featuring Eric Nally, Melle Mel, Kool Moe Dee & Grandmaster Caz", + "title": "Downtown", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Rae Sremmurd", + "title": "Come Get Her", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ty Dolla $ign Featuring Future & Rae Sremmurd", + "title": "Blase", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Halsey", + "title": "New Americana", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Lil Dicky Featuring Fetty Wap & Rich Homie Quan", + "title": "$ave Dat Money", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Drake", + "title": "Right Hand", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Parmalee", + "title": "Already Callin' You Mine", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Big Sean Featuring Chris Brown & Ty Dolla $ign", + "title": "Play No Games", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "G-Eazy", + "title": "Random", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Justin Bieber Featuring Big Sean", + "title": "No Pressure", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rick Ross Featuring Chris Brown", + "title": "Sorry", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "G-Eazy Featuring Chris Brown & Tory Lanez", + "title": "Drifting", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Chris Brown", + "title": "Liquor", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 53, + "fuzzy_match_count": 7, + "missing_count": 40, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2014 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Big Sean Featuring E-40", + "playlist_title": "I Don't F**k With You", + "found_song": { + "artist": "Big Sean Featuring E-40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a00505f-4255-2eb0-f559-882ea2545ab2", + "path": "z://MP4\\Sing King Karaoke\\Big Sean Featuring E-40 - I Dont Fk With You.mp4", + "title": "I Don't F**k With You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Iggy Azalea Featuring Rita Ora", + "playlist_title": "Black Widow", + "found_song": { + "artist": "Iggy Azalea Featuring Rita Ora", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aefb08fb-6f3e-8a70-f7fb-f7a5869905ad", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea Featuring Rita Ora - Black Widow.mp4", + "title": "Black Widow" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Drake", + "playlist_title": "0 To 100 / The Catch Up", + "found_song": { + "artist": "Drake", + "disabled": false, + "favorite": false, + "guid": "78a49f5e-07ed-ed85-bc4d-b61af9d3a6f3", + "path": "z://MP4\\Karaoke Sing Sing\\Drake - 0 to 100 The Catch Up (Clean) (Karaoke Version) (2).mp4", + "title": "0 to 100 The Catch Up" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "title": "Only", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rae Sremmurd", + "title": "No Type", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Usher Featuring Juicy J", + "title": "I Don't Mind", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "J. Cole", + "title": "Wet Dreamz", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Weeknd", + "title": "Often", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "August Alsina", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ne-Yo Featuring Juicy J", + "title": "She Knows", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "title": "G.D.F.R.", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 1, + "missing_count": 19, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2014 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Coldplay", + "playlist_title": "A Sky Full Of Stars", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "755b2c44-461f-1bb0-ccf1-14aa07f2c86b", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - A Sky Full Of Stars (Karaoke Version).mp4", + "title": "A Sky Full Of Stars" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Foo Fighters", + "playlist_title": "Something From Nothing", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "02b80c6d-ccc3-34ef-5767-d5aa8b5fe258", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF345\\Foo Fighters - Something From Nothing - SF345 - 03.mp3", + "title": "Something From Nothing" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Immortals", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "876e323d-9bae-203c-53ef-3193d9963db9", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Immortals - From Big Hero 6 (Karaoke Version).mp4", + "title": "Immortals" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "alt-J", + "playlist_title": "Left Hand Free", + "found_song": { + "artist": "Alt-J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8143c16-0c64-a8bd-5550-2383e87cfd99", + "path": "z://MP4\\KaraokeOnVEVO\\alt-J - Left Hand Free.mp4", + "title": "Left Hand Free" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Ezra", + "playlist_title": "Budapest", + "found_song": { + "artist": "George Ezra", + "disabled": false, + "favorite": false, + "guid": "2867108f-d519-272f-0dae-c7dd15c06c9e", + "path": "z://MP4\\Sing King Karaoke\\George Ezra - Budapest (Karaoke Version).mp4", + "title": "Budapest" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Cigarette Daydreams", + "found_song": { + "artist": "Cage The Elephant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77b2a0e6-b890-12eb-d6df-28b5f10ffeb5", + "path": "z://MP4\\Sing King Karaoke\\Cage The Elephant - Cigarette Daydreams (Karaoke Version).mp4", + "title": "Cigarette Daydreams" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "MisterWives", + "playlist_title": "Reflections", + "found_song": { + "artist": "MisterWives", + "disabled": false, + "favorite": false, + "guid": "f6b651aa-803f-b72c-03a9-6b00b6e94d8c", + "path": "z://MP4\\Sing King Karaoke\\MisterWives - Reflections (Karaoke Version).mp4", + "title": "Reflections" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Royal Blood", + "playlist_title": "Figure It Out", + "found_song": { + "artist": "Royal Blood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa4f9c97-9633-6b76-8138-d61b035e75b1", + "path": "z://CDG\\Mr Entertainer\\MRH121\\Royal Blood - Figure It Out.mp3", + "title": "Figure It Out" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bring Me The Horizon", + "playlist_title": "Drown", + "found_song": { + "artist": "Bring Me The Horizon", + "disabled": false, + "favorite": false, + "guid": "90b613c1-757f-e002-824e-731a0fc8d057", + "path": "z://MP4\\Sing King Karaoke\\Bring Me The Horizon - Drown (Karaoke Version).mp4", + "title": "Drown" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hozier", + "playlist_title": "Work Song", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2547416-7674-f7b1-bd29-9be6b24453f9", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Work Song (Karaoke Version).mp4", + "title": "Work Song" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Wrong Side Of Heaven", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "ad36a006-2fff-91f7-8bdb-720911a78d6d", + "path": "z://MP4\\KtvEntertainment\\Five Finger Death Punch - Wrong Side Of Heaven Karaoke Lyrics.mp4", + "title": "Wrong Side Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Flaws", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "guid": "71b6e7e2-3ad5-1b46-b4b5-d33b961451f7", + "path": "z://MP4\\Bastille - Flaws.mp4", + "title": "Flaws" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Matt McAndrew", + "playlist_title": "I Still Haven't Found What I'm Looking For", + "found_song": { + "artist": "Matt McAndrew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd0c6937-2ff2-c0af-fe0a-37d74cf5c52c", + "path": "z://MP4\\VocalStarKaraoke\\Matt McAndrew - I Still Havent Found What Im Looking For.mp4", + "title": "I Still Havent Found What Im Looking For" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 9, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Hozier", + "title": "From Eden", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Matt McAndrew", + "title": "The Blower's Daughter", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Matt McAndrew", + "title": "Take Me To Church", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Vance Joy", + "title": "Mess Is Mine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 19, + "fuzzy_match_count": 1, + "missing_count": 5, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2014 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Calvin Harris Featuring John Newman", + "playlist_title": "Blame", + "found_song": { + "artist": "Calvin Harris Featuring John Newman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f393b4c6-003e-a508-6d7d-8f9cdd5c85d2", + "path": "z://MP4\\KaraokeOnVEVO\\Calvin Harris Featuring John Newman - Blame.mp4", + "title": "Blame" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Ariana Grande & The Weeknd", + "title": "Love Me Harder", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alesso Featuring Tove Lo", + "title": "Heroes (We Could Be)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2014 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Blake Shelton Featuring Ashley Monroe", + "playlist_title": "Lonely Tonight", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Sam Hunt", + "playlist_title": "Leave The Night On", + "found_song": { + "artist": "Sam Hunt", + "disabled": false, + "favorite": false, + "guid": "295e7c57-de8b-5b7d-5a04-3102a209f468", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave The Night On - Sam Hunt.mp4", + "title": "Leave The Night On" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Jason Aldean", + "playlist_title": "Burnin' It Down", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "d8631246-1e3d-d905-a39f-4bc522ce8b6b", + "path": "z://MP4\\KtvEntertainment\\Jason Aldean - Burnin' It Down (Karaoke without Vocal).mp4", + "title": "Burnin' It Down" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Dirt", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "guid": "2880cf84-31da-93a1-9e1a-17fb492d09f0", + "path": "z://MP4\\KtvEntertainment\\Florida Georgia Line - Dirt (Karaoke without Vocal).mp4", + "title": "Dirt" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Chase Bryant", + "playlist_title": "Take It On Back", + "found_song": { + "artist": "Chase Bryant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe12b394-7425-6010-b179-791880923457", + "path": "z://MP4\\KaraokeOnVEVO\\Chase Bryant - Take It On Back.mp4", + "title": "Take It On Back" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton ft. Ashley Monroe", + "disabled": false, + "favorite": false, + "guid": "5d84566a-bb14-046a-6736-bfb1cfc8a99b", + "path": "z://MP4\\singsongsmusic\\Lonely Tonight - Karaoke HD (In the style of Blake Shelton & Ashley Monroe).mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Tim McGraw", + "title": "Shotgun Rider", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Carrie Underwood", + "title": "Something In The Water", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "RaeLynn", + "title": "God Made Girls", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lee Brice", + "title": "Drinking Class", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Brett Eldredge", + "title": "Mean To Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jason Aldean", + "title": "Just Gettin' Started", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Randy Houser", + "title": "Like A Cowboy", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Darius Rucker", + "title": "Homegrown Honey", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chris Young", + "title": "Lonely Eyes", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 2, + "missing_count": 10, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2014 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Hozier", + "playlist_title": "Take Me To Church", + "found_song": { + "artist": "Hozier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad398f97-dc3b-9338-24b7-5ba8cc4305e7", + "path": "z://MP4\\Sing King Karaoke\\Hozier - Take Me to Church (Karaoke Version).mp4", + "title": "Take Me to Church" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meghan Trainor", + "playlist_title": "Lips Are Movin", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "0d495c59-930c-884b-8abe-6d15ded99093", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - Lips Are Movin (Karaoke Version).mp4", + "title": "Lips Are Movin" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Sam Smith", + "playlist_title": "I'm Not The Only One", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "7d2798ae-a5fd-90b7-7e71-4a9d10930ffc", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - I m Not The Only One (Karaoke Version).mp4", + "title": "I m Not The Only One" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Thinking Out Loud", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "f8a54394-79e6-ddc0-5002-27016e44d273", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Thinking Out Loud (Karaoke Version).mp4", + "title": "Thinking Out Loud" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Meghan Trainor", + "playlist_title": "All About That Bass", + "found_song": { + "artist": "Meghan Trainor", + "disabled": false, + "favorite": false, + "guid": "8f68942b-7cae-84f6-4869-7d21f1f35bce", + "path": "z://MP4\\Sing King Karaoke\\Meghan Trainor - All About That Bass (Karaoke Version).mp4", + "title": "All About That Bass" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Maroon 5", + "playlist_title": "Animals", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e296139a-486a-d1b1-478d-cff55516dff9", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Animals (Karaoke Version).mp4", + "title": "Animals" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Nick Jonas", + "playlist_title": "Jealous", + "found_song": { + "artist": "Nick Jonas", + "disabled": false, + "favorite": false, + "guid": "ede76c1d-6528-634f-57a3-4b95ecc3f1f3", + "path": "z://MP4\\Sing King Karaoke\\Nick Jonas - Jealous (Karaoke Version).mp4", + "title": "Jealous" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Selena Gomez", + "playlist_title": "The Heart Wants What It Wants", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "88ef5148-9711-59c4-5e4f-ddb82d2240bf", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - The Heart Wants What It Wants (Karaoke Version).mp4", + "title": "The Heart Wants What It Wants" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Big Sean Featuring E-40", + "playlist_title": "I Don't F**k With You", + "found_song": { + "artist": "Big Sean Featuring E-40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a00505f-4255-2eb0-f559-882ea2545ab2", + "path": "z://MP4\\Sing King Karaoke\\Big Sean Featuring E-40 - I Dont Fk With You.mp4", + "title": "I Don't F**k With You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tove Lo", + "playlist_title": "Habits (Stay High)", + "found_song": { + "artist": "Tove Lo", + "disabled": false, + "favorite": false, + "guid": "30182fc2-07d2-4d08-5c46-e6a17f38a9ca", + "path": "z://MP4\\Sing King Karaoke\\Tove Lo - Habits (Stay High) (Karaoke Version).mp4", + "title": "Habits (Stay High)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Don't", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "afdc5d12-6c39-a1b1-91fa-b1a38a77c9c2", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Don t (Karaoke Version).mp4", + "title": "Don t" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mr. Probz", + "playlist_title": "Waves", + "found_song": { + "artist": "Mr. Probz and Robin Schulz", + "disabled": false, + "favorite": false, + "guid": "2ff2d389-58ef-cb6f-d85b-653d1d48e95d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Probz and Robin Schulz - Waves (Karaoke Version).mp4", + "title": "Waves" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Calvin Harris Featuring John Newman", + "playlist_title": "Blame", + "found_song": { + "artist": "Calvin Harris Featuring John Newman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f393b4c6-003e-a508-6d7d-8f9cdd5c85d2", + "path": "z://MP4\\KaraokeOnVEVO\\Calvin Harris Featuring John Newman - Blame.mp4", + "title": "Blame" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "James Newton Howard Featuring Jennifer Lawrence", + "playlist_title": "The Hanging Tree", + "found_song": { + "artist": "James Newton Howard Featuring Jennifer Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40293876-aad3-92b1-57d8-71509c5bde6d", + "path": "z://MP4\\Sing King Karaoke\\James Newton Howard Featuring Jennifer Lawrence - The Hanging Tree.mp4", + "title": "The Hanging Tree" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Sam Smith", + "playlist_title": "Stay With Me", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "b11eb09e-0437-5d09-6e4a-1d9929bab6c5", + "path": "z://MP4\\Sing King Karaoke\\Sam Smith - Stay With Me (Karaoke Version).mp4", + "title": "Stay With Me" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Centuries", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "df0d1677-e45a-f707-ae5b-8d121a5e7834", + "path": "z://MP4\\Sing King Karaoke\\Fall Out Boy - Centuries (Karaoke Version).mp4", + "title": "Centuries" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Jeremih Featuring YG", + "playlist_title": "Don't Tell 'Em", + "found_song": { + "artist": "Jeremih Featuring YG", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a7fb93e-f0a9-c17d-88d1-9ae4932ba879", + "path": "z://MP4\\Sing King Karaoke\\Jeremih Featuring YG - Don't Tell 'Em.mp4", + "title": "Don't Tell 'Em" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Iggy Azalea Featuring Rita Ora", + "playlist_title": "Black Widow", + "found_song": { + "artist": "Iggy Azalea Featuring Rita Ora", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aefb08fb-6f3e-8a70-f7fb-f7a5869905ad", + "path": "z://MP4\\Sing King Karaoke\\Iggy Azalea Featuring Rita Ora - Black Widow.mp4", + "title": "Black Widow" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jason Derulo", + "playlist_title": "Trumpets", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "4147073d-ad9a-67b4-e8ba-f8c7b90a5cc3", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Trumpets (Karaoke Version).mp4", + "title": "Trumpets" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Vance Joy", + "playlist_title": "Riptide", + "found_song": { + "artist": "Vance Joy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "844dbd8b-59bb-90cc-3fef-60563d072eed", + "path": "z://MP4\\Sing King Karaoke\\Vance Joy - Riptide (Karaoke Version).mp4", + "title": "Riptide" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sia", + "playlist_title": "Chandelier", + "found_song": { + "artist": "Sia", + "disabled": false, + "favorite": false, + "guid": "a42f7801-81f3-7f66-da39-26fd858014d5", + "path": "z://MP4\\Sing King Karaoke\\Sia - Chandelier.mp4", + "title": "Chandelier" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Fergie", + "playlist_title": "L.A.LOVE (la la)", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "22eb71fb-8304-0c17-77a8-5e598ad246fd", + "path": "z://MP4\\Sing King Karaoke\\Fergie - L.A. LOVE (la la) (Karaoke Version).mp4", + "title": "L.A. LOVE (la la)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Milky Chance", + "playlist_title": "Stolen Dance", + "found_song": { + "artist": "Milky Chance", + "disabled": false, + "favorite": false, + "guid": "3a051b5e-cbc2-f81b-a302-0cb4ff47d983", + "path": "z://MP4\\KtvEntertainment\\Milky Chance - Stolen Dance (Karaoke without Vocal).mp4", + "title": "Stolen Dance" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "MAGIC!", + "playlist_title": "Rude", + "found_song": { + "artist": "MAGIC!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "684cc978-b89f-a373-ec6c-7e3b5661539d", + "path": "z://MP4\\Sing King Karaoke\\MAGIC! - Rude.mp4", + "title": "Rude" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Echosmith", + "playlist_title": "Cool Kids", + "found_song": { + "artist": "Echosmith", + "disabled": false, + "favorite": false, + "guid": "1acb8ac0-3c5b-ce75-faf8-d0119a4f4a84", + "path": "z://MP4\\Sing King Karaoke\\Echosmith - Cool Kids.mp4", + "title": "Cool Kids" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Pentatonix", + "playlist_title": "Mary, Did You Know?", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82cb1af2-b3fc-5ec4-f487-7f70764e4175", + "path": "z://MP4\\Sing King Karaoke\\Pentatonix - Mary Did You Know.mp4", + "title": "Mary Did You Know?" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Eric Church", + "playlist_title": "Talladega", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "224b8435-eb82-ad8a-8d54-4400e2c21a9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talladega - Eric Church.mp4", + "title": "Talladega" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Brad Paisley", + "playlist_title": "Perfect Storm", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "d8dcf577-66e5-9b5e-ea6a-ff73b36314d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect Storm - Brad Paisley.mp4", + "title": "Perfect Storm" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "One Direction", + "playlist_title": "Night Changes", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "99c87e5e-60f4-6083-e4af-5e33c635fed8", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Night Changes (Karaoke Version).mp4", + "title": "Night Changes" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton Featuring Ashley Monroe", + "playlist_title": "Lonely Tonight", + "found_song": { + "artist": "Blake Shelton Featuring Ashley Monroe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11e5b62c-faab-3629-2f31-36f88567dada", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Ashley Monroe - Lonely Tonight.mp4", + "title": "Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Anaconda", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "189a8463-c3f4-6a61-47ae-cc5a21c83c6d", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Anaconda (Karaoke Version).mp4", + "title": "Anaconda" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Make It Rain", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "09894667-d370-a18f-8e78-16da9900ae22", + "path": "z://MP4\\Karaoke Sing Sing\\Ed Sheeran - Make It Rain SING SING KARAOKE.mp4", + "title": "Make It Rain" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Ella Henderson", + "playlist_title": "Ghost", + "found_song": { + "artist": "Ella Henderson", + "disabled": false, + "favorite": false, + "guid": "e3eb72ca-acaa-4f52-194c-d99235fdae43", + "path": "z://MP4\\Sing King Karaoke\\Ella Henderson - Ghost (Karaoke Version).mp4", + "title": "Ghost" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Sun Daze", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35e5435a-fceb-e2b4-3285-823b34d8ee86", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Sun Daze.mp4", + "title": "Sun Daze" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Luke Bryan", + "playlist_title": "I See You", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "d6e09c73-7ef6-27f2-4363-223ad137d879", + "path": "z://MP4\\singsongsmusic\\I See You - Karaoke HD (In the style of Luke Bryan).mp4", + "title": "I See You" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Imagine Dragons", + "playlist_title": "I Bet My Life", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "a1318533-8930-2975-7786-ff69ccda4c0f", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - I Bet My Life (Karaoke Version).mp4", + "title": "I Bet My Life" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Keith Urban", + "playlist_title": "Somewhere In My Car", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c7051d8-fa9b-aa80-3d8a-2664fc6c50e2", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Somewhere In My Car.mp4", + "title": "Somewhere In My Car" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "OneRepublic", + "playlist_title": "I Lived", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": true, + "guid": "68397f59-8665-0b1f-4b26-4aa8848e94dc", + "path": "z://MP4\\Karaoke Sing Sing\\One Republic - I Lived (Karaoke Version).mp4", + "title": "I Lived" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Til It's Gone", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "2b814646-96ea-f888-775b-a3b71017cc3f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til It s Gone - Kenny Chesney.mp4", + "title": "Til It s Gone" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Parmalee", + "playlist_title": "Close Your Eyes", + "found_song": { + "artist": "Parmalee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a6a616f-c8d5-042f-f44a-e9225fdbc557", + "path": "z://MP4\\KaraokeOnVEVO\\Parmalee - Close Your Eyes.mp4", + "title": "Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "One Direction", + "playlist_title": "Steal My Girl", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "ac1d17ca-1ae1-2a57-5efa-50b8512f80f5", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Steal My Girl (Karaoke Version).mp4", + "title": "Steal My Girl" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Try", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "b627772e-af4b-6f45-edc6-eb5db660bd93", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Try (Karaoke Version).mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Thomas Rhett", + "playlist_title": "Make Me Wanna", + "found_song": { + "artist": "Thomas Rhett", + "disabled": false, + "favorite": false, + "guid": "505401d0-8f20-6124-9e54-27a13818f2c5", + "path": "z://MP4\\TheKARAOKEChannel\\Make Me Wanna in the style of Thomas Rhett Karaoke with Lyrics.mp4", + "title": "Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "WALK THE MOON", + "playlist_title": "Shut Up And Dance", + "found_song": { + "artist": "Walk The Moon", + "disabled": false, + "favorite": false, + "guid": "bcb8af66-f62f-e2df-ef10-1e624998a6d7", + "path": "z://MP4\\Sing King Karaoke\\Walk The Moon - Shut Up And Dance (Karaoke Version).mp4", + "title": "Shut Up And Dance" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Lorde", + "playlist_title": "Yellow Flicker Beat", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "0fd52fd6-e4ac-3f61-eb24-a25b7dea0de5", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Yellow Flicker Beat (Karaoke Version).mp4", + "title": "Yellow Flicker Beat" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sam Smith", + "playlist_title": "Have Yourself A Merry Little Christmas", + "found_song": { + "artist": "Sam Smith", + "disabled": false, + "favorite": false, + "guid": "076f16c4-dd02-801d-32c7-f3722cb44972", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have Yourself a Merry Little Christmas - Sam Smith.mp4", + "title": "Have Yourself a Merry Little Christmas" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "J. Cole", + "playlist_title": "No Role Modelz", + "found_song": { + "artist": "J-Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e674283b-9c32-fa2a-33d5-8f3b6ee06197", + "path": "z://MP4\\Sing King Karaoke\\J-Cole - No Role Modelz.mp4", + "title": "No Role Modelz" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Jessie J Featuring 2 Chainz", + "playlist_title": "Burnin' Up", + "found_song": { + "artist": "Jessie J Featuring 2 Chainz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e9a218f-9091-d76c-8e03-39a99fac8136", + "path": "z://MP4\\Sing King Karaoke\\Jessie J Featuring 2 Chainz - Burnin' Up.mp4", + "title": "Burnin' Up" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Charli XCX", + "playlist_title": "Break The Rules", + "found_song": { + "artist": "Charli XCX", + "disabled": false, + "favorite": false, + "guid": "5a4dc2d0-1090-8489-9ce3-cebc7f6e963e", + "path": "z://MP4\\Sing King Karaoke\\Charli XCX - Break The Rules.mp4", + "title": "Break The Rules" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Blank Space", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "d6295ff4-57f2-8e89-d02b-e38d0ce0c7ce", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Blank Space (Karaoke Version).mp4", + "title": "Blank Space" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "94c96330-039e-e950-0296-fb35413a94db", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Shake It Off (Karaoke Version).mp4", + "title": "Shake It Off" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Beyonce", + "playlist_title": "7/11", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9238faa7-5cce-0d96-6be9-d802e407f7f1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - 1+1.mp4", + "title": "1+1" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Clean Bandit Featuring Jess Glynne", + "playlist_title": "Rather Be", + "found_song": { + "artist": "Clean Bandit Featuring Jess Glynne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a7b9c18-11c6-40fb-761c-086d7ccecfd8", + "path": "z://MP4\\Sing King Karaoke\\Clean Bandit Featuring Jess Glynne - Rather Be.mp4", + "title": "Rather Be" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 62, + "playlist_artist": "Maddie & Tae", + "playlist_title": "Girl In A Country Song", + "found_song": { + "artist": "Maddie & Tae", + "disabled": false, + "favorite": false, + "guid": "57e1e493-0b03-6a7e-94d0-7e5a7fdb27a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Girl In A Country Song - Maddie & Tae.mp4", + "title": "Girl In A Country Song" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Ariana Grande", + "playlist_title": "Santa Tell Me", + "found_song": { + "artist": "Ariana Grande", + "disabled": false, + "favorite": false, + "guid": "13d3b934-253a-71d0-f70d-cf517134e12b", + "path": "z://MP4\\Sing King Karaoke\\Ariana Grande - Santa Tell Me (Karaoke Version).mp4", + "title": "Santa Tell Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Taylor Swift", + "playlist_title": "Style", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b218a76-caab-8f88-1c59-92ea2c35d271", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Style (Karaoke Version).mp4", + "title": "Style" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Nico & Vinz", + "playlist_title": "In Your Arms", + "found_song": { + "artist": "Nico And Vinz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e52879fa-4003-e67d-b723-ffbd1d1ef7f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nico And Vinz - In Your Arms.mp4", + "title": "In Your Arms" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Fifth Harmony", + "playlist_title": "Sledgehammer", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "9c040174-7887-8e52-ddbd-829fbbcdd54c", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - Sledgehammer (Karaoke Version).mp4", + "title": "Sledgehammer" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Blake Shelton", + "playlist_title": "Neon Light", + "found_song": { + "artist": "Blake Shelton ft. Ashley Monroe", + "disabled": false, + "favorite": false, + "guid": "5d84566a-bb14-046a-6736-bfb1cfc8a99b", + "path": "z://MP4\\singsongsmusic\\Lonely Tonight - Karaoke HD (In the style of Blake Shelton & Ashley Monroe).mp4", + "title": "Lonely Tonight" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Mark Ronson Featuring Bruno Mars", + "title": "Uptown Funk!", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ariana Grande & The Weeknd", + "title": "Love Me Harder", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Nicki Minaj Featuring Drake, Lil Wayne & Chris Brown", + "title": "Only", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "I LOVE MAKONNEN Featuring Drake", + "title": "Tuesday", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jessie J, Ariana Grande & Nicki Minaj", + "title": "Bang Bang", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rae Sremmurd", + "title": "No Type", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bobby Shmurda", + "title": "Hot Boy", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "O.T. Genasis", + "title": "CoCo", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Iggy Azalea Featuring M0", + "title": "Beg For It", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rich Gang Featuring Young Thug & Rich Homie Quan", + "title": "Lifestyle", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Alesso Featuring Tove Lo", + "title": "Heroes (We Could Be)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Usher Featuring Juicy J", + "title": "I Don't Mind", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Carrie Underwood", + "title": "Something In The Water", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tim McGraw", + "title": "Shotgun Rider", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "DJ Khaled Featuring Chris Brown, August Alsina, Future & Jeremih", + "title": "Hold You Down", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "DeJ Loaf", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Touchin, Lovin", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Chris Brown Featuring Usher & Rick Ross", + "title": "New Flame", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "T.I. Featuring Young Thug", + "title": "About The Money", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Craig Wayne Boyd", + "title": "The Old Rugged Cross", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "David Guetta Featuring Sam Martin", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Rae Sremmurd", + "title": "No Flex Zone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "RaeLynn", + "title": "God Made Girls", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Lee Brice", + "title": "Drinking Class", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "J. Cole", + "title": "Wet Dreamz", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "The Weeknd", + "title": "Often", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Beyonce Featuring Nicki Minaj Or Chimamanda Ngozi Adichie", + "title": "***Flawless", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "August Alsina", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Lillywood & Robin Schulz", + "title": "Prayer In C", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Matt McAndrew", + "title": "Make It Rain", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brett Eldredge", + "title": "Mean To Me", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jason Aldean", + "title": "Just Gettin' Started", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ne-Yo Featuring Juicy J", + "title": "She Knows", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Flo Rida Featuring Sage The Gemini & Lookas", + "title": "G.D.F.R.", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Pitbull Featuring John Ryan", + "title": "Fireball", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Randy Houser", + "title": "Like A Cowboy", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kid Ink Featuring Usher & Tinashe", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The White Buffalo & The Forest Rangers", + "title": "Come Join The Murder", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Darius Rucker", + "title": "Homegrown Honey", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Chris Jamison", + "title": "When I Was Your Man", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 50, + "fuzzy_match_count": 10, + "missing_count": 40, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "2013 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jay Z", + "playlist_title": "Tom Ford", + "found_song": { + "artist": "Jay-Z", + "disabled": false, + "favorite": false, + "guid": "0cabe71d-3fd3-5e55-f7c7-4641d1cb32ac", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-16 - Jay-Z - Tom Ford.mp3", + "title": "Tom Ford" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sage The Gemini", + "playlist_title": "Red Nose", + "found_song": { + "artist": "Sage The Gemini", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcf67008-1ab8-3cb8-b030-ec8ea361224e", + "path": "z://MP4\\KaraokeOnVEVO\\Sage The Gemini - Red Nose.mp4", + "title": "Red Nose" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Jay Z Featuring Justin Timberlake", + "playlist_title": "Holy Grail", + "found_song": { + "artist": "Jay Z Ft. Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "c9445519-aa53-a527-b8e9-aa079ed21115", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF330\\Jay Z Ft. Justin Timberlake - Holy Grail - SF330 - 06.mp3", + "title": "Holy Grail" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Confident", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "title": "Blurred Lines", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Chris Brown Featuring Nicki Minaj", + "title": "Love More", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "B.o.B Featuring 2 Chainz", + "title": "HeadBand", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Drake", + "title": "The Language", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kanye West", + "title": "Bound 2", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Big Sean Featuring Lil Wayne & Jhene Aiko", + "title": "Beware", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Future", + "title": "Honest", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 2, + "missing_count": 16, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2013 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Fray", + "playlist_title": "Love Don't Die", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "37811064-765b-76a8-8b4e-4b0652b0d6dd", + "path": "z://CDG\\Various\\The Fray - Love Don't Die.mp3", + "title": "Love Don't Die" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lorde", + "playlist_title": "Tennis Court", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7465e20b-513e-5079-3152-e7f8be05a3e0", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Tennis Court.mp4", + "title": "Tennis Court" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "dc91acac-7fc3-8c74-edc5-3d1b13901558", + "path": "z://MP4\\singsongsmusic\\Come a Little Closer - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Come a Little Closer" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ed Sheeran", + "playlist_title": "I See Fire", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f00d40a1-dea9-1742-4463-5329315afe1e", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - I See Fire.mp4", + "title": "I See Fire" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 25, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Afraid", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78568769-9350-4321-372b-09a79b3015a8", + "path": "z://MP4\\sing2karaoke\\The Neighbourhood - Stargazing.mp4", + "title": "Stargazing" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Fitz And The Tantrums", + "title": "Out Of My League", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Will Champlin", + "title": "Carry On", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Goo Goo Dolls", + "title": "Come To Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Zach Sobiech", + "title": "Clouds", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "John Mayer Featuring Katy Perry", + "title": "Who You Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Pearl Jam", + "title": "Sirens", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "James Wolpert", + "title": "With Or Without You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Panic! At The Disco Featuring Lolo", + "title": "Miss Jackson", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 1, + "missing_count": 8, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2013 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Pitbull Featuring Ke$ha", + "playlist_title": "Timber", + "found_song": { + "artist": "Pitbull Ft Ke$ha", + "disabled": false, + "favorite": false, + "guid": "1b86988a-1c95-fa3f-a173-4ca2f8c7509d", + "path": "z://CDG\\Mr Entertainer\\MRH112\\Pitbull Ft Ke$ha - Timber.mp3", + "title": "Timber" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Lady Gaga Featuring R. Kelly", + "playlist_title": "Do What U Want", + "found_song": { + "artist": "Lady Gaga Ft R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6ac0e1c7-2351-4550-66dd-d454940144c8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF334\\Lady Gaga Ft R. Kelly - Do What U Want - SF334 - 04.mp3", + "title": "Do What U Want" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Zedd Featuring Hayley Williams", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 2, + "missing_count": 3, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2013 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Hunter Hayes Featuring Jason Mraz", + "playlist_title": "Everybody's Got Somebody But Me", + "found_song": { + "artist": "Hunter Hayes Featuring Jason Mraz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef0729f-9fab-7c90-3cf3-b791ca64e96b", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes Featuring Jason Mraz - Everybodys Got Somebody But Me.mp4", + "title": "Everybody's Got Somebody But Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b3195824-889c-f526-d404-1de6ef07685d", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Girl.mp4", + "title": "Southern Girl" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eric Church", + "playlist_title": "The Outsiders", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c0b6326-f05e-88d1-3c0d-bc5dee871bf6", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Church - The Outsiders.mp4", + "title": "The Outsiders" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Keith Urban And Miranda Lambert", + "title": "We Were Us", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Band Perry", + "title": "Don't Let Me Be Lonely", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jason Aldean", + "title": "When She Says Baby", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Eric Paslay", + "title": "Friday Night", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Darius Rucker", + "title": "Radio", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jon Pardi", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lady Antebellum", + "title": "Compass", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Scotty McCreery", + "title": "See You Tonight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Danielle Bradbery", + "title": "The Heart Of Dixie", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dierks Bentley", + "title": "I Hold On", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dan + Shay", + "title": "19 You + Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 1, + "missing_count": 13, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2013 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "OneRepublic", + "playlist_title": "Counting Stars", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "e613f848-5acc-8e28-62c5-f2bf937395d1", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Counting Stars (Karaoke Version).mp4", + "title": "Counting Stars" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lorde", + "playlist_title": "Royals", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "b952163a-65a7-e994-80c4-bd08fc42a4a4", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Royals.mp4", + "title": "Royals" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Avicii", + "playlist_title": "Wake Me Up!", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "61d5aa27-8c62-35bc-d379-d1e308b7430e", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Wake Me Up (Karaoke Version).mp4", + "title": "Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Wrecking Ball", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "d83cfc53-74df-c2b4-b236-e64a2cbf9ee7", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Wrecking Ball (Karaoke Version).mp4", + "title": "Wrecking Ball" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Passenger", + "playlist_title": "Let Her Go", + "found_song": { + "artist": "Passenger", + "disabled": false, + "favorite": false, + "guid": "f87e92ea-d6cd-0344-d6a1-a2b26a4102a7", + "path": "z://MP4\\Sing King Karaoke\\Passenger - Let Her Go (Karaoke Version).mp4", + "title": "Let Her Go" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "One Direction", + "playlist_title": "Story Of My Life", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "8fe50ad2-4165-f02a-666a-1bf7c4be9545", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Story Of My Life (Karaoke Version).mp4", + "title": "Story Of My Life" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Drake Featuring Majid Jordan", + "playlist_title": "Hold On, We're Going Home", + "found_song": { + "artist": "Drake Featuring Majid Jordan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e17fdcb-6dee-ebc3-c8af-31d2b19bd7ab", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Majid Jordan - Hold On, Were Going Home.mp4", + "title": "Hold On, We're Going Home" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Katy Perry", + "playlist_title": "Roar", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "475ca9cc-2109-9b35-eadd-7d60d74bc1bc", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Roar (Karaoke Version).mp4", + "title": "Roar" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Burn", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "8d9616e1-bf88-729c-2584-d98051a2efd7", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Burn (Karaoke Version).mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Neighbourhood", + "playlist_title": "Sweater Weather", + "found_song": { + "artist": "The Neighbourhood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2e20416-a6cb-e104-38d1-7b1149c0a33d", + "path": "z://MP4\\Sing King Karaoke\\The Neighbourhood - Sweater Weather (Karaoke Version).mp4", + "title": "Sweater Weather" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Unconditionally", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95c11256-233e-fdb0-3d1b-597d8a4e6134", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Unconditionally.mp4", + "title": "Unconditionally" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lady Gaga", + "playlist_title": "Applause", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "15f99af6-c624-a2d0-f8d2-100327579e3e", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Applause (Karaoke Version).mp4", + "title": "Applause" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Katy Perry Featuring Juicy J", + "playlist_title": "Dark Horse", + "found_song": { + "artist": "Katy Perry Featuring Juicy J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dea16f6-7665-615c-9d14-b9329abaa470", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry Featuring Juicy J - Dark Horse.mp4", + "title": "Dark Horse" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lorde", + "playlist_title": "Team", + "found_song": { + "artist": "Lorde", + "disabled": false, + "favorite": false, + "guid": "48976d88-cee9-85fc-8f9b-dba0b3c4893f", + "path": "z://MP4\\Sing King Karaoke\\Lorde - Team (Karaoke Version).mp4", + "title": "Team" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bastille", + "playlist_title": "Pompeii", + "found_song": { + "artist": "Bastille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33cd927f-e894-0891-07ed-65beaf7431fc", + "path": "z://MP4\\Sing King Karaoke\\Bastille - Pompeii.mp4", + "title": "Pompeii" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Jason Derulo", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd256ac7-e192-b4e8-8029-576e8493023f", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Stay", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2addc06d-13ad-cd16-0109-d1fd6f1fb297", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Stay.mp4", + "title": "Stay" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Brave", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "caa0c3a8-b02d-9c1d-2304-32142a03284c", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Brave (Karaoke Version).mp4", + "title": "Brave" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Eminem", + "playlist_title": "Rap God", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ce4ba76c-8700-619d-df1e-8400a0798ba9", + "path": "z://MP4\\King of Karaoke\\Eminem - Rap God - King of Karaoke.mp4", + "title": "Rap God" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "American Authors", + "playlist_title": "Best Day Of My Life", + "found_song": { + "artist": "American Authors", + "disabled": false, + "favorite": false, + "guid": "767c4631-e952-8acf-8ecc-e947488ce790", + "path": "z://MP4\\Sing King Karaoke\\American Authors - Best Day Of My Life (Karaoke Version).mp4", + "title": "Best Day Of My Life" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Drink A Beer", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "03601be4-91b2-f06c-c78b-9eacce738b2d", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - Drink A Beer Karaoke Lyrics (2).mp4", + "title": "Drink A Beer" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Nail", + "playlist_title": "Whatever She's Got", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85b83d81-0e6f-702d-cf8c-afe891e2f529", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Whatever Shes Got.mp4", + "title": "Whatever She's Got" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Capital Cities", + "playlist_title": "Safe And Sound", + "found_song": { + "artist": "Capital Cities", + "disabled": false, + "favorite": false, + "guid": "f496308e-bc54-1692-acd8-c2d84876812b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Safe And Sound - Capital Cities.mp4", + "title": "Safe And Sound" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cassadee Pope", + "playlist_title": "Wasting All These Tears", + "found_song": { + "artist": "Cassadee Pope", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc243347-3820-e9bb-99b5-c770f15ca5e1", + "path": "z://MP4\\KaraokeOnVEVO\\Cassadee Pope - Wasting All These Tears.mp4", + "title": "Wasting All These Tears" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Cole Swindell", + "playlist_title": "Chillin' It", + "found_song": { + "artist": "Cole Swindell", + "disabled": false, + "favorite": false, + "guid": "c8834392-6e55-e2bf-4dfa-9a9b28398eb4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chillin It - Cole Swindell.mp4", + "title": "Chillin It" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Selena Gomez", + "playlist_title": "Slow Down", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "3c3e7430-a8c3-2c0d-ab45-0ccd935b1520", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Slow Down (Karaoke Version).mp4", + "title": "Slow Down" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Pentatonix", + "playlist_title": "Little Drummer Boy", + "found_song": { + "artist": "Pentatonix", + "disabled": false, + "favorite": false, + "guid": "4938c900-9ef0-3af2-a628-8fe23397b25d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Drummer Boy - Pentatonix.mp4", + "title": "Little Drummer Boy" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "John Legend", + "playlist_title": "All Of Me", + "found_song": { + "artist": "John Legend", + "disabled": false, + "favorite": false, + "guid": "11d82a07-39d3-26f7-a0b4-119c8147f045", + "path": "z://MP4\\Sing King Karaoke\\John Legend - All of Me (Karaoke Version).mp4", + "title": "All of Me" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Luke Bryan", + "playlist_title": "That's My Kind Of Night", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "05c8406e-cebf-bb11-4e09-661c42c871c0", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - That's My Kind Of Night (Karaoke without Vocal).mp4", + "title": "That's My Kind Of Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Idina Menzel", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Idina Menzel", + "disabled": false, + "favorite": false, + "guid": "56334839-05ed-7454-0b90-c53a93a24c12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let It Go - Idina Menzel.mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Demi Lovato", + "playlist_title": "Let It Go", + "found_song": { + "artist": "Demi Lovato", + "disabled": false, + "favorite": false, + "guid": "7b157570-ca27-c77e-5ad3-807e270c40fa", + "path": "z://MP4\\Sing King Karaoke\\Demi Lovato - Let It Go (Karaoke Version).mp4", + "title": "Let It Go" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Justin Timberlake", + "playlist_title": "TKO", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "dab946a4-0bb7-0d9e-197b-9b1af7b83116", + "path": "z://CDG\\Mr Entertainer\\MRH111\\MRH111-11 - Justin Timberlake - TKO.mp3", + "title": "TKO" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Avicii", + "playlist_title": "Hey Brother", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "38af0fa3-dc87-49dd-9932-d3162451a8c6", + "path": "z://MP4\\Sing King Karaoke\\Avicii - Hey Brother (Karaoke Version).mp4", + "title": "Hey Brother" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Zendaya", + "playlist_title": "Replay", + "found_song": { + "artist": "Zendaya", + "disabled": false, + "favorite": false, + "guid": "f6f3f2e7-3e70-4b94-35c5-7e4c21a29e08", + "path": "z://MP4\\Sing King Karaoke\\Zendaya - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "John Newman", + "playlist_title": "Love Me Again", + "found_song": { + "artist": "John Newman", + "disabled": false, + "favorite": false, + "guid": "eb3bfb04-cf4a-8c1c-fabe-401813d0a6ed", + "path": "z://MP4\\Sing King Karaoke\\John Newman - Love Me Again (Karaoke Version).mp4", + "title": "Love Me Again" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Blake Shelton", + "playlist_title": "Mine Would Be You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "186326c6-4050-b097-3a70-1970cae267dc", + "path": "z://CDG\\Various\\Blake Shelton - Mine Would Be You.mp3", + "title": "Mine Would Be You" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lea Michele", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Lea Michele", + "disabled": false, + "favorite": false, + "guid": "b4f39356-c89a-127e-3dc4-e986b4966f10", + "path": "z://MP4\\Sing King Karaoke\\Lea Michele - Cannonball (Karaoke Version).mp4", + "title": "Cannonball" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Britney Spears", + "playlist_title": "Perfume", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "a157836c-15f8-b100-11a4-1c1ec599cb3d", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Perfume (Karaoke Version).mp4", + "title": "Perfume" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Eminem", + "playlist_title": "Berzerk", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "ca8e3995-0685-a45d-54ac-26425e6523ab", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Berzerk (Clean) (Karaoke Version) (2).mp4", + "title": "Berzerk" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Hunter Hayes Featuring Jason Mraz", + "playlist_title": "Everybody's Got Somebody But Me", + "found_song": { + "artist": "Hunter Hayes Featuring Jason Mraz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ef0729f-9fab-7c90-3cf3-b791ca64e96b", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes Featuring Jason Mraz - Everybodys Got Somebody But Me.mp4", + "title": "Everybody's Got Somebody But Me" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Underneath The Tree", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "9b906a65-3697-a1b3-d9fd-bf1d1b504aa3", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Underneath The Tree (Karaoke Version).mp4", + "title": "Underneath The Tree" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Alone Together", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "50973a9c-d439-8386-73de-02a0593d7075", + "path": "z://MP4\\TheKARAOKEChannel\\Alone Together in the Style of Fall Out Boy with lyrics (no lead vocal).mp4", + "title": "Alone Together" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Justin Bieber", + "playlist_title": "All That Matters", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "fb4e9b2f-3940-a799-b134-4ecbfcdc68a4", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - All That Matters (Karaoke Version).mp4", + "title": "All That Matters" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Aloe Blacc", + "playlist_title": "The Man", + "found_song": { + "artist": "Aloe Blacc", + "disabled": false, + "favorite": false, + "guid": "b57f2ee6-ff91-84dc-66b2-a8ee607c49cf", + "path": "z://MP4\\Sing King Karaoke\\Aloe Blacc - The Man (Karaoke Version).mp4", + "title": "The Man" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Frankie Ballard", + "playlist_title": "Helluva Life", + "found_song": { + "artist": "Frankie Ballard", + "disabled": false, + "favorite": false, + "guid": "1d4341bb-8c8a-2399-5d5c-9451021903bf", + "path": "z://MP4\\KaraokeOnVEVO\\Frankie Ballard - Helluva Life (Karaoke).mp4", + "title": "Helluva Life" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Arctic Monkeys", + "playlist_title": "Do I Wanna Know?", + "found_song": { + "artist": "Arctic Monkeys", + "disabled": false, + "favorite": false, + "guid": "83fcf990-c163-1897-15c8-334cc4d46303", + "path": "z://MP4\\Sing King Karaoke\\Arctic Monkeys - Do I Wanna Know (Karaoke Version).mp4", + "title": "Do I Wanna Know" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ylvis", + "playlist_title": "The Fox", + "found_song": { + "artist": "Ylvis", + "disabled": false, + "favorite": false, + "guid": "1adc96dd-f351-3632-3d76-191986cf9ac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Fox - Ylvis.mp4", + "title": "The Fox" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Rihanna", + "playlist_title": "What Now", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "bcb54a88-9046-2923-e3c8-a9c45ebfe3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Now - Rihanna.mp4", + "title": "What Now" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "One Direction", + "playlist_title": "Best Song Ever", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "94fc2667-cc35-d3da-6be9-0538dfeb2c79", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Best Song Ever (Karaoke Version).mp4", + "title": "Best Song Ever" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Eminem", + "playlist_title": "Survival", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "86dfcb4f-eb1b-694d-35a1-0a9215f0f9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Survival (Karaoke).mp4", + "title": "Survival" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Pitbull Featuring Ke$ha", + "playlist_title": "Timber", + "found_song": { + "artist": "Pitbull Ft Ke$ha", + "disabled": false, + "favorite": false, + "guid": "1b86988a-1c95-fa3f-a173-4ca2f8c7509d", + "path": "z://CDG\\Mr Entertainer\\MRH112\\Pitbull Ft Ke$ha - Timber.mp3", + "title": "Timber" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Lady Gaga Featuring R. Kelly", + "playlist_title": "Do What U Want", + "found_song": { + "artist": "Lady Gaga Ft R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6ac0e1c7-2351-4550-66dd-d454940144c8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF334\\Lady Gaga Ft R. Kelly - Do What U Want - SF334 - 04.mp3", + "title": "Do What U Want" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Jay Z Featuring Justin Timberlake", + "playlist_title": "Holy Grail", + "found_song": { + "artist": "Jay Z Ft. Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "c9445519-aa53-a527-b8e9-aa079ed21115", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF330\\Jay Z Ft. Justin Timberlake - Holy Grail - SF330 - 06.mp3", + "title": "Holy Grail" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Justin Bieber Featuring Chance The Rapper", + "playlist_title": "Confident", + "found_song": { + "artist": "Justin Bieber Featuring Chance The Rapper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac23fb8e-3d05-5db6-6bc6-5cff19d6d9cb", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Chance The Rapper - Holy.mp4", + "title": "Holy" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Sweet Annie", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "05e4bd90-db6f-01bf-b00e-05d3cabcb0cf", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Sweet Annie (Karaoke).mp4", + "title": "Sweet Annie" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Lana Del Rey & Cedric Gervais", + "playlist_title": "Summertime Sadness", + "found_song": { + "artist": "Lana Del Rey vs Cedric Gervais", + "disabled": false, + "favorite": false, + "guid": "4582e68f-8326-86aa-ffb8-b5ba9e987e94", + "path": "z://MP4\\Sing King Karaoke\\Lana Del Rey vs Cedric Gervais - Summertime Sadness (Karaoke Version).mp4", + "title": "Summertime Sadness" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Childish Gambino", + "playlist_title": "V. 3005", + "found_song": { + "artist": "Childish Gambino", + "disabled": false, + "favorite": false, + "guid": "71dbca8a-2d8d-1bc3-e214-b1c926111f68", + "path": "z://MP4\\KtvEntertainment\\Childish Gambino - 3005 Karaoke Lyrics.mp4", + "title": "3005" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Eminem Featuring Rihanna", + "title": "The Monster", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "A Great Big World & Christina Aguilera", + "title": "Say Something", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Macklemore & Ryan Lewis Featuring ScHoolboy Q & Hollis", + "title": "White Walls", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mike WiLL Made-It Featuring Miley Cyrus, Wiz Khalifa & Juicy J", + "title": "23", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Zedd Featuring Hayley Williams", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "YG Featuring Jeezy & Rich Homie Quan", + "title": "My Hitta", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Robin Thicke Featuring T.I. + Pharrell", + "title": "Blurred Lines", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Chris Brown Featuring Nicki Minaj", + "title": "Love More", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sevyn Streeter Featuring Chris Brown", + "title": "It Won't Stop", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Parmalee", + "title": "Carolina", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kid Ink Featuring Chris Brown", + "title": "Show Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Drake Featuring 2 Chainz & Big Sean", + "title": "All Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Eli Young Band", + "title": "Drunk Last Night", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Sage The Gemini Featuring IamSu!", + "title": "Gas Pedal", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Rebecca Black & Dave Days", + "title": "Saturday", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Martin Garrix", + "title": "Animals", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Keith Urban And Miranda Lambert", + "title": "We Were Us", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Band Perry", + "title": "Don't Let Me Be Lonely", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jason Aldean", + "title": "When She Says Baby", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Eric Paslay", + "title": "Friday Night", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "August Alsina Featuring Trinidad James", + "title": "I Luv This Sh*t", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Tessanne Chin", + "title": "Bridge Over Troubled Water", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Darius Rucker", + "title": "Radio", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Joe Nichols", + "title": "Sunny And 75", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "B.o.B Featuring 2 Chainz", + "title": "HeadBand", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Drake", + "title": "The Language", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jon Pardi", + "title": "Up All Night", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Lady Antebellum", + "title": "Compass", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Kanye West", + "title": "Bound 2", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Future", + "title": "Honest", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "T-Pain Featuring B.o.B", + "title": "Up Down (Do This All Day)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Scotty McCreery", + "title": "See You Tonight", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jacquie Lee", + "title": "Angel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "R. Kelly Featuring 2 Chainz", + "title": "My Story", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Juicy J Featuring Wale & Trey Songz", + "title": "Bounce It", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Lupe Fiasco Featuring Ed Sheeran", + "title": "Old School Love", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Danielle Bradbery", + "title": "The Heart Of Dixie", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Drake Featuring Jay Z", + "title": "Pound Cake / Paris Morton Music 2", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ariana Grande Featuring Big Sean", + "title": "Right There", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 7, + "missing_count": 39, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2012 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Macklemore & Ryan Lewis Featuring Wanz", + "playlist_title": "Thrift Shop", + "found_song": { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f8c3823-5d64-7b9f-987f-e87e4b1b142f", + "path": "z://MP4\\Sing King Karaoke\\Macklemore & Ryan Lewis Featuring Wanz - Thrift Shop.mp4", + "title": "Thrift Shop" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Alicia Keys Featuring Nicki Minaj", + "title": "Girl On Fire", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "French Montana Featuring Rick Ross, Drake, Lil Wayne", + "title": "Pop That", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "2 Chainz Featuring Kanye West", + "title": "Birthday Song", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kanye West, Big Sean, Pusha T, 2 Chainz", + "title": "Mercy", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "2 Chainz Featuring Drake", + "title": "No Lie", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kendrick Lamar Featuring Drake", + "title": "Poetic Justice", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2012 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "fun.", + "playlist_title": "Carry On", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "82fe920e-86df-5765-9667-681ccca2efcd", + "path": "z://MP4\\KtvEntertainment\\Fun - Carry On (Karaoke without Vocal).mp4", + "title": "Carry On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Mountain Sound", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "5d25f1d3-9d70-84c1-0ca5-047b69d30b30", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Mountain Sound (Karaoke Version).mp4", + "title": "Mountain Sound" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Demons", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "b2776bdf-94cf-485a-2d30-5e701bf25de2", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Demons (Karaoke Version).mp4", + "title": "Demons" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Lumineers", + "playlist_title": "Flowers In Your Hair", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13e77c93-a65f-401c-1d01-255a56fc7a3b", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Flowers In Your Hair.mp4", + "title": "Flowers In Your Hair" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Imagine Dragons", + "playlist_title": "On Top Of The World", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "5c49e1f8-a89a-dee4-88f4-e0a7cb3bb1a5", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - On Top Of The World (Karaoke Version).mp4", + "title": "On Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Gone, Gone, Gone", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "30682282-2d72-cc83-fc80-16caf97be392", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Gone Gone Gone Karaoke Lyrics.mp4", + "title": "Gone Gone Gone" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Lumineers", + "playlist_title": "Slow It Down", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "5aeb2093-8a76-6e29-495e-3cbca514cf7e", + "path": "z://MP4\\singsongsmusic\\Slow it Down - Karaoke HD (In the style of The Lumineers).mp4", + "title": "Slow it Down" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Ed Sheeran", + "playlist_title": "Give Me Love", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "eca5239c-2e07-ae99-2f14-d6a93a3d056d", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - Give Me Love (Karaoke Version).mp4", + "title": "Give Me Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "The Black Keys", + "playlist_title": "Little Black Submarines", + "found_song": { + "artist": "Black Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ba586-f058-c250-ab83-5e504592148f", + "path": "z://CDG\\SBI\\SBI-02\\SBI25976 - Black Keys - Little Black Submarines.mp3", + "title": "Little Black Submarines" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mumford & Sons", + "title": "Babel", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Atlas Genius", + "title": "Trojans", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Three Days Grace", + "title": "Chalk Outline", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2012 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Justin Bieber Featuring Nicki Minaj", + "playlist_title": "Beauty And A Beat", + "found_song": { + "artist": "Justin Bieber Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc092784-bead-c9c9-fb59-3abc4bd16106", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Nicki Minaj - Beauty And A Beat.mp4", + "title": "Beauty And A Beat" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Script Featuring will.i.am", + "playlist_title": "Hall Of Fame", + "found_song": { + "artist": "The Script Featuring will.i.am", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "185d71e8-aabd-ad8b-eb93-4bcc47e5f164", + "path": "z://MP4\\Sing King Karaoke\\The Script Featuring will.i.am - Hall Of Fame.mp4", + "title": "Hall Of Fame" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 13, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 14, + "artist": "Swedish House Mafia Featuring John Martin", + "title": "Don't You Worry Child", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Pitbull Featuring TJR", + "title": "Don't Stop The Party", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 2, + "missing_count": 2, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2012 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Blown Away", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "e26d8f42-acc8-c8e9-9985-ca1569bdaa63", + "path": "z://MP4\\KaraokeOnVEVO\\Carrie Underwood - Blown Away (Karaoke).mp4", + "title": "Blown Away" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Lee Brice", + "playlist_title": "Hard To Love", + "found_song": { + "artist": "Brice, Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "111218e0-f57b-585e-7899-94124086260c", + "path": "z://CDG\\SBI\\SBI-03\\SB25837 - Lee Brice - Hard To Love.mp3", + "title": "Hard To Love" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "The Band Perry", + "title": "Better Dig Two", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Gary Allan", + "title": "Every Storm (Runs Out Of Rain)", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Eric Church", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dierks Bentley", + "title": "Tip It On Back", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 4, + "missing_count": 10, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2012 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bruno Mars", + "playlist_title": "Locked Out Of Heaven", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "3f6f0ef1-5844-a8e2-cc32-da8fdddb192f", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Locked Out Of Heaven (Karaoke Version).mp4", + "title": "Locked Out Of Heaven" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Diamonds", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "eef340f9-51e2-d823-5090-e3b36736adad", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Diamonds (Karaoke Version).mp4", + "title": "Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Lumineers", + "playlist_title": "Ho Hey", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "8099e966-bdb7-6054-d7ac-8014335c7437", + "path": "z://MP4\\Sing King Karaoke\\The Lumineers - Ho Hey (Karaoke Version).mp4", + "title": "Ho Hey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "Die Young", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "guid": "82d3009f-8124-2799-7189-ca806493d529", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - Die Young.mp4", + "title": "Die Young" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Maroon 5", + "playlist_title": "One More Night", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "e03acd47-d6fe-024b-0ed1-17150f4db242", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - One More Night (Karaoke Version).mp4", + "title": "One More Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "I Cry", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "62db8bb7-b49b-d574-d5b7-c9af7a07dd62", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF320\\Flo Rida - I Cry - SF320 - 02.mp3", + "title": "I Cry" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Justin Bieber Featuring Nicki Minaj", + "playlist_title": "Beauty And A Beat", + "found_song": { + "artist": "Justin Bieber Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dc092784-bead-c9c9-fb59-3abc4bd16106", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Nicki Minaj - Beauty And A Beat.mp4", + "title": "Beauty And A Beat" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phillip Phillips", + "playlist_title": "Home", + "found_song": { + "artist": "Phillip Phillips", + "disabled": false, + "favorite": false, + "guid": "9e138222-3310-86de-1898-f548c25759f1", + "path": "z://MP4\\KtvEntertainment\\Phillip Phillips - Home (Karaoke without Vocal).mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "fun.", + "playlist_title": "Some Nights", + "found_song": { + "artist": "Fun", + "disabled": false, + "favorite": false, + "guid": "8382ea89-800f-ff9e-39db-bc387ee7afdd", + "path": "z://MP4\\KtvEntertainment\\Fun - Some Nights (Karaoke without Vocal).mp4", + "title": "Some Nights" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ne-Yo", + "playlist_title": "Let Me Love You (Until You Learn To Love Yourself)", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "b447feda-f5be-e7b7-7653-bac0b800f1c4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Let Me Love You (Until You Learn to Love Yourself) (Karaoke Version).mp4", + "title": "Let Me Love You (Until You Learn to Love Yourself)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "P!nk", + "playlist_title": "Try", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "65bb035b-812f-f981-8401-57da4e75870c", + "path": "z://MP4\\KaraFun Karaoke\\Try - Pink Karaoke Version KaraFun.mp4", + "title": "Try" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ed Sheeran", + "playlist_title": "The A Team", + "found_song": { + "artist": "Ed Sheeran", + "disabled": false, + "favorite": false, + "guid": "bb813df2-89b3-bd74-09d5-22e0058d8ac8", + "path": "z://MP4\\Sing King Karaoke\\Ed Sheeran - The A Team (Karaoke Version).mp4", + "title": "The A Team" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "PSY", + "playlist_title": "Gangnam Style", + "found_song": { + "artist": "PSY", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2a8ca1-50f5-17eb-8a9d-a752d85e186a", + "path": "z://MP4\\KaraokeOnVEVO\\PSY - Gangnam Style.mp4", + "title": "Gangnam Style" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Imagine Dragons", + "playlist_title": "It's Time", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "guid": "3eaf1692-82d0-98de-6a65-0727f136056c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Time - Imagine Dragons.mp4", + "title": "It s Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Florida Georgia Line", + "playlist_title": "Cruise", + "found_song": { + "artist": "Florida Georgia Line", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4ef0a1de-27cf-7295-0f19-3d25ba9bad36", + "path": "z://MP4\\KaraokeOnVEVO\\Florida Georgia Line - Cruise.mp4", + "title": "Cruise" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Miguel", + "playlist_title": "Adorn", + "found_song": { + "artist": "Miguel", + "disabled": false, + "favorite": false, + "guid": "b243810f-3d55-bc71-ddee-9c55383fa5bb", + "path": "z://MP4\\KaraFun Karaoke\\Adorn - Miguel Karaoke Version KaraFun.mp4", + "title": "Adorn" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alex Clare", + "playlist_title": "Too Close", + "found_song": { + "artist": "Alex Clare", + "disabled": false, + "favorite": false, + "guid": "2fede9ed-f5c8-e20c-48ec-64fafbb97b50", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Too Close - Alex Clare.mp4", + "title": "Too Close" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mariah Carey", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f5c31fab-5c08-250e-2dc1-d730a6bba631", + "path": "z://MP4\\Sing King Karaoke\\Mariah Carey - All I Want For Christmas Is You (Karaoke Version).mp4", + "title": "All I Want For Christmas Is You" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Va Va Voom", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d1eed05-7f65-cf19-f95c-a58a7b4d3411", + "path": "z://MP4\\KaraokeOnVEVO\\Nicki Minaj - Va Va Voom.mp4", + "title": "Va Va Voom" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Justin Bieber Featuring Big Sean", + "playlist_title": "As Long As You Love Me", + "found_song": { + "artist": "Justin Bieber Featuring Big Sean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac723d37-c1a1-6a17-4b79-4ce6d583f914", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber Featuring Big Sean - As Long As You Love Me.mp4", + "title": "As Long As You Love Me" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Wake Me Up", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "705fa6d8-1880-71e3-6875-b69b4e0c87e3", + "path": "z://MP4\\Sing King Karaoke\\Chris Brown - Don t Wake Me Up (Karaoke Version).mp4", + "title": "Don t Wake Me Up" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Of Monsters And Men", + "playlist_title": "Little Talks", + "found_song": { + "artist": "Of Monsters And Men", + "disabled": false, + "favorite": false, + "guid": "54dda2ab-2439-f2fc-deda-0e385c3916a0", + "path": "z://MP4\\Sing King Karaoke\\Of Monsters And Men - Little Talks (Karaoke Version).mp4", + "title": "Little Talks" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Frank Ocean", + "playlist_title": "Thinkin Bout You", + "found_song": { + "artist": "Frank Ocean", + "disabled": false, + "favorite": false, + "guid": "919c493c-c5e7-3cdd-34f4-366499bdf7da", + "path": "z://MP4\\Sing King Karaoke\\Frank Ocean - Thinkin Bout You (Karaoke Version).mp4", + "title": "Thinkin Bout You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Wanted", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "guid": "727d825c-d7ac-a234-c217-255789fd4049", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wanted - Hunter Hayes.mp4", + "title": "Wanted" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Script Featuring will.i.am", + "playlist_title": "Hall Of Fame", + "found_song": { + "artist": "The Script Featuring will.i.am", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "185d71e8-aabd-ad8b-eb93-4bcc47e5f164", + "path": "z://MP4\\Sing King Karaoke\\The Script Featuring will.i.am - Hall Of Fame.mp4", + "title": "Hall Of Fame" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "2 Chainz", + "playlist_title": "I'm Different", + "found_song": { + "artist": "2 Chainz", + "disabled": false, + "favorite": false, + "guid": "da2524b0-d69a-35dd-bca5-9ceedb93f582", + "path": "z://MP4\\KaraokeOnVEVO\\2 Chainz - I’m Different (Karaoke).mp4", + "title": "I’m Different" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Lights", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "guid": "b02900ba-259f-2b46-4b8b-b3e18c0bea92", + "path": "z://MP4\\Sing King Karaoke\\Ellie Goulding - Lights (Karaoke Version).mp4", + "title": "Lights" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "P!nk", + "playlist_title": "Blow Me (One Last Kiss)", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01062027-80b0-9e8e-3b4d-8ae931557032", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Blow Me (One Last Kiss.mp4", + "title": "Blow Me (One Last Kiss)" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Carly Rae Jepsen", + "playlist_title": "Call Me Maybe", + "found_song": { + "artist": "Carly Rae Jepsen", + "disabled": false, + "favorite": false, + "guid": "5822149a-b88d-3786-04c8-fb1f9ba39e08", + "path": "z://MP4\\Sing King Karaoke\\Carly Rae Jepsen - Call Me Maybe (Karaoke Version).mp4", + "title": "Call Me Maybe" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "One Direction", + "playlist_title": "Little Things", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "25167bef-253d-009a-d86a-b773d1b79a99", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Little Things (Karaoke Version).mp4", + "title": "Little Things" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Ellie Goulding", + "playlist_title": "Anything Could Happen", + "found_song": { + "artist": "Ellie Goulding", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f5d14a1-48ee-f66b-b98a-0a023f02e340", + "path": "z://MP4\\KaraokeOnVEVO\\Ellie Goulding - Anything Could Happen.mp4", + "title": "Anything Could Happen" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Catch My Breath", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "29c31809-003d-da87-8133-0e879d51171e", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Catch My Breath (Karaoke Version).mp4", + "title": "Catch My Breath" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Imagine Dragons", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Imagine Dragons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68b100e6-ada5-ca4c-1da5-89abce4c75da", + "path": "z://MP4\\Sing King Karaoke\\Imagine Dragons - Radioactive.mp4", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Maroon 5", + "playlist_title": "Daylight", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "12d6183b-ae99-e725-9b80-81743f4da88f", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Daylight (Karaoke Version).mp4", + "title": "Daylight" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Luke Bryan", + "playlist_title": "Kiss Tomorrow Goodbye", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bec49256-225d-c392-b3f4-5982d564d366", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Kiss Tomorrow Goodbye.mp4", + "title": "Kiss Tomorrow Goodbye" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "The Weeknd", + "playlist_title": "Wicked Games", + "found_song": { + "artist": "The Weeknd", + "disabled": false, + "favorite": false, + "guid": "1971fb49-ffd1-e50b-396e-9cc67ffd81f2", + "path": "z://MP4\\Sing King Karaoke\\The Weeknd - Wicked Games (Karaoke Version).mp4", + "title": "Wicked Games" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Muse", + "playlist_title": "Madness", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8daa20-799b-16df-17e9-ff08b7271eec", + "path": "z://CDG\\SBI\\SBI-03\\SB25931 - Muse - Madness.mp3", + "title": "Madness" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Little Big Town", + "playlist_title": "Tornado", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "96f4bba1-906c-26ee-744e-d4f04279a2df", + "path": "z://MP4\\KtvEntertainment\\Little Big Town - Tornado Karaoke Lyrics.mp4", + "title": "Tornado" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Chris Brown", + "playlist_title": "Don't Judge Me", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "959846e9-f5e4-8f50-9f3d-34daf1fa2b39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Judge Me - Chris Brown.mp4", + "title": "Don t Judge Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Brad Paisley", + "playlist_title": "Southern Comfort Zone", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13313938-5dea-ce42-5847-dd30f69a8688", + "path": "z://CDG\\SBI\\SBI-03\\SB27120 - Brad Paisley - Southern Comfort Zone.mp3", + "title": "Southern Comfort Zone" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Jake Owen", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7ed5d7d-e1cd-b94b-27a0-ed2adb05da16", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - The One That Got Away.mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Adele", + "playlist_title": "Skyfall", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a43094f9-69b0-d016-8c33-06679647fa10", + "path": "z://MP4\\Sing King Karaoke\\Adele - Skyfall.mp4", + "title": "Skyfall" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Hunter Hayes", + "playlist_title": "Somebody's Heartbreak", + "found_song": { + "artist": "Hunter Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "393bf9ee-47f7-05f5-7f92-aec1b7396454", + "path": "z://MP4\\KaraokeOnVEVO\\Hunter Hayes - Somebodys Heartbreak.mp4", + "title": "Somebody's Heartbreak" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "El Cerrito Place", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7c5f601-faa0-0364-70fa-b9e4a7ba4e7c", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - El Cerrito Place.mp4", + "title": "El Cerrito Place" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "One Direction", + "playlist_title": "Live While We're Young", + "found_song": { + "artist": "One Direction", + "disabled": false, + "favorite": false, + "guid": "4dc95ef7-f7c0-a9f9-6692-b8e76a1b3767", + "path": "z://MP4\\Sing King Karaoke\\One Direction - Live While We re Young (Karaoke Version).mp4", + "title": "Live While We re Young" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Tim McGraw", + "playlist_title": "One Of Those Nights", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5530dd04-f68a-fbca-6ea0-e45f76753499", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - One Of Those Nights.mp4", + "title": "One Of Those Nights" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "The Lumineers", + "playlist_title": "Stubborn Love", + "found_song": { + "artist": "The Lumineers", + "disabled": false, + "favorite": false, + "guid": "bb53248e-f63b-1797-802e-a5164fea815a", + "path": "z://MP4\\KaraokeOnVEVO\\The Lumineers - Stubborn Love (Karaoke).mp4", + "title": "Stubborn Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Future", + "playlist_title": "Turn On The Lights", + "found_song": { + "artist": "Future", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8c809c9-77db-ad5a-c6ab-3e4b6b40ded5", + "path": "z://CDG\\SBI\\SBI-03\\SB27002 - Future - Turn On The Lights.mp3", + "title": "Turn On The Lights" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Bridgit Mendler", + "playlist_title": "Ready Or Not", + "found_song": { + "artist": "Bridgit Mendler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c9d31d8-a873-2675-fbaf-22b105dfd970", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bridgit Mendler - Ready Or Not.mp4", + "title": "Ready Or Not" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Kacey Musgraves", + "playlist_title": "Merry Go 'Round", + "found_song": { + "artist": "Kacey Musgraves", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39ad7a92-fb3c-6874-85c6-5150ae52415b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kacey Musgraves - Merry Go Round.mp4", + "title": "Merry Go 'Round" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Big Sean", + "playlist_title": "Guap", + "found_song": { + "artist": "Big Sean", + "disabled": false, + "favorite": false, + "guid": "d856d8b5-0257-ba76-fe10-fb2e33e2d4f6", + "path": "z://MP4\\Karaoke Sing Sing\\Big Sean - Guap SING SING KARAOKE.mp4", + "title": "Guap" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Two Black Cadillacs", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "f6e06bc3-c52b-f77b-8318-11090cdd0236", + "path": "z://MP4\\TheKARAOKEChannel\\Two Black Cadillacs in the style of Carrie Underwood Karaoke with Lyrics.mp4", + "title": "Two Black Cadillacs" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Beyonce", + "playlist_title": "Dance For You", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9989e791-e729-5fb9-7d4c-1547637cf548", + "path": "z://CDG\\SBI\\SBI-03\\SB27080 - Beyonce - Dance For You.mp3", + "title": "Dance For You" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Tamar Braxton", + "playlist_title": "Love And War", + "found_song": { + "artist": "Tamar Braxton", + "disabled": false, + "favorite": false, + "guid": "a0168353-c8de-aadc-a96a-85334c45ca74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love And War - Tamar Braxton.mp4", + "title": "Love And War" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Taylor Swift", + "playlist_title": "I Knew You Were Trouble.", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b808e7a9-fac0-3993-e8f7-378babd5e629", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - I Knew You Were Trouble.mp4", + "title": "I Knew You Were Trouble." + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Macklemore & Ryan Lewis Featuring Wanz", + "playlist_title": "Thrift Shop", + "found_song": { + "artist": "Macklemore & Ryan Lewis Featuring Wanz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f8c3823-5d64-7b9f-987f-e87e4b1b142f", + "path": "z://MP4\\Sing King Karaoke\\Macklemore & Ryan Lewis Featuring Wanz - Thrift Shop.mp4", + "title": "Thrift Shop" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kendrick Lamar", + "playlist_title": "Swimming Pools (Drank)", + "found_song": { + "artist": "Kendrick Lamar", + "disabled": false, + "favorite": false, + "guid": "de7c86c6-6981-63c6-4ea9-f2b0a8f77630", + "path": "z://MP4\\singsongsmusic\\Swimming Pools (Drank) (explicit) - Karaoke HD (In the style of Kendrick Lamar).mp4", + "title": "Swimming Pools (Drank) (explicit)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "We Are Never Ever Getting Back Together", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "eff87784-b238-375c-ae00-71817d145d61", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - We Are Never Ever Getting Back Together (Karaoke Version).mp4", + "title": "We Are Never Ever Getting Back Together" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Mumford & Sons", + "playlist_title": "I Will Wait", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b140d65-5b73-424e-11b3-07e1edbc9f3a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mumford And Sons - I Will Wait.mp4", + "title": "I Will Wait" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Goodbye In Her Eyes", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "9e5d5ef0-2082-f78b-33c0-2438c5b068e6", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Goodbye In Her Eyes (Karaoke).mp4", + "title": "Goodbye In Her Eyes" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "Taylor Swift", + "playlist_title": "Begin Again", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "a2db3a47-1f1e-7781-3b78-f0f4b53403cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Begin Again (Karaoke Version).mp4", + "title": "Begin Again" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "50 Cent Featuring Eminem & Adam Levine", + "playlist_title": "My Life", + "found_song": { + "artist": "50 Cent Feat. Eminem And Adam Levine", + "disabled": false, + "favorite": false, + "guid": "f2c62b22-2174-e5ad-c06e-067231a4f325", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF324\\50 Cent Feat. Eminem And Adam Levine - My Life - SF324 - 06.mp3", + "title": "My Life" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Swedish House Mafia Featuring John Martin", + "title": "Don't You Worry Child", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "will.i.am Featuring Britney Spears", + "title": "Scream & Shout", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alicia Keys Featuring Nicki Minaj", + "title": "Girl On Fire", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kanye West, Jay-Z, Big Sean", + "title": "Clique", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull Featuring TJR", + "title": "Don't Stop The Party", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "A$AP Rocky Featuring Drake, 2 Chainz & Kendrick Lamar", + "title": "F**kin Problems", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Calvin Harris Featuring Florence Welch", + "title": "Sweet Nothing", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Juicy J Featuring Lil Wayne & 2 Chainz", + "title": "Bandz A Make Her Dance", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lil Wayne Featuring Detail", + "title": "No Worries", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Cassadee Pope", + "title": "Stupid Boy", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "The Band Perry", + "title": "Better Dig Two", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gotye Featuring Kimbra", + "title": "Somebody That I Used To Know", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Kip Moore", + "title": "Beer Money", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "OneRepublic", + "title": "Feel Again", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Justin Moore", + "title": "Til My Last Day", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Gary Allan", + "title": "Every Storm (Runs Out Of Rain)", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Eric Church", + "title": "Creepin'", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Houser", + "title": "How Country Feels", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jason Aldean With Luke Bryan & Eric Church", + "title": "The Only Way I Know", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "2 Chainz Featuring Kanye West", + "title": "Birthday Song", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Wiz Khalifa Featuring The Weeknd", + "title": "Remember You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "T.I. Featuring Lil Wayne", + "title": "Ball", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Greg Bates", + "title": "Did It For The Girl", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Terry McDermott", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rick Ross Featuring Wale & Drake", + "title": "Diced Pineapples", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Kendrick Lamar Featuring Drake", + "title": "Poetic Justice", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ludacris Featuring Usher & David Guetta", + "title": "Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Chief Keef", + "title": "Love Sosa", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Dierks Bentley", + "title": "Tip It On Back", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Game Featuring Chris Brown, Tyga, Wiz Khalifa & Lil Wayne", + "title": "Celebration", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Passion Pit", + "title": "Take A Walk", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Future", + "title": "Neva End", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Meek Mill Featuring Kirko Bangz", + "title": "Young & Gettin' It", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jonn Hart Featuring iamSU", + "title": "Who Booty", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Kelly Rowland Featuring Lil Wayne", + "title": "Ice", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trinidad James", + "title": "All Gold Everything", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ludacris Featuring Kelly Rowland", + "title": "Representin'", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Enrique Iglesias Featuring Sammy Adams", + "title": "Finally Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 8, + "missing_count": 38, + "needs_manual_review": 8 + } + }, + { + "playlist_title": "2011 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Foo Fighters", + "playlist_title": "Walk", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4dce7d7e-8e47-35db-78fd-ff93e2d366a2", + "path": "z://CDG\\Big Hits Karaoke\\BHK019\\BHK019-07 - Foo Fighters - Walk.mp3", + "title": "Walk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Monarchy Of Roses", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "253830f4-2393-35be-2ddc-067ed16012db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Monarchy Of Roses - Red Hot Chili Peppers.mp4", + "title": "Monarchy Of Roses" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Evanescence", + "playlist_title": "What You Want", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "guid": "e064a100-c44a-b603-2d13-76431126c6d6", + "path": "z://CDG\\Big Hits Karaoke\\BHK023\\BHK023-05 - Evanescence - What You Want.mp3", + "title": "What You Want" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Foo Fighters", + "playlist_title": "Rope", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "4be85a29-144c-b6b7-f8cc-6b428b3562fb", + "path": "z://MP4\\Sing King Karaoke\\Foo Fighters - Rope (Karaoke Version).mp4", + "title": "Rope" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Adventures Of Rain Dance Maggie", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "f293144c-b9b5-b5a0-10bb-f0005a7f9480", + "path": "z://CDG\\Big Hits Karaoke\\BHK021\\BHK021-06 - Red Hot Chili Peppers - Adventures Of Rain Dance Maggie, The.mp3", + "title": "Adventures Of Rain Dance Maggie, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Bush", + "title": "The Sound Of Winter", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Chevelle", + "title": "Face To The Floor", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Foo Fighters", + "title": "These Days", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Seether", + "title": "Tonight", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Avenged Sevenfold", + "title": "Buried Alive", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Nickelback", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Staind", + "title": "Not Again", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young The Giant", + "title": "Cough Syrup", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Switchfoot", + "title": "Dark Horses", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Korn Featuring Skrillex & Kill The Noise", + "title": "Narcissistic Cannibal", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Adelitas Way", + "title": "The Collapse", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Foster The People", + "title": "Helena Beat", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Volbeat", + "title": "A Warrior's Call", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Blink-182", + "title": "After Midnight", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster The People", + "title": "Don't Stop (Color On The Walls)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Cage The Elephant", + "title": "Aberdeen", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 1, + "missing_count": 16, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2011 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "David Guetta Featuring Usher", + "playlist_title": "Without You", + "found_song": { + "artist": "David Guetta Featuring Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f57b769-dfac-bd71-c6bf-48b29e79a770", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Usher - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Rihanna Featuring Calvin Harris", + "title": "We Found Love", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Gym Class Heroes Featuring Adam Levine", + "title": "Stereo Hearts", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Maroon 5 Featuring Christina Aguilera", + "title": "Moves Like Jagger", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Cobra Starship Featuring Sabi", + "title": "You Make Me Feel...", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Drake", + "title": "Headlines", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 1, + "missing_count": 6, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2011 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "641fd516-918a-d489-27ac-5dfc5cec1d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Where I Come From.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jason Aldean", + "title": "Tattoos On This Town", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "David Nail", + "title": "Let It Rain", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Chris Young", + "title": "You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Band Perry", + "title": "All Your Life", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kenny Chesney", + "title": "Reality", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brad Paisley", + "title": "Camouflage", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Hunter Hayes", + "title": "Storm Warning", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "George Strait", + "title": "Love's Gonna Make It Alright", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jake Owen", + "title": "Alone With You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sara Evans", + "title": "My Heart Can't Tell You No", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "James Wesley", + "title": "Didn't I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 2, + "missing_count": 14, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2011 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LMFAO", + "playlist_title": "Sexy And I Know It", + "found_song": { + "artist": "LMFAO", + "disabled": false, + "favorite": false, + "guid": "762e359e-6d8f-a37c-c6a7-cd28b0d5f7d3", + "path": "z://MP4\\KaraFun Karaoke\\Sexy And I Know It - LMFAO Karaoke Version KaraFun.mp4", + "title": "Sexy And I Know It" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "It Will Rain", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c10b854a-d616-dcec-46e7-0a8b27492737", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - It Will Rain (Karaoke Version).mp4", + "title": "It Will Rain" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Flo Rida", + "playlist_title": "Good Feeling", + "found_song": { + "artist": "Flo Rida", + "disabled": false, + "favorite": false, + "guid": "63f41980-5f0f-c81a-255a-811a01b85eca", + "path": "z://MP4\\Sing King Karaoke\\Flo Rida - Good Feeling.mp4", + "title": "Good Feeling" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "The One That Got Away", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cf91b66e-5c34-042b-b077-66b71aef1e60", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - The One That Got Away (Karaoke Version).mp4", + "title": "The One That Got Away" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Adele", + "playlist_title": "Someone Like You", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5f4950f-6cce-e600-5830-4f04cbee1fe2", + "path": "z://MP4\\Sing King Karaoke\\Adele - Someone Like You.mp4", + "title": "Someone Like You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "David Guetta Featuring Usher", + "playlist_title": "Without You", + "found_song": { + "artist": "David Guetta Featuring Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f57b769-dfac-bd71-c6bf-48b29e79a770", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Usher - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Adele", + "playlist_title": "Set Fire To The Rain", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "guid": "02c08c72-3cdd-9cfc-10d4-7e4aa8fc1411", + "path": "z://MP4\\Sing King Karaoke\\Adele - Set Fire To The Rain (Karaoke Version).mp4", + "title": "Set Fire To The Rain" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "Red Solo Cup", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "f4bf0750-106c-bc9b-3a94-9563ff7b5904", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Red Solo Cup - Toby Keith.mp4", + "title": "Red Solo Cup" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Foster The People", + "playlist_title": "Pumped Up Kicks", + "found_song": { + "artist": "Foster The People", + "disabled": false, + "favorite": false, + "guid": "bdc3fac3-8767-d06a-e4be-788743dda48c", + "path": "z://MP4\\KtvEntertainment\\Foster The People - Pumped Up Kicks Karaoke Lyrics.mp4", + "title": "Pumped Up Kicks" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Mr. Know It All", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "a4b25567-caba-3c16-d83d-3f466a0a57d8", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Mr Know It All (Karaoke Version).mp4", + "title": "Mr Know It All" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "Not Over You", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "38ec1a24-3615-0fe2-caf8-d305eddf1d6f", + "path": "z://MP4\\KtvEntertainment\\Gavin DeGraw - Not Over You (Karaoke without Vocal).mp4", + "title": "Not Over You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Luke Bryan", + "playlist_title": "I Don't Want This Night To End", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "6d7bc46f-24dd-4a6b-6dde-60cc245678d1", + "path": "z://MP4\\KtvEntertainment\\Luke Bryan - I Don't Want This Night To End Karaoke Lyrics.mp4", + "title": "I Don't Want This Night To End" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Rihanna", + "playlist_title": "You Da One", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "9d1bc5f3-8498-edbd-bb63-c31470a9fe99", + "path": "z://CDG\\Big Hits Karaoke\\BHK027\\BHK027-10 - Rihanna - You Da One.mp3", + "title": "You Da One" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jessie J", + "playlist_title": "Domino", + "found_song": { + "artist": "Jessie J", + "disabled": false, + "favorite": false, + "guid": "fe86618a-b6ea-0f94-ffc6-ac3b39565889", + "path": "z://MP4\\Sing King Karaoke\\Jessie J - Domino (Karaoke Version).mp4", + "title": "Domino" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Just A Kiss", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "a81c933d-a6cf-6ed1-5df2-da0f4e8f831c", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Just A Kiss (Karaoke Version).mp4", + "title": "Just A Kiss" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Justin Bieber", + "playlist_title": "Mistletoe", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "14f98985-95a4-5b33-156a-61c2d2ae1fca", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - Mistletoe (Karaoke Version).mp4", + "title": "Mistletoe" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lady Gaga", + "playlist_title": "Marry The Night", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "a8d4bb86-a4fa-d90e-8d34-c8aac6771276", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Marry The Night (Karaoke Version).mp4", + "title": "Marry The Night" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Nicki Minaj", + "playlist_title": "Super Bass", + "found_song": { + "artist": "Nicki Minaj", + "disabled": false, + "favorite": false, + "guid": "2f417a85-4982-f23b-1694-1d983e5b3795", + "path": "z://MP4\\Sing King Karaoke\\Nicki Minaj - Super Bass (Karaoke Version).mp4", + "title": "Super Bass" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Coldplay", + "playlist_title": "Paradise", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "daee9484-3c2d-f437-3dbd-158e9fcf8b8f", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Paradise.mp4", + "title": "Paradise" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dev", + "playlist_title": "In The Dark", + "found_song": { + "artist": "Dev", + "disabled": false, + "favorite": false, + "guid": "7878f918-9e41-5428-10b5-91397501a0a9", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-06 - Dev - In The Dark.mp3", + "title": "In The Dark" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eric Church", + "playlist_title": "Drink In My Hand", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "0d94f3a8-2b32-ee86-5c6b-7d0f51135ef0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drink In My Hand - Eric Church.mp4", + "title": "Drink In My Hand" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Blake Shelton", + "playlist_title": "God Gave Me You", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "5e6c1262-d330-6e28-d8b2-7563f3f4439c", + "path": "z://MP4\\KtvEntertainment\\Blake Shelton - God Gave Me You (Karaoke without Vocal).mp4", + "title": "God Gave Me You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Breathe Carolina", + "playlist_title": "Blackout", + "found_song": { + "artist": "Breathe Carolina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a76b4f39-46ad-6a1e-68a0-71598605d86b", + "path": "z://CDG\\SBI\\SBI-03\\SB25502 - Breathe Carolina - Blackout.mp3", + "title": "Blackout" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lady Antebellum", + "playlist_title": "We Owned The Night", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "0fc53a27-c979-7799-ed41-a851ced059c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Owned The Night - Lady Antebellum.mp4", + "title": "We Owned The Night" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Jason Derulo", + "playlist_title": "It Girl", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "9305880d-ee07-8743-8bc0-1c03303ce8df", + "path": "z://MP4\\Sing King Karaoke\\Jason Derulo - It Girl (Karaoke Version).mp4", + "title": "It Girl" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Tyga", + "playlist_title": "Rack City", + "found_song": { + "artist": "Tyga", + "disabled": false, + "favorite": false, + "guid": "7c7c8fe1-8f6d-95b6-8554-9b18d2721c55", + "path": "z://MP4\\singsongsmusic\\Rack City - Karaoke HD (In the style of Tyga).mp4", + "title": "Rack City" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Drake Featuring Rihanna", + "playlist_title": "Take Care", + "found_song": { + "artist": "Drake Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5406e71e-d520-79a1-bb0b-2beea6ee9c8e", + "path": "z://MP4\\Sing King Karaoke\\Drake Featuring Rihanna - Take Care.mp4", + "title": "Take Care" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Christina Perri", + "playlist_title": "A Thousand Years", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": true, + "guid": "f8282f88-3279-79ed-1350-5067b9c60067", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - A Thousand Years (Karaoke Version).mp4", + "title": "A Thousand Years" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Outasight", + "playlist_title": "Tonight Is The Night", + "found_song": { + "artist": "Outasight", + "disabled": false, + "favorite": false, + "guid": "52edc9ce-31cb-afba-0100-27d7b1c0b541", + "path": "z://CDG\\Big Hits Karaoke\\BHK031\\BHK031-03 - Outasight - Tonight Is The Night.mp3", + "title": "Tonight Is The Night" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Lady Gaga", + "playlist_title": "You And I", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "17481e56-95ec-7442-5a61-ab87dbb0aa20", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - You And I (Karaoke Version).mp4", + "title": "You And I" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Fray", + "playlist_title": "Heartbeat", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "fe155f91-fd8a-64fa-d152-ff237a71eb26", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbeat - The Fray.mp4", + "title": "Heartbeat" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Nickelback", + "playlist_title": "When We Stand Together", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "64215bb4-4f50-91eb-9a1c-4d34f1038070", + "path": "z://CDG\\Big Hits Karaoke\\BHK025\\BHK025-08 - Nickelback - When We Stand Together.mp3", + "title": "When We Stand Together" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "David Guetta Featuring Nicki Minaj", + "playlist_title": "Turn Me On", + "found_song": { + "artist": "David Guetta Featuring Nicki Minaj", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5404ca2-e832-8c81-606f-1a0ae3bcf134", + "path": "z://MP4\\Sing King Karaoke\\David Guetta Featuring Nicki Minaj - Turn Me On.mp4", + "title": "Turn Me On" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Black Keys", + "playlist_title": "Lonely Boy", + "found_song": { + "artist": "The Black Keys", + "disabled": false, + "favorite": false, + "guid": "867f105f-cc58-ae49-6705-f9cae9e5497a", + "path": "z://MP4\\KtvEntertainment\\The Black Keys - Lonely Boy (Karaoke without Vocal).mp4", + "title": "Lonely Boy" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Home", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e2d50b9-0a65-0c56-4e80-fb0725f76c98", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Avicii", + "playlist_title": "Levels", + "found_song": { + "artist": "Avicii", + "disabled": false, + "favorite": false, + "guid": "c4048f7e-f544-e6f6-9b4c-fd338a8fa798", + "path": "z://MP4\\singsongsmusic\\Levels - Karaoke HD (In the style of Avicii).mp4", + "title": "Levels" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Fun. Featuring Janelle Monae", + "playlist_title": "We Are Young", + "found_song": { + "artist": "Fun. Featuring Janelle Monae", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f84dd295-803a-b811-4f43-985cf59419b1", + "path": "z://MP4\\Sing King Karaoke\\Fun. Featuring Janelle Monae - We Are Young.mp4", + "title": "We Are Young" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Keith Urban", + "playlist_title": "You Gonna Fly", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e74ad187-ce8c-241f-f93c-f44c846aae41", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - You Gonna Fly.mp4", + "title": "You Gonna Fly" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Shake It Out", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "4d8194a9-6336-0f7e-34f7-e6993bb74985", + "path": "z://MP4\\Sing King Karaoke\\Florence + The Machine - Shake It Out (Karaoke Version).mp4", + "title": "Shake It Out" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Justin Moore", + "playlist_title": "Bait A Hook", + "found_song": { + "artist": "Justin Moore", + "disabled": false, + "favorite": false, + "guid": "76228d29-9986-1cc2-c8ea-41d6b801fdb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bait A Hook - Justin Moore.mp4", + "title": "Bait A Hook" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Scotty McCreery", + "playlist_title": "The Trouble With Girls", + "found_song": { + "artist": "Scotty McCreery", + "disabled": false, + "favorite": false, + "guid": "debd1e87-7afa-cc4a-1e62-2b68708adffc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Trouble With Girls - Scotty McCreery.mp4", + "title": "The Trouble With Girls" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "AWOLNATION", + "playlist_title": "Sail", + "found_song": { + "artist": "Awolnation", + "disabled": false, + "favorite": false, + "guid": "04e7253f-78cf-da52-599b-0f5548dc47c8", + "path": "z://MP4\\KtvEntertainment\\Awolnation - Sail (Karaoke without Vocal).mp4", + "title": "Sail" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Beyonce", + "playlist_title": "Countdown", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7438575d-1f0d-a020-c832-1f04331e37fb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Countdown.mp4", + "title": "Countdown" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Grouplove", + "playlist_title": "Tongue Tied", + "found_song": { + "artist": "Grouplove", + "disabled": false, + "favorite": false, + "guid": "7c507d6f-1aad-9a95-a34e-a82c04af7924", + "path": "z://MP4\\Sing King Karaoke\\Grouplove - Tongue Tied (Karaoke Version).mp4", + "title": "Tongue Tied" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Beyonce", + "playlist_title": "Love On Top", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "bf0a1046-a83e-bba1-1679-b311d4cab5b6", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - Love On Top (Karaoke Version).mp4", + "title": "Love On Top" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Thompson Square", + "playlist_title": "I Got You", + "found_song": { + "artist": "Thompson Square", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1e5d09-7a9b-517b-5a5f-da7aca77708e", + "path": "z://MP4\\KaraokeOnVEVO\\Thompson Square - I Got You.mp4", + "title": "I Got You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "playlist_title": "Party Rock Anthem", + "found_song": { + "artist": "LMFAO Featuring Lauren Bennett & GoonRock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb478ed8-17ee-5e13-6450-936df77a13b1", + "path": "z://MP4\\Sing King Karaoke\\LMFAO Featuring Lauren Bennett & GoonRock - Party Rock Anthem.mp4", + "title": "Party Rock Anthem" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Selena Gomez & The Scene", + "playlist_title": "Love You Like A Love Song", + "found_song": { + "artist": "Selena Gomez", + "disabled": false, + "favorite": false, + "guid": "0777dcb9-3cd0-c395-5970-3ef81ef9c6b0", + "path": "z://MP4\\Sing King Karaoke\\Selena Gomez - Love You Like A Love Song (Karaoke Version).mp4", + "title": "Love You Like A Love Song" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Keep Me In Mind", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "cd61e3a9-30da-60ab-dfd9-0ac476837390", + "path": "z://MP4\\KaraokeOnVEVO\\Zac Brown Band - Keep Me In Mind (Karaoke).mp4", + "title": "Keep Me In Mind" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Taylor Swift", + "playlist_title": "Ours", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "c3399e00-8d19-92e8-6aea-34c8fe7276bb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Ours (Karaoke Version).mp4", + "title": "Ours" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Baggage Claim", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ae06a979-9a9d-3fcf-53d5-4dd71f35eb2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baggage Claim - Miranda Lambert.mp4", + "title": "Baggage Claim" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Lavigne, Avril", + "disabled": false, + "favorite": false, + "guid": "a1f90a2c-477d-435e-a5ce-0ae5cfb4149b", + "path": "z://CDG\\Big Hits Karaoke\\BHK024\\BHK024-04 - Lavigne, Avril - Wish You Were Here.mp3", + "title": "Wish You Were Here" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Script", + "playlist_title": "Nothing", + "found_song": { + "artist": "Script", + "disabled": false, + "favorite": false, + "guid": "1cf5a6ef-3117-3984-a7b8-2a2ba8cc6162", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF298\\Script - Nothing - SF298 - 07.mp3", + "title": "Nothing" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Glee Cast", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78e4e993-272c-c615-986a-e472fd11a995", + "path": "z://MP4\\Sing King Karaoke\\Band Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Michael Buble", + "playlist_title": "All I Want For Christmas Is You", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": false, + "guid": "2a03aa86-69b8-2125-b363-88b9e88ead0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All I Want For Christmas Is You - Michael Bublé.mp4", + "title": "All I Want For Christmas Is You" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Rihanna Featuring Calvin Harris", + "title": "We Found Love", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jay Z Kanye West", + "title": "Ni**as in Paris", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Maroon 5 Featuring Christina Aguilera", + "title": "Moves Like Jagger", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "T-Pain Featuring Wiz Khalifa & Lily Allen", + "title": "5 O'Clock", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Gym Class Heroes Featuring Adam Levine", + "title": "Stereo Hearts", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Big Sean Featuring Nicki Minaj", + "title": "Dance (A$$)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "J. Cole", + "title": "Work Out", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Drake", + "title": "Headlines", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Snoop Dogg & Wiz Khalifa Featuring Bruno Mars", + "title": "Young, Wild & Free", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cobra Starship Featuring Sabi", + "title": "You Make Me Feel...", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Drake Featuring Nicki Minaj", + "title": "Make Me Proud", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Pitbull Featuring Ne-Yo, Afrojack & Nayer", + "title": "Give Me Everything", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Drake Featuring Lil Wayne", + "title": "The Motto", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Pitbull Featuring Chris Brown", + "title": "International Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Lil Wayne Featuring Drake", + "title": "She Will", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ke$ha Featuring Lil Wayne, Wiz Khalifa, T.I. & Andre 3000", + "title": "Sleazy Remix 2.0 Get Sleazier", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Wale Featuring Miguel", + "title": "Lotus Flower Bomb", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Jason Aldean", + "title": "Tattoos On This Town", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Rascal Flatts Featuring Natasha Bedingfield", + "title": "Easy", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Hot Chelle Rae Featuring New Boyz", + "title": "I Like It Like That", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Nicki Minaj Featuring Rihanna", + "title": "Fly", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "David Nail", + "title": "Let It Rain", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Young", + "title": "You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Band Perry", + "title": "All Your Life", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.o.B Featuring Lil Wayne", + "title": "Strange Clouds", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Beyonce Featuring Andre 3000", + "title": "Party", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Glee Cast", + "title": "We Are Young", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Colbie Caillat", + "title": "Brighter Than The Sun", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "J. Cole Featuring Trey Songz", + "title": "Can't Get Enough", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rick Ross Featuring Nicki Minaj", + "title": "You The Boss", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Martina McBride", + "title": "I'm Gonna Love You Through It", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Jake Owen", + "title": "Alone With You", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Wale Featuring Jeremih & Rick Ross", + "title": "That Way", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Bang Bang Pow Pow", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Kenny Chesney", + "title": "Reality", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Tim McGraw", + "title": "Better Than I Used To Be", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Hunter Hayes", + "title": "Storm Warning", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Waka Flocka Flame Featuring Drake", + "title": "Round Of Applause", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Brad Paisley", + "title": "Camouflage", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Edens Edge", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lee Brice", + "title": "A Woman Like You", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Romeo Santos Featuring Usher", + "title": "Promise", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Roscoe Dash", + "title": "Good Good Night", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Gym Class Heroes Featuring Neon Hitch", + "title": "Ass Back Home", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 9, + "missing_count": 44, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2010 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 9, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "R. Kelly", + "playlist_title": "When A Woman Loves", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "090ea035-9580-039d-0b17-295f18e82874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Woman Loves - R. Kelly.mp4", + "title": "When A Woman Loves" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Usher", + "playlist_title": "There Goes My Baby", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "5af23df0-2293-5d64-4ab9-372b1461f50d", + "path": "z://MP4\\KtvEntertainment\\Usher - There Goes My Baby (Karaoke without Vocal).mp4", + "title": "There Goes My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Trey Songz", + "title": "Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nicki Minaj", + "title": "Right Thru Me", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Fantasia", + "title": "I'm Doing Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Charlie Wilson", + "title": "You Are", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Eric Benet", + "title": "Sometimes I Cry", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Diddy - Dirty Money Featuring Drake", + "title": "Loving You No More", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jazmine Sullivan", + "title": "10 Seconds", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jazmine Sullivan", + "title": "Holding You Down (Goin In Circles)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 7, + "fuzzy_match_count": 0, + "missing_count": 18, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2010 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Radioactive", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "e84999e7-a485-8964-f2c4-36a95a2640a0", + "path": "z://CDG\\Big Hits Karaoke\\BHK013\\BHK013-08 - Kings Of Leon - Radioactive.mp3", + "title": "Radioactive" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Muse", + "playlist_title": "Undisclosed Desires", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "15b73041-f109-ac0e-80da-084107c98e3a", + "path": "z://CDG\\Big Hits Karaoke\\BHK004\\BHK004-07 - Muse - Undisclosed Desires.mp3", + "title": "Undisclosed Desires" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cage The Elephant", + "playlist_title": "Shake Me Down", + "found_song": { + "artist": "Cage the Elephant", + "disabled": false, + "favorite": false, + "guid": "98ce324e-07f5-e067-7250-fe27c3f1ead2", + "path": "z://MP4\\singsongsmusic\\Shake me Down - Karaoke HD (In the style of Cage the Elephant).mp4", + "title": "Shake me Down" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Sing", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "530d4d52-cc02-fb34-da25-cba1201b9e8d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sing - My Chemical Romance.mp4", + "title": "Sing" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hinder", + "playlist_title": "All American Nightmare", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "guid": "1052f65c-6251-025e-4f12-d00f1f74f882", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-033 - Hinder - All American Nightmare (Karaoke).mp4", + "title": "All American Nightmare" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Five Finger Death Punch", + "playlist_title": "Far From Home", + "found_song": { + "artist": "Five Finger Death Punch", + "disabled": false, + "favorite": false, + "guid": "402467c9-830a-24e3-94e5-a2521e4b1cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Far From Home - Five Finger Death Punch.mp4", + "title": "Far From Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Thirty Seconds To Mars", + "playlist_title": "Closer To The Edge", + "found_song": { + "artist": "30 Seconds To Mars", + "disabled": false, + "favorite": false, + "guid": "cbeecb81-944f-558e-cd04-8303a882ff54", + "path": "z://CDG\\Big Hits Karaoke\\BHK012\\BHK012-02 - 30 Seconds To Mars - Closer To The Edge.mp3", + "title": "Closer To The Edge" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Black Keys", + "title": "Tighten Up", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Linkin Park", + "title": "Waiting For The End", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Stone Sour", + "title": "Say You'll Haunt Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Three Days Grace", + "title": "World So Cold", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "My Darkest Days Featuring Zakk Wylde", + "title": "Porn Star Dancing", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Godsmack", + "title": "Love-Hate-Sex-Pain", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Saving Abel", + "title": "The Sex Is Good", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Cake", + "title": "Sick Of You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Disturbed", + "title": "The Animal", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Dirty Heads Featuring Rome", + "title": "Lay Me Down", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Phoenix", + "title": "Lisztomania", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Alter Bridge", + "title": "Isolation", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Avenged Sevenfold", + "title": "Welcome To The Family", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "10 Years", + "title": "Shoot It Out", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2010 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "playlist_title": "Tonight (I'm Lovin' You)", + "found_song": { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c36aca96-aba5-fac4-5017-ba27e2f6b4f8", + "path": "z://MP4\\sing2karaoke\\Enrique Iglesias Featuring Ludacris & DJ Frank E - Tonight (I'm Lovin' You).mp4", + "title": "Tonight (I'm Lovin' You)" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Far*East Movement Featuring Cataracs & Dev", + "title": "Like A G6", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Usher Featuring Pitbull", + "title": "DJ Got Us Fallin' In Love", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Edward Maya & Vika Jigulina", + "title": "Stereo Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 1, + "missing_count": 6, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2010 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Brad Paisley", + "playlist_title": "This Is Country Music", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44e42d07-74dc-9d0e-9a92-10287b97963d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - This Is Country Music.mp4", + "title": "This Is Country Music" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jason Aldean With Kelly Clarkson", + "playlist_title": "Don't You Wanna Stay", + "found_song": { + "artist": "Jason Aldean With Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d4fe00-d9e8-2c6b-1673-0c068d9ea361", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Aldean With Kelly Clarkson - Dont You Wanna Stay.mp4", + "title": "Don't You Wanna Stay" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba", + "title": "Turn On The Radio", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Carrie Underwood", + "title": "Mama's Song", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Tim McGraw", + "title": "Felt Good On My Lips", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Zac Brown Band Featuring Alan Jackson", + "title": "As She's Walking Away", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kenny Chesney", + "title": "Somewhere With You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "George Strait", + "title": "The Breath You Take", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Band Perry", + "title": "If I Die Young", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Keith Urban", + "title": "Put You In A Song", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Toby Keith", + "title": "Bullets In The Gun", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Billy Currington", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Sunny Sweeney", + "title": "From A Table Away", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The JaneDear Girls", + "title": "Wildflower", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Joe Nichols", + "title": "The Shape I'm In", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jerrod Niemann", + "title": "What Do You Want", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 2, + "missing_count": 14, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2010 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Katy Perry", + "playlist_title": "Firework", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "b165149f-4ce5-0209-d93d-bf5d58f338ad", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Firework (Karaoke Version).mp4", + "title": "Firework" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bruno Mars", + "playlist_title": "Grenade", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "c216246c-2d93-08fb-b129-b08aadc92f30", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Grenade (Karaoke Version).mp4", + "title": "Grenade" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "P!nk", + "playlist_title": "Raise Your Glass", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8ea8685-9415-142f-b3e6-cef61c62df48", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Raise Your Glass.mp4", + "title": "Raise Your Glass" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "We R Who We R", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3808a01f-cf1c-f7c2-b79b-03078b48be8b", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - We R Who We R.mp4", + "title": "We R Who We R" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Rihanna", + "playlist_title": "Only Girl (In The World)", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "ee29785d-93d1-6580-838d-1f50ba2385b3", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Only Girl (In The World) (Karaoke Version).mp4", + "title": "Only Girl (In The World)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bruno Mars", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "7cbcd7d3-6a88-b685-6542-e38f8af346fd", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Just The Way You Are (Karaoke Version).mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "The Time (Dirty Bit)", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b20a94d-e56a-1d6a-eb7b-78e084a83cb5", + "path": "z://MP4\\sing2karaoke\\The Black Eyed Peas - The Time (Dirty Bit).mp4", + "title": "The Time (Dirty Bit)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly", + "playlist_title": "Just A Dream", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "51d99b13-aa9b-9d5b-fa8e-8dfaaa35f410", + "path": "z://MP4\\Sing King Karaoke\\Nelly - Just A Dream.mp4", + "title": "Just A Dream" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wiz Khalifa", + "playlist_title": "Black And Yellow", + "found_song": { + "artist": "Wiz Khalifa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f59d5f-9380-f7e2-ecd8-3d8303021902", + "path": "z://MP4\\ZoomKaraokeOfficial\\Wiz Khalifa - Black And Yellow.mp4", + "title": "Black And Yellow" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Taio Cruz", + "playlist_title": "Dynamite", + "found_song": { + "artist": "Taio Cruz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4be8eab4-85d5-6e4f-5c51-4c6594f559a7", + "path": "z://MP4\\Sing King Karaoke\\Taio Cruz - Dynamite.mp4", + "title": "Dynamite" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Mike Posner", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Mike Posner", + "disabled": false, + "favorite": false, + "guid": "98138011-c060-96ba-71a0-c1b970d5e8bf", + "path": "z://MP4\\Sing King Karaoke\\Mike Posner - Please Don't Go (Karaoke Version).mp4", + "title": "Please Don't Go" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Katy Perry", + "playlist_title": "Teenage Dream", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "guid": "cd1bf180-2558-1d4b-1817-2e917d38edc4", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Teenage Dream (Karaoke Version).mp4", + "title": "Teenage Dream" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Neon Trees", + "playlist_title": "Animal", + "found_song": { + "artist": "Neon Trees", + "disabled": false, + "favorite": false, + "guid": "4a091937-8b71-eb56-3961-47313de4400a", + "path": "z://MP4\\Sing King Karaoke\\Neon Trees - Animal (Karaoke Version).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Chris Brown", + "playlist_title": "Yeah 3X", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1920c1ca-331b-fedb-7751-ce21ac05876e", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Yeah 3X.mp4", + "title": "Yeah 3X" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "OneRepublic", + "playlist_title": "Secrets", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "0659bf0a-7b36-981e-a88c-0f2f83583d80", + "path": "z://MP4\\Sing King Karaoke\\OneRepublic - Secrets (Karaoke Version).mp4", + "title": "Secrets" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Willow", + "playlist_title": "Whip My Hair", + "found_song": { + "artist": "Willow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4776e25-7956-5b0e-5e4e-b74080c2f3cc", + "path": "z://MP4\\KaraokeOnVEVO\\Willow - Whip My Hair.mp4", + "title": "Whip My Hair" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coldplay", + "playlist_title": "Christmas Lights", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "guid": "bb0418d9-ebff-3866-e15c-1dfafabc4a59", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Christmas Lights (Karaoke Version).mp4", + "title": "Christmas Lights" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jason Aldean", + "playlist_title": "My Kinda Party", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "eaabd8c7-56f6-ee4c-4d22-79d797b46622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Kinda Party - Jason Aldean.mp4", + "title": "My Kinda Party" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eminem Featuring Rihanna", + "playlist_title": "Love The Way You Lie", + "found_song": { + "artist": "Eminem Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1346e2a7-efdf-18cd-07fb-915f1a68c16d", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem Featuring Rihanna - Love The Way You Lie.mp4", + "title": "Love The Way You Lie" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Keri Hilson", + "playlist_title": "Pretty Girl Rock", + "found_song": { + "artist": "Keri Hilson", + "disabled": false, + "favorite": false, + "guid": "206b6ed6-e288-e7d4-402a-b4b227cbc9fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Girl Rock - Keri Hilson.mp4", + "title": "Pretty Girl Rock" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Florence + The Machine", + "playlist_title": "Dog Days Are Over", + "found_song": { + "artist": "Florence + The Machine", + "disabled": false, + "favorite": false, + "guid": "a5fd1725-6bfb-7407-2421-ad93f0ec3417", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dog Days Are Over - Florence + The Machine.mp4", + "title": "Dog Days Are Over" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Christina Perri", + "playlist_title": "Jar Of Hearts", + "found_song": { + "artist": "Christina Perri", + "disabled": false, + "favorite": false, + "guid": "819790b5-eac8-1127-8078-d8703ca887a6", + "path": "z://MP4\\Sing King Karaoke\\Christina Perri - Jar Of Hearts (Karaoke Version).mp4", + "title": "Jar Of Hearts" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "Who Are You When I'm Not Looking", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "9ddfa9e1-bcd7-888f-6aa0-72c899243d15", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Who Are You When I'm Not Looking.mp3", + "title": "Who Are You When I'm Not Looking" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Plain White T's", + "playlist_title": "Rhythm of Love", + "found_song": { + "artist": "Plain White T's", + "disabled": false, + "favorite": false, + "guid": "74cf8c8e-86ef-569e-d337-e78bd78edcfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rhythm Of Love - Plain White T s.mp4", + "title": "Rhythm Of Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Why Wait", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "29840c68-943e-ecb6-6f79-6732eee42465", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Why Wait.mp4", + "title": "Why Wait" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Adele", + "playlist_title": "Rolling In The Deep", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91bd714e-b077-3380-cfa9-2b282f116b8c", + "path": "z://MP4\\Sing King Karaoke\\Adele - Rolling In The Deep.mp4", + "title": "Rolling In The Deep" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Young", + "playlist_title": "Voices", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46586d4b-4b95-fbb9-35f5-7cc339ade658", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Young - Voices.mp4", + "title": "Voices" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Jason Aldean With Kelly Clarkson", + "playlist_title": "Don't You Wanna Stay", + "found_song": { + "artist": "Jason Aldean With Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d4fe00-d9e8-2c6b-1673-0c068d9ea361", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Aldean With Kelly Clarkson - Dont You Wanna Stay.mp4", + "title": "Don't You Wanna Stay" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Hello World", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c02129f4-1bb5-4e03-3fe8-3935daef2781", + "path": "z://MP4\\KaraokeOnVEVO\\Lady Antebellum - Hello World.mp4", + "title": "Hello World" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Luke Bryan", + "playlist_title": "Someone Else Calling You Baby", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abacc54b-2073-48eb-8dcd-5dd377c6b500", + "path": "z://MP4\\KaraokeOnVEVO\\Luke Bryan - Someone Else Calling You Baby.mp4", + "title": "Someone Else Calling You Baby" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Akon", + "playlist_title": "Angel", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "guid": "c0ee5fff-3632-1ef8-e5f4-2487efafd14b", + "path": "z://MP4\\KtvEntertainment\\Akon - Angel (Karaoke without Vocal).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Train", + "playlist_title": "Marry Me", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68cf19d8-3308-9a5c-9e8b-e813216a7e0c", + "path": "z://MP4\\Sing King Karaoke\\Train - Marry Me.mp4", + "title": "Marry Me" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Eric Church", + "playlist_title": "Smoke A Little Smoke", + "found_song": { + "artist": "Eric Church", + "disabled": false, + "favorite": false, + "guid": "c8baf041-8622-6d1d-fbe0-81a7bf02e07e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke A Little Smoke - Eric Church.mp4", + "title": "Smoke A Little Smoke" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Chris Brown", + "playlist_title": "No BS", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3611d903-de13-c520-bb96-b511547c5adc", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - No BS.mp4", + "title": "No BS" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Strip Me", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "385488b2-1161-d46a-0dc3-a977df0e1a46", + "path": "z://MP4\\KaraokeOnVEVO\\Natasha Bedingfield - Strip Me.mp4", + "title": "Strip Me" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Daughtry", + "playlist_title": "September", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb9a51ee-833a-7f98-9a6e-a4be6e365b50", + "path": "z://MP4\\KaraokeOnVEVO\\Daughtry - September.mp4", + "title": "September" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Ne-Yo", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44891916-bf4f-0eca-b4ac-bd9cd8b4f518", + "path": "z://MP4\\KaraokeOnVEVO\\Ne-Yo - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Bruno Mars", + "playlist_title": "Marry You", + "found_song": { + "artist": "Bruno Mars", + "disabled": false, + "favorite": false, + "guid": "6caba5fe-241b-7582-6daf-3a3eaa095d9c", + "path": "z://MP4\\Sing King Karaoke\\Bruno Mars - Marry You (Karaoke Version).mp4", + "title": "Marry You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "playlist_title": "Tonight (I'm Lovin' You)", + "found_song": { + "artist": "Enrique Iglesias Featuring Ludacris & DJ Frank E", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c36aca96-aba5-fac4-5017-ba27e2f6b4f8", + "path": "z://MP4\\sing2karaoke\\Enrique Iglesias Featuring Ludacris & DJ Frank E - Tonight (I'm Lovin' You).mp4", + "title": "Tonight (I'm Lovin' You)" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Diddy - Dirty Money Featuring Skylar Grey", + "playlist_title": "Coming Home", + "found_song": { + "artist": "Diddy", + "disabled": false, + "favorite": false, + "guid": "729536e9-1527-ca18-bbd6-2eed4c560612", + "path": "z://MP4\\TheKARAOKEChannel\\Diddy - Dirty Money feat. Skylar Grey - Coming Home.mp4", + "title": "Dirty Money feat. Skylar Grey - Coming Home" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Taylor Swift", + "playlist_title": "Back To December", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "ec81f462-2b72-26ea-caac-c3e77090715e", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Back To December (Karaoke Version).mp4", + "title": "Back To December" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "Sugarland", + "playlist_title": "Stuck Like Glue", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "2d6eb405-f7d9-2468-9756-a52d43119497", + "path": "z://MP4\\singsongsmusic\\Stuck Like Glue - Karaoke HD (In the style of Sugarland).mp4", + "title": "Stuck Like Glue" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Taylor Swift", + "playlist_title": "Mine", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeb273be-068e-64d2-bb99-37700be02b36", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Mine.mp4", + "title": "Mine" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Glee Cast", + "playlist_title": "Baby, It's Cold Outside", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "d846ccbb-5dbb-4803-37ec-22ba726b146a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s Cold Outside - Glee.mp4", + "title": "Baby It s Cold Outside" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Far*East Movement Featuring Ryan Tedder", + "playlist_title": "Rocketeer", + "found_song": { + "artist": "Far East Movement Feat.ryan Tedder", + "disabled": false, + "favorite": false, + "guid": "e5cf7498-cabe-eb0a-efb0-562de4391e64", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF301\\Far East Movement Feat.ryan Tedder - Rocketeer - SF301 - 08.mp3", + "title": "Rocketeer" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Only Prettier", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "ea47d8e8-793c-ba8a-9787-269a09cbb622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Prettier - Miranda Lambert.mp4", + "title": "Only Prettier" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Mumford & Sons", + "playlist_title": "Little Lion Man", + "found_song": { + "artist": "Mumford & Sons", + "disabled": false, + "favorite": false, + "guid": "3f50b71d-33e5-c628-0528-7bbf2748f153", + "path": "z://MP4\\TheKARAOKEChannel\\Mumford & Sons - Little Lion Man.mp4", + "title": "Little Lion Man" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Rihanna Featuring Drake", + "title": "What's My Name?", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Trey Songz Featuring Nicki Minaj", + "title": "Bottoms Up", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Far*East Movement Featuring Cataracs & Dev", + "title": "Like A G6", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Usher Featuring Pitbull", + "title": "DJ Got Us Fallin' In Love", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Waka Flocka Flame Featuring Roscoe Dash & Wale", + "title": "No Hands", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T.I. Featuring Eminem", + "title": "That's All She Wrote", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Edward Maya & Vika Jigulina", + "title": "Stereo Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Cee Lo Green", + "title": "F**k You (Forget You)", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Nicki Minaj", + "title": "Right Thru Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Band Perry", + "title": "If I Die Young", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Lil Wayne Featuring Drake", + "title": "Right Above It", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Flo Rida Featuring David Guetta", + "title": "Club Can't Handle Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Enrique Iglesias Featuring Pitbull", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Pitbull Featuring T-Pain", + "title": "Hey Baby (Drop It To The Floor)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rick Ross Featuring Drake & Chrisette Michele", + "title": "Aston Martin Music", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chris Brown Featuring Tyga & Kevin McCall", + "title": "Deuces", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Kenny Chesney", + "title": "Somewhere With You", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Eminem Featuring Lil Wayne", + "title": "No Love", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tim McGraw", + "title": "Felt Good On My Lips", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Ready Set", + "title": "Love Like Woe", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Trey Songz", + "title": "Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "David Guetta Featuring Kid Cudi", + "title": "Memories", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Zac Brown Band Featuring Alan Jackson", + "title": "As She's Walking Away", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Yolanda Be Cool & Dcup", + "title": "We No Speak Americano", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. Dre Featuring Snoop Dogg & Akon", + "title": "Kush", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Reba", + "title": "Turn On The Radio", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Carrie Underwood", + "title": "Mama's Song", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Glee Cast", + "title": "Welcome Christmas", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Keith Urban", + "title": "Put You In A Song", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jeremih Featuring 50 Cent", + "title": "Down On Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lloyd", + "title": "Lay It Down", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Michael Jackson Duet With Akon", + "title": "Hold My Hand", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "George Strait", + "title": "The Breath You Take", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Flo Rida Featuring Akon", + "title": "Who Dat Girl", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Billy Currington", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Brad Paisley", + "title": "Anything Like Me", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Kanye West Featuring Pusha T", + "title": "Runaway", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Linkin Park", + "title": "Waiting For The End", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Drake Featuring T.I. & Swizz Beatz", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Sick Puppies", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Miguel Featuring J. Cole", + "title": "All I Want Is You", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Twista Featuring Chris Brown", + "title": "Make A Movie", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Birdman Featuring Lil Wayne", + "title": "Fire Flame", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Toby Keith", + "title": "Bullets In The Gun", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Sean Kingston Featuring Nicki Minaj", + "title": "Letting Go (Dutty Love)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Jesse McCartney", + "title": "Shake", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Shakira Featuring El Cata or Dizzee Rascal", + "title": "Loca", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Glee Cast Featuring Gwyneth Paltrow", + "title": "Forget You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Kanye West Featuring Jay-Z, Rick Ross, Bon Iver & Nicki Minaj", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Dev Featuring The Cataracs", + "title": "Bass Down Low", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jamie Foxx Featuring Drake", + "title": "Fall For Your Type", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "My Darkest Days Featuring Zakk Wylde", + "title": "Porn Star Dancing", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Pitbull", + "title": "Bon, Bon", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 9, + "missing_count": 53, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2009 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 10, + "playlist_artist": "Maxwell", + "playlist_title": "Pretty Wings", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "918e2644-6132-b1ba-27db-880ecc759c39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Wings - Maxwell.mp4", + "title": "Pretty Wings" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Whitney Houston", + "playlist_title": "Million Dollar Bill", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "04c9217f-b7ae-043f-9d46-a6f7736665aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Million Dollar Bill - Whitney Houston.mp4", + "title": "Million Dollar Bill" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sade", + "playlist_title": "Soldier Of Love", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "guid": "4307d99f-cfee-ccfe-5501-f4529a9ec036", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Sade - Soldier Of Love - SF290 - 15.mp3", + "title": "Soldier Of Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher", + "title": "Papers", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "50 Cent Featuring Ne-Yo", + "title": "Baby By Me", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Young Money Featuring Lloyd", + "title": "Bedrock", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Mary Mary Featuring Kierra \"KiKi\" Sheard", + "title": "God In Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jaheim", + "title": "Ain't Leavin Without You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mary J. Blige", + "title": "I Am", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LeToya Featuring Ludacris", + "title": "Regret", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 1, + "missing_count": 19, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2009 - Hot Rock Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Foo Fighters", + "playlist_title": "Wheels", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "1067951e-0a89-9a85-95bd-c7899b18d818", + "path": "z://CDG\\Big Hits Karaoke\\BHK002\\BHK002-04 - Foo Fighters - Wheels.mp3", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alice In Chains", + "playlist_title": "Check My Brain", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d20b1c2b-9936-05e6-f7d4-c0ca2c4edff4", + "path": "z://CDG\\SBI\\SBI-03\\SB23034 - Alice In Chains - Check My Brain.mp3", + "title": "Check My Brain" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rise Against", + "playlist_title": "Savior", + "found_song": { + "artist": "Rise Against", + "disabled": false, + "favorite": false, + "guid": "ea6b7194-6ccd-6de8-428e-4b625eff7582", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Rise Against - Savior - SF290 - 06.mp3", + "title": "Savior" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Pearl Jam", + "playlist_title": "The Fixer", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25418865-e16d-9fd4-ba8e-90f1482df698", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - The Fixer.mp4", + "title": "The Fixer" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Linkin Park", + "playlist_title": "New Divide", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "e5801f1a-7a1a-fd9e-2e5e-8cf570df270a", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - New Divide (Karaoke Version).mp4", + "title": "New Divide" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Pearl Jam", + "playlist_title": "Just Breathe", + "found_song": { + "artist": "Pearl Jam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cead11aa-3e4f-5b21-0362-427825b95263", + "path": "z://MP4\\KaraokeOnVEVO\\Pearl Jam - Just Breathe.mp4", + "title": "Just Breathe" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Slipknot", + "playlist_title": "Snuff", + "found_song": { + "artist": "Slipknot", + "disabled": false, + "favorite": false, + "guid": "34337aeb-b14a-dfda-0942-ed0093d566ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Snuff - Slipknot.mp4", + "title": "Snuff" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alice In Chains", + "playlist_title": "Your Decision", + "found_song": { + "artist": "Alice In Chains", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef239797-06bf-37ed-5ade-63e6e3923341", + "path": "z://MP4\\KaraokeOnVEVO\\Alice In Chains - Your Decision.mp4", + "title": "Your Decision" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 5, + "artist": "Weezer", + "title": "(If You're Wondering If I Want You To) I Want You To", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Thirty Seconds To Mars", + "title": "Kings And Queens", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Sick Puppies", + "title": "You're Going Down", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Chevelle", + "title": "Jars", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Them Crooked Vultures", + "title": "New Fang", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Cage The Elephant", + "title": "Back Against The Wall", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Death Cab For Cutie", + "title": "Meet Me On The Equinox", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Creed", + "title": "Overcome", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Puddle Of Mudd", + "title": "Spaceship", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Flyleaf", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Adelitas Way", + "title": "Invincible", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 12, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2009 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "Boys Like Girls Featuring Taylor Swift", + "playlist_title": "Two Is Better Than One", + "found_song": { + "artist": "Boys Like Girls Featuring Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3542648-2001-42fc-900f-3255f35cc75a", + "path": "z://MP4\\Sing King Karaoke\\Boys Like Girls Featuring Taylor Swift - Two Is Better Than One.mp4", + "title": "Two Is Better Than One" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "title": "Do You Remember", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 4, + "missing_count": 3, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2009 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Hurry Home", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "guid": "02576a56-714c-b2bc-bc23-a37642231a3f", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Hurry Home (Karaoke).mp4", + "title": "Hurry Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "'Til Summer Comes Around", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "e97e0a87-9d43-d452-a51a-c58a320d672a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Til Summer Comes Around - Keith Urban.mp4", + "title": "Til Summer Comes Around" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Easton Corbin", + "playlist_title": "A Little More Country Than That", + "found_song": { + "artist": "Easton Corbin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "15aade79-f2fd-0832-72f7-0739b73f9fee", + "path": "z://MP4\\KaraokeOnVEVO\\Easton Corbin - A Little More Country Than That.mp4", + "title": "A Little More Country Than That" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Blake Shelton Featuring Trace Adkins", + "playlist_title": "Hillbilly Bone", + "found_song": { + "artist": "Blake Shelton Featuring Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5215450-6791-f138-5a51-89122806acaa", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton Featuring Trace Adkins - Hillbilly Bone.mp4", + "title": "Hillbilly Bone" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Didn't You Know How Much I Loved You", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "317d47c6-ec7b-b8c4-cf87-4036803ead56", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Didn t You Know How Much I Loved You - Kellie Pickler.mp4", + "title": "Didn t You Know How Much I Loved You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba", + "title": "Consider Me Gone", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Craig Morgan", + "title": "Bonfire", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jason Aldean", + "title": "The Truth", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Gary Allan", + "title": "Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Josh Thompson", + "title": "Beer On The Table", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Steel Magnolia", + "title": "Keep On Lovin' You", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Sarah Buxton", + "title": "Outside My Window", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 1, + "missing_count": 8, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2009 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Ke$ha", + "playlist_title": "TiK ToK", + "found_song": { + "artist": "Ke$ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1855dc57-bb9d-df2f-33a0-6942e6c716c0", + "path": "z://MP4\\Sing King Karaoke\\Ke$ha - TiK ToK.mp4", + "title": "TiK ToK" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lady Gaga", + "playlist_title": "Bad Romance", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "436d2936-f479-b11a-ec91-d7af3af23173", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Bad Romance (Karaoke Version).mp4", + "title": "Bad Romance" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Iyaz", + "playlist_title": "Replay", + "found_song": { + "artist": "Iyaz", + "disabled": false, + "favorite": false, + "guid": "ccf8b6f0-cfb1-f7d6-8a7b-f3c46a5d066a", + "path": "z://MP4\\Sing King Karaoke\\Iyaz - Replay (Karaoke Version).mp4", + "title": "Replay" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Owl City", + "playlist_title": "Fireflies", + "found_song": { + "artist": "Owl City", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bb0dbb2-7301-9d20-7992-9d816eb2c0e3", + "path": "z://MP4\\Sing King Karaoke\\Owl City - Fireflies.mp4", + "title": "Fireflies" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jason Derulo", + "playlist_title": "Whatcha Say", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "94a85fc5-f5f7-8d61-9a5c-e7abe0f8440e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whatcha Say - Jason Derulo.mp4", + "title": "Whatcha Say" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Meet Me Halfway", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "68efc260-11e6-55d8-86bc-cc0c40cb41af", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Meet Me Halfway.mp4", + "title": "Meet Me Halfway" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Britney Spears", + "playlist_title": "3", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "f5f3cf05-7161-e59d-e66e-9202138463a5", + "path": "z://MP4\\Stingray Karaoke\\3 in the style of Britney Spears karaoke video with lyrics.mp4", + "title": "3" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lady Gaga", + "playlist_title": "Paparazzi", + "found_song": { + "artist": "Lady Gaga", + "disabled": false, + "favorite": false, + "guid": "071804df-8b45-dc39-ed15-f4a3f426fe75", + "path": "z://MP4\\Sing King Karaoke\\Lady Gaga - Paparazzi (Karaoke Version).mp4", + "title": "Paparazzi" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cc2afda-ed27-642d-582a-238e326b0393", + "path": "z://MP4\\ZoomKaraokeOfficial\\Beyonce - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ludacris", + "playlist_title": "How Low", + "found_song": { + "artist": "Ludacris", + "disabled": false, + "favorite": false, + "guid": "3024463b-5293-87c0-e18d-c1ef1bbcd609", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Low - Ludacris.mp4", + "title": "How Low" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Already Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "61629e44-dd50-03f6-fcb5-7818f2e0ef97", + "path": "z://MP4\\Let's Sing Karaoke\\Kelly Clarkson - Already Gone (Karaoke & Lyrics).mp4", + "title": "Already Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Miley Cyrus", + "playlist_title": "Party In The U.S.A.", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07991aee-7c99-d263-1757-794f99e6e072", + "path": "z://MP4\\Sing King Karaoke\\Miley Cyrus - Party In The U.S.A..mp4", + "title": "Party In The U.S.A." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lady Antebellum", + "playlist_title": "Need You Now", + "found_song": { + "artist": "Lady Antebellum", + "disabled": false, + "favorite": false, + "guid": "acfc6bf1-8152-683c-e93f-f81e297f8e56", + "path": "z://MP4\\Sing King Karaoke\\Lady Antebellum - Need You Now (Karaoke Version).mp4", + "title": "Need You Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Use Somebody", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "fbf20b05-1a34-e520-909c-007ede36e5d1", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Use Somebody (Karaoke Version).mp4", + "title": "Use Somebody" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Cascada", + "playlist_title": "Evacuate The Dancefloor", + "found_song": { + "artist": "Cascada", + "disabled": false, + "favorite": false, + "guid": "39a8a83c-3742-10b2-82ed-8bf01c7000ee", + "path": "z://MP4\\Let's Sing Karaoke\\Cascada - Evacuate The Dancefloor (Karaoke & Lyrics).mp4", + "title": "Evacuate The Dancefloor" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Cowboy Casanova", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "7bdc0c1f-ba57-bf4e-f8fe-7f6ccb248ca8", + "path": "z://MP4\\Let's Sing Karaoke\\Carrie Underwood - Cowboy Casanova (Karaoke & Lyrics).mp4", + "title": "Cowboy Casanova" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Kris Allen", + "playlist_title": "Live Like We're Dying", + "found_song": { + "artist": "Kris Allen", + "disabled": false, + "favorite": false, + "guid": "393e6eef-77fe-3c5a-41bf-28da670c0cea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Live Like We re Dying - Kris Allen.mp4", + "title": "Live Like We re Dying" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Luke Bryan", + "playlist_title": "Do I", + "found_song": { + "artist": "Luke Bryan", + "disabled": false, + "favorite": false, + "guid": "48986704-7922-d348-026a-0ad699d58148", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do I - Luke Bryan.mp4", + "title": "Do I" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Fallin' For You", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "92120dbe-1482-c05b-3387-23d199071e50", + "path": "z://MP4\\KaraFun Karaoke\\Fallin' For You - Colbie Caillat Karaoke Version KaraFun.mp4", + "title": "Fallin' For You" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Time", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72e7ea74-55d2-4e8b-8c3d-56214835bcbf", + "path": "z://MP4\\Sing King Karaoke\\Justin Bieber - One Time.mp4", + "title": "One Time" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rihanna", + "playlist_title": "Russian Roulette", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "e2d82a36-0231-e12d-eac2-d80778e1e85e", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Russian Roulette (Karaoke Version).mp4", + "title": "Russian Roulette" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Train", + "playlist_title": "Hey, Soul Sister", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "85bb5db2-e340-c77a-5f3c-5f7cdf1df3eb", + "path": "z://MP4\\Sing King Karaoke\\Train - Hey, Soul Sister (Karaoke Version).mp4", + "title": "Hey, Soul Sister" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Lady Gaga Featuring Beyonce", + "playlist_title": "Telephone", + "found_song": { + "artist": "Lady Gaga Featuring Beyonce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b462d92b-1ac3-9090-3bba-f7f3d5b25b7f", + "path": "z://MP4\\Stingray Karaoke\\Lady Gaga Featuring Beyonce - Telephone.mp4", + "title": "Telephone" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Shinedown", + "playlist_title": "If You Only Knew", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc38338a-af7e-7873-8c25-a7aca1e5c1ec", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - If You Only Knew.mp4", + "title": "If You Only Knew" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tim McGraw", + "playlist_title": "Southern Voice", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0904831-da3f-1a10-6150-318602e47ba6", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Southern Voice.mp4", + "title": "Southern Voice" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dierks Bentley", + "playlist_title": "I Wanna Make You Close Your Eyes", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b1cdfa7-3d73-d6b5-ea34-d2c43aaac08d", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - I Wanna Make You Close Your Eyes.mp4", + "title": "I Wanna Make You Close Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Alicia Keys", + "playlist_title": "Try Sleeping With A Broken Heart", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "4b0ed5c0-e7dc-76b7-3d41-d0a0b221db82", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try Sleeping With A Broken Heart - Alicia Keys.mp4", + "title": "Try Sleeping With A Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Uncle Kracker", + "playlist_title": "Smile", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "671bb63a-db8d-3e83-15c4-91637841df52", + "path": "z://CDG\\Big Hits Karaoke\\BHK010\\BHK010-03 - Uncle Kracker - Smile.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "David Nail", + "playlist_title": "Red Light", + "found_song": { + "artist": "David Nail", + "disabled": false, + "favorite": false, + "guid": "5a5687b2-75fe-1d17-7f38-43af43490723", + "path": "z://MP4\\KaraokeOnVEVO\\David Nail - Red Light (Karaoke).mp4", + "title": "Red Light" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Chris Brown", + "playlist_title": "Crawl", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7caf5622-e447-206e-01dc-98d00135c590", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown - Crawl.mp4", + "title": "Crawl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jason Derulo", + "playlist_title": "In My Head", + "found_song": { + "artist": "Jason Derulo", + "disabled": false, + "favorite": false, + "guid": "60d9ae9a-034e-59ed-1a6c-ada712075acd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Head - Jason Derulo.mp4", + "title": "In My Head" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Muse", + "playlist_title": "Uprising", + "found_song": { + "artist": "Muse", + "disabled": false, + "favorite": false, + "guid": "7237029f-00b0-aadd-9841-b5cc4d46473b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF283\\Muse - Uprising - SF283 - 12.mp3", + "title": "Uprising" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Darius Rucker", + "playlist_title": "History In The Making", + "found_song": { + "artist": "Darius Rucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58d39d3e-8ce1-3495-cae9-d5b2313296cd", + "path": "z://MP4\\KaraokeOnVEVO\\Darius Rucker - History In The Making.mp4", + "title": "History In The Making" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Justin Bieber", + "playlist_title": "One Less Lonely Girl", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "8a4960a9-bf2e-3316-46da-c39364fc7ae9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Less Lonely Girl - Justin Bieber.mp4", + "title": "One Less Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Josh Turner", + "playlist_title": "Why Don't We Just Dance", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "f58be794-d898-09f8-71d8-aaf73c55b3d1", + "path": "z://MP4\\Let's Sing Karaoke\\Josh Turner - Why Don't We Just Dance (Karaoke & Lyrics).mp4", + "title": "Why Don't We Just Dance" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Jake Owen", + "playlist_title": "Eight Second Ride", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "guid": "bdcc0a85-0f0f-2f75-2898-a061ba15fdaf", + "path": "z://MP4\\Let's Sing Karaoke\\Jake Owen - Eight Second Ride (Karaoke & Lyrics).mp4", + "title": "Eight Second Ride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "OneRepublic", + "playlist_title": "All The Right Moves", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "guid": "4d2d9dae-4974-73d6-f6ee-2a9751ddbae3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Right Moves - OneRepublic.mp4", + "title": "All The Right Moves" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "I Will Not Bow", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "03366bf0-48a4-0318-2af1-86604bf8dd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Breaking Benjamin - I Will Not Bow - SF287 - 03.mp3", + "title": "I Will Not Bow" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Three Days Grace", + "playlist_title": "Break", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Billy Currington", + "playlist_title": "That's How Country Boys Roll", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3ef26214-eae2-a91c-d492-ef2a2a6add91", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF290\\Billy Currington - That's How Country Boys Roll - SF290 - 10.mp3", + "title": "That's How Country Boys Roll" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Chris Young", + "playlist_title": "Gettin' You Home (The Black Dress Song)", + "found_song": { + "artist": "Chris Young", + "disabled": false, + "favorite": false, + "guid": "3ba0dc43-3604-e250-ed2f-9890042f7a48", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gettin You Home (The Black Dress Song) - Chris Young.mp4", + "title": "Gettin You Home (The Black Dress Song)" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Toby Keith", + "playlist_title": "Cryin' For Me (Wayman's Song)", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "49c5cd85-5c37-7b08-4182-755400d7f95d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cryin For Me (Wayman s Song) - Toby Keith.mp4", + "title": "Cryin For Me (Wayman s Song)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Script", + "playlist_title": "Breakeven", + "found_song": { + "artist": "The Script", + "disabled": false, + "favorite": false, + "guid": "980c95dd-c486-ac6e-e63a-91e5d1485b40", + "path": "z://MP4\\KtvEntertainment\\The Script - Breakeven (Karaoke without Vocal).mp4", + "title": "Breakeven" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Beyonce", + "playlist_title": "Video Phone", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "29e10df2-f2f1-4246-0f59-9f2876b0f0b5", + "path": "z://MP4\\KtvEntertainment\\Beyonce - Video Phone Karaoke Lyrics.mp4", + "title": "Video Phone" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Lifehouse", + "playlist_title": "Halfway Gone", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "fb57a1c0-3d32-57c5-bb78-5bfbefad639f", + "path": "z://CDG\\Big Hits Karaoke\\BHK007\\BHK007-08 - Lifehouse - Halfway Gone.mp3", + "title": "Halfway Gone" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "George Strait", + "playlist_title": "Twang", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8acca077-c51c-690c-eebd-2d460737d5bc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Twang.mp4", + "title": "Twang" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Jay-Z + Alicia Keys", + "playlist_title": "Empire State Of Mind", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e0326cb6-3bd7-ec83-2b26-7b7b4551fc11", + "path": "z://MP4\\Karaoke Sing Sing\\Alicia Keys - Empire State Of Mind (Karaoke Version).mp4", + "title": "Empire State Of Mind" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "I Gotta Feeling", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "45dba26f-312e-273f-21ff-01d2730f5c19", + "path": "z://MP4\\Sing King Karaoke\\Black Eyed Peas - I Gotta Feeling (Karaoke Version).mp4", + "title": "I Gotta Feeling" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Taylor Swift", + "playlist_title": "You Belong With Me", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "669e1724-4b22-f047-f1b3-914ee0006a06", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - You Belong With Me (Karaoke Version).mp4", + "title": "You Belong With Me" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Taylor Swift", + "playlist_title": "Fifteen", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "0e673e55-e420-13de-9238-f5cc2fd70ce1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fifteen - Taylor Swift.mp4", + "title": "Fifteen" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Boys Like Girls Featuring Taylor Swift", + "playlist_title": "Two Is Better Than One", + "found_song": { + "artist": "Boys Like Girls Featuring Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3542648-2001-42fc-900f-3255f35cc75a", + "path": "z://MP4\\Sing King Karaoke\\Boys Like Girls Featuring Taylor Swift - Two Is Better Than One.mp4", + "title": "Two Is Better Than One" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Miranda Lambert", + "playlist_title": "White Liar", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "74ee9a13-732f-4725-eb18-6acaae4857be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke White Liar - Miranda Lambert.mp4", + "title": "White Liar" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 55, + "playlist_artist": "Orianthi", + "playlist_title": "According To You", + "found_song": { + "artist": "Orianthi", + "disabled": false, + "favorite": false, + "guid": "cc1f3c5d-cebd-ef23-e07d-2de8d56f9eba", + "path": "z://CDG\\Big Hits Karaoke\\BHK003\\BHK003-02 - Orianthi - According To U.mp3", + "title": "According To U" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Michael Buble", + "playlist_title": "Haven't Met You Yet", + "found_song": { + "artist": "Michael Bublé", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "a8029f1d-6e17-2260-d0ec-3e57ad0cf21f", + "path": "z://MP4\\Sing King Karaoke\\Michael Buble - Haven't Met You Yet.mp4", + "title": "Haven't Met You Yet" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Glee Cast", + "playlist_title": "Last Christmas", + "found_song": { + "artist": "Glee", + "disabled": false, + "favorite": false, + "guid": "2a10be40-8ef9-2dce-9350-3a525fe84a99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Christmas - Glee.mp4", + "title": "Last Christmas" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "David Guetta Featuring Akon", + "title": "Sexy Chick", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jay Sean Featuring Lil Wayne", + "title": "Down", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Drake Featuring Kanye West, Lil Wayne & Eminem", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jay Sean Featuring Sean Paul & Lil Jon", + "title": "Do You Remember", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Young Money Featuring Lloyd", + "title": "Bedrock", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Rihanna Featuring Jeezy", + "title": "Hard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chris Brown Featuring Lil Wayne & Swizz Beatz", + "title": "I Can Transform Ya", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Birdman Featuring Lil Wayne & Drake", + "title": "Money To Blow", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "50 Cent Featuring Ne-Yo", + "title": "Baby By Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Timbaland Featuring Justin Timberlake", + "title": "Carry Out", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Jay-Z, Rihanna & Kanye West", + "title": "Run This Town", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "New Boyz Feat. Ray J", + "title": "Tie Me Down", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Shakira Featuring Lil Wayne", + "title": "Give It Up To Me", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Snoop Dogg Featuring The-Dream", + "title": "Gangsta Luv", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Trey Songz Featuring Fabolous", + "title": "Say Aah", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Reba", + "title": "Consider Me Gone", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Gucci Mane Featuring Usher", + "title": "Spotlight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Trey Songz Featuring Drake", + "title": "I Invented Sex", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Jason Aldean", + "title": "The Truth", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Jenna Ushkowitz & Amber Riley", + "title": "My Life Would Suck Without You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Glee Cast Featuring Lea Michele", + "title": "Don't Rain On My Parade", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Melanie Fiona", + "title": "It Kills Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Usher", + "title": "Papers", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Nickelback", + "title": "Never Gonna Be Alone", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Lil Wayne", + "title": "On Fire", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Daughtry", + "title": "Life After You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Craig Morgan", + "title": "Bonfire", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Mary J. Blige", + "title": "I Am", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Gucci Mane Featuring Plies Or OJ Da Juiceman", + "title": "Wasted", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jesse McCartney Featuring T-Pain", + "title": "Body Language", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Glee Cast Featuring Lea Michele, Cory Monteith, Kevin McHale & Amber Riley", + "title": "You Can't Always Get What You Want", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Thirty Seconds To Mars", + "title": "This Is War", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rob Thomas", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Maxwell", + "title": "Bad Habits", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Snoop Dogg", + "title": "I Wanna Rock", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Thirty Seconds To Mars", + "title": "Kings And Queens", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Akon", + "title": "Shut It Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Phoenix", + "title": "1901", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Chris Brown Featuring Plies", + "title": "What I Do", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brad Paisley", + "title": "American Saturday Night", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Omarion Featuring Gucci Mane", + "title": "I Get It In", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Glee Cast Featuring Amber Riley", + "title": "And I Am Telling You I'm Not Going", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Weezer", + "title": "(If You're Wondering If I Want You To) I Want You To", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Drake Featuring Lil Wayne & Young Jeezy", + "title": "I'm Going In", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Ester Dean Featuring Chris Brown", + "title": "Drop It Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 9, + "missing_count": 45, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2008 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Keyshia Cole", + "playlist_title": "Heaven Sent", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "guid": "fc6015e5-9b3b-682c-3935-9c014e74104c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heaven Sent - Keyshia Cole.mp4", + "title": "Heaven Sent" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Jazmine Sullivan", + "title": "Need U Bad", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Usher", + "title": "Here I Stand", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 9, + "fuzzy_match_count": 0, + "missing_count": 16, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2008 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lady GaGa Featuring Colby O'Donis", + "playlist_title": "Just Dance", + "found_song": { + "artist": "Lady GaGa Featuring Colby O'Donis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5843103f-93a8-72ad-db44-7f1ffbb17170", + "path": "z://MP4\\Sing King Karaoke\\Lady GaGa Featuring Colby ODonis - Just Dance.mp4", + "title": "Just Dance" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Saving Abel", + "title": "Addicted", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Nickelback", + "title": "Gotta Be Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 2, + "missing_count": 4, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2008 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Jake Owen", + "playlist_title": "Don't Think I Can't Love You", + "found_song": { + "artist": "Jake Owen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1ccc605-62ba-23d3-e57f-afb1528816e9", + "path": "z://MP4\\KaraokeOnVEVO\\Jake Owen - Dont Think I Cant Love You.mp4", + "title": "Don't Think I Can't Love You" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Last Call", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "1b35cc99-ce09-c30a-71ec-190d1f8ee709", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Last Call (Karaoke).mp4", + "title": "Last Call" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "Ride", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0954a8d-3021-6534-3efc-ae8c4312a92a", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Ride.mp4", + "title": "Ride" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Sugarland", + "title": "Already Gone", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Tim McGraw", + "title": "Let It Go", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Billy Currington", + "title": "Don't", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lady Antebellum", + "title": "Lookin' For A Good Time", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Toby Keith", + "title": "God Love Her", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Pat Green", + "title": "Let Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Darius Rucker", + "title": "It Won't Be Like This For Long", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jack Ingram", + "title": "That's A Man", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 3, + "missing_count": 11, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2008 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Single Ladies (Put A Ring On It)", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "075e318d-eb9e-7318-cb97-c6ba3350cc84", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Single Ladies (Put A Ring On It) (Karaoke Version).mp4", + "title": "Single Ladies (Put A Ring On It)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "T.I. Featuring Rihanna", + "playlist_title": "Live Your Life", + "found_song": { + "artist": "T.I. Featuring Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b9265ed6-d6da-a482-4e69-1019f4150509", + "path": "z://MP4\\Sing King Karaoke\\T.I. Featuring Rihanna - Live Your Life.mp4", + "title": "Live Your Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Lady GaGa Featuring Colby O'Donis", + "playlist_title": "Just Dance", + "found_song": { + "artist": "Lady GaGa Featuring Colby O'Donis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5843103f-93a8-72ad-db44-7f1ffbb17170", + "path": "z://MP4\\Sing King Karaoke\\Lady GaGa Featuring Colby ODonis - Just Dance.mp4", + "title": "Just Dance" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Britney Spears", + "playlist_title": "Circus", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "390e5a9a-751b-0c64-6288-10790f9ced70", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Circus.mp4", + "title": "Circus" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Britney Spears", + "playlist_title": "Womanizer", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcefb7f8-fe43-e948-2788-b1c5e3c7ac0b", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Womanizer.mp4", + "title": "Womanizer" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kanye West", + "playlist_title": "Heartless", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92e1effb-78b2-6e67-e869-6a9f6fffc46f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF276\\Kanye West - Heartless - SF276 - 04.mp3", + "title": "Heartless" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Katy Perry", + "playlist_title": "Hot N Cold", + "found_song": { + "artist": "Katy Perry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d5ccdd4-d405-3e08-5cde-2dc953f1081a", + "path": "z://MP4\\Sing King Karaoke\\Katy Perry - Hot n Cold.mp4", + "title": "Hot 'n' Cold" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Beyonce", + "playlist_title": "If I Were A Boy", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "64559034-42d5-1b19-0e26-c6fc695ff428", + "path": "z://MP4\\Sing King Karaoke\\Beyonce - If I Were A Boy (Karaoke Version).mp4", + "title": "If I Were A Boy" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kanye West", + "playlist_title": "Love Lockdown", + "found_song": { + "artist": "Kanye West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97dc9c23-f72e-36e9-83cf-a1d5ea3dd395", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF273\\Kanye West - Love Lockdown - SF273 - 10.mp3", + "title": "Love Lockdown" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Mraz", + "playlist_title": "I'm Yours", + "found_song": { + "artist": "Jason Mraz", + "disabled": false, + "favorite": false, + "guid": "1aa84d9d-b3b8-9882-33a8-ffbbc18ae543", + "path": "z://MP4\\Sing King Karaoke\\Jason Mraz - I m Yours (Karaoke Version).mp4", + "title": "I m Yours" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "Miss Independent", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "0f836854-f33b-ef27-40da-611c30d8adc3", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Miss Independent (Karaoke Version).mp4", + "title": "Miss Independent" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Akon", + "playlist_title": "Right Now (Na Na Na)", + "found_song": { + "artist": "Akon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76c1a3fd-27ac-6bc4-8855-c7c637893121", + "path": "z://MP4\\Sing King Karaoke\\Akon - Right Now (Na Na Na).mp4", + "title": "Right Now (Na Na Na)" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Rihanna", + "playlist_title": "Rehab", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "51387995-2ed8-3c43-672d-e6568d645f5b", + "path": "z://MP4\\singsongsmusic\\Rehab - Karaoke HD (In the style of Rihanna).mp4", + "title": "Rehab" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Rihanna", + "playlist_title": "Disturbia", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "6fce86fa-208e-7111-1486-462d4726e0bf", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - Disturbia (Karaoke Version).mp4", + "title": "Disturbia" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Leona Lewis", + "playlist_title": "Better In Time", + "found_song": { + "artist": "Leona Lewis", + "disabled": false, + "favorite": false, + "guid": "50421a1a-e2a5-cace-e12d-8ce0a3d1e833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Better In Time - Leona Lewis.mp4", + "title": "Better In Time" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Fray", + "playlist_title": "You Found Me", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "f388ba54-073b-360e-f9d0-1cad21f9f7dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Found Me - The Fray.mp4", + "title": "You Found Me" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Coldplay", + "playlist_title": "Viva La Vida", + "found_song": { + "artist": "Coldplay", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8931e443-78aa-fbf3-6319-397dd7c15674", + "path": "z://MP4\\Sing King Karaoke\\Coldplay - Viva La Vida (Karaoke Version).mp4", + "title": "Viva La Vida" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Roll With Me", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8039544-687a-945b-74ad-217bdfcb451e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Roll With Me.mp4", + "title": "Roll With Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Gavin Rossdale", + "playlist_title": "Love Remains The Same", + "found_song": { + "artist": "Gavin Rossdale", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "81ed0429-f1d1-3eae-7aa5-0aef9c76b2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Gavin Rossdale - Love Remains The Same.mp4", + "title": "Love Remains The Same" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Gives You Hell", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "7dad4fb1-61a6-823b-1256-ee11db25784b", + "path": "z://MP4\\KaraFun Karaoke\\Gives You Hell - The All-American Rejects Karaoke Version KaraFun.mp4", + "title": "Gives You Hell" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Ne-Yo", + "playlist_title": "Closer", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47c15e29-f081-0b01-0dab-c81cc43909a4", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Closer.mp4", + "title": "Closer" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jazmine Sullivan", + "playlist_title": "Bust Your Windows", + "found_song": { + "artist": "Jazmine Sullivan", + "disabled": false, + "favorite": false, + "guid": "658e3b00-dea0-9118-a976-3d4b124c6daa", + "path": "z://MP4\\Sing King Karaoke\\Jazmine Sullivan - Bust Your Windows (Karaoke Version).mp4", + "title": "Bust Your Windows" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Killers", + "playlist_title": "Human", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4bad50ad-2e02-e1f5-5c4d-4e20e68542f5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Killers - Human.mp4", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "David Archuleta", + "playlist_title": "Crush", + "found_song": { + "artist": "David Archuleta", + "disabled": false, + "favorite": false, + "guid": "cc8a9d3e-6dff-62bc-4b89-d899016f4c75", + "path": "z://MP4\\Sing King Karaoke\\David Archuleta - Crush (Karaoke Version).mp4", + "title": "Crush" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Paramore", + "playlist_title": "Decode", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da54df3f-9093-5bea-ceac-0af75c8f0e31", + "path": "z://CDG\\SBI\\SBI-03\\SB21499 - Paramore - Decode.mp3", + "title": "Decode" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jennifer Hudson", + "playlist_title": "Spotlight", + "found_song": { + "artist": "Jennifer Hudson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d64763c4-1385-d437-90ee-6fcddf555c37", + "path": "z://MP4\\Sing King Karaoke\\Jennifer Hudson - Spotlight.mp4", + "title": "Spotlight" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Here", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3edb1fdf-0c1d-397b-990e-eb91b42a4e39", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Here.mp4", + "title": "Here" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Jamey Johnson", + "playlist_title": "In Color", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "guid": "b617d564-050a-a89e-1c5a-8c64213ac033", + "path": "z://MP4\\KtvEntertainment\\Jamey Johnson - In Color Karaoke Lyrics.mp4", + "title": "In Color" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blake Shelton", + "playlist_title": "She Wouldn't Be Gone", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "84abbd32-fafc-3021-400b-7d7bd6d0b78b", + "path": "z://MP4\\Stingray Karaoke\\She Wouldn't Be Gone in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "She Wouldn't Be Gone" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Feel That Fire", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49849445-69a4-75d9-b400-a9d3c1fd21cf", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Feel That Fire.mp4", + "title": "Feel That Fire" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alan Jackson", + "playlist_title": "Country Boy", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82aa2f3e-caf5-1262-4a59-ed9e5707b043", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Country Boy.mp4", + "title": "Country Boy" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Fall Out Boy", + "playlist_title": "I Don't Care", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7af6b14-97ab-8dc1-3e65-816c87a47d4d", + "path": "z://MP4\\KaraokeOnVEVO\\Fall Out Boy - I Dont Care.mp4", + "title": "I Don't Care" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Kings Of Leon", + "playlist_title": "Sex On Fire", + "found_song": { + "artist": "Kings Of Leon", + "disabled": false, + "favorite": false, + "guid": "9ba89680-0a2a-647f-c52f-9992542724ca", + "path": "z://MP4\\Sing King Karaoke\\Kings Of Leon - Sex On Fire (Karaoke Version).mp4", + "title": "Sex On Fire" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Keith Urban", + "playlist_title": "Sweet Thing", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3a4c27d8-3b47-acb3-30a3-6ad120385039", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Sweet Thing.mp4", + "title": "Sweet Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shinedown", + "playlist_title": "Second Chance", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "guid": "6e146379-b762-bd04-8c9e-3af5e0690ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Second Chance - Shinedown.mp4", + "title": "Second Chance" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Ne-Yo", + "playlist_title": "Mad", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b8aa97b-6416-a0d0-8cf9-6c8ad98d46ec", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - Mad.mp4", + "title": "Mad" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shontelle", + "playlist_title": "T-Shirt", + "found_song": { + "artist": "Shontelle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8fcc5c9-71e5-6cff-53da-45ac9381e738", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF277\\Shontelle - T-shirt - SF277 - 08.mp3", + "title": "T-shirt" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Matt Nathanson", + "playlist_title": "Come On Get Higher", + "found_song": { + "artist": "Matt Nathanson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "365329e3-cd5c-c2c0-23f7-6b28a86d7fb9", + "path": "z://MP4\\KaraokeOnVEVO\\Matt Nathanson - Come On Get Higher.mp4", + "title": "Come On Get Higher" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Daughtry", + "playlist_title": "What About Now", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "ecb3db8c-6add-3ac2-e663-930389ce59c0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF285\\Daughtry - What About Now - SF285 - 08.mp3", + "title": "What About Now" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "George Strait", + "playlist_title": "River Of Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8c80a56-8262-5c4d-5a59-d0dd2525d930", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - River Of Love.mp4", + "title": "River Of Love" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Lifehouse", + "playlist_title": "Broken", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f8369fb1-eaa2-55d7-7a30-9692ac3dfcc5", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Broken.mp4", + "title": "Broken" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Hinder", + "playlist_title": "Without You", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46c2eef0-5023-eb68-2fab-eff9ec13fd7d", + "path": "z://MP4\\KaraokeOnVEVO\\Hinder - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Avant", + "playlist_title": "When It Hurts", + "found_song": { + "artist": "Avant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc644d75-64a5-0591-b5f4-328e122caaeb", + "path": "z://MP4\\KaraokeOnVEVO\\Avant - When It Hurts.mp4", + "title": "When It Hurts" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Theory Of A Deadman", + "playlist_title": "Bad Girlfriend", + "found_song": { + "artist": "Theory Of A Deadman", + "disabled": false, + "favorite": false, + "guid": "15ab937f-8dd7-7ac3-93a1-454308296744", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bad Girlfriend - Theory Of A Deadman.mp4", + "title": "Bad Girlfriend" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Adele", + "playlist_title": "Chasing Pavements", + "found_song": { + "artist": "Adele", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9f0273d-5e88-7c75-0dbb-71ebff558acb", + "path": "z://MP4\\Sing King Karaoke\\Adele - Chasing Pavements.mp4", + "title": "Chasing Pavements" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Love Story", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "f353ab03-2759-f242-c99c-106381b685da", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Love Story (Karaoke Version).mp4", + "title": "Love Story" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Pink", + "playlist_title": "So What", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4057b55d-f41d-214a-87bc-a42f62671caf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Pink - So What.mp4", + "title": "So What" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Zac Brown Band", + "playlist_title": "Chicken Fried", + "found_song": { + "artist": "Zac Brown Band", + "disabled": false, + "favorite": false, + "guid": "672c1800-1cbb-26c4-4827-04651a471d99", + "path": "z://MP4\\Sing King Karaoke\\Zac Brown Band - Chicken Fried (Karaoke Version).mp4", + "title": "Chicken Fried" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "The Veronicas", + "playlist_title": "Untouched", + "found_song": { + "artist": "Veronicas", + "disabled": false, + "favorite": false, + "guid": "8bba1b5f-d320-d76b-f650-be614707844d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF280\\Veronicas - Untouched - SF280 - 10.mp3", + "title": "Untouched" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 49, + "playlist_artist": "Pink", + "playlist_title": "Sober", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "8deeec0f-944f-356a-23f7-079c9db1503e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pink - Sober - SF275 - 16.mp3", + "title": "Sober" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Taylor Swift", + "playlist_title": "White Horse", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "cdf1f750-b36e-3220-6569-f7e7170f2735", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - White Horse (Karaoke Version).mp4", + "title": "White Horse" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "I Hate This Part", + "found_song": { + "artist": "Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "aeda22a1-ef5c-57df-0366-231aa42ab5f8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF275\\Pussycat Dolls - I Hate This Part - SF275 - 08.mp3", + "title": "I Hate This Part" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Keeps Gettin' Better", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "b63ab5f1-a7a2-6e35-8549-a00ac0de61b6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF274\\Christina Aguilera - Keeps Getting Better - SF274 - 13.mp3", + "title": "Keeps Getting Better" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Randy Houser", + "playlist_title": "Anything Goes", + "found_song": { + "artist": "Randy Houser", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76dcb091-130e-9cb4-a0ea-a89967b304db", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Houser - Anything Goes.mp4", + "title": "Anything Goes" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "T.I.", + "title": "Whatever You Like", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Kevin Rudolf Featuring Lil Wayne", + "title": "Let It Rock", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Nickelback", + "title": "Gotta Be Somebody", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "T-Pain Featuring Lil Wayne", + "title": "Can't Believe It", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lil Wayne Featuring Bobby Valentino & Kidd Kidd", + "title": "Mrs. Officer", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Saving Abel", + "title": "Addicted", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Legend Featuring Andre 3000", + "title": "Green Light", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jim Jones & Ron Browz Featuring Juelz Santana", + "title": "Pop Champagne", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ludacris Co-Starring T-Pain", + "title": "One More Drink", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "T-Pain Featuring Ludacris", + "title": "Chopped 'N' Skrewed", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Akon Featuring Colby O'Donis & Kardinal Offishall", + "title": "Beautiful", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Akon Featuring Lil Wayne & Young Jeezy", + "title": "I'm So Paid", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brandy", + "title": "Right Here (Departed)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "O.A.R.", + "title": "Shattered (Turn The Car Around)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Sugarland", + "title": "Already Gone", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Secondhand Serenade", + "title": "Fall For You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Usher", + "title": "Trading Places", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "David Cook", + "title": "Light On", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay-Z & T.I. Featuring Kanye West & Lil Wayne", + "title": "Swagga Like Us", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Brad Paisley Duet With Keith Urban", + "title": "Start A Band", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Brooks & Dunn Featuring Reba McEntire", + "title": "Cowgirls Don't Cry", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Carrie Underwood", + "title": "Just A Dream", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Billy Currington", + "title": "Don't", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Game Featuring Lil Wayne", + "title": "My Life", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Plies Featuring Chris J", + "title": "Put It On Ya", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Toby Keith", + "title": "God Love Her", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Keyshia Cole Featuring 2Pac", + "title": "Playa Cardz Right", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Tim McGraw", + "title": "Let It Go", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Savage Featuring Soulja Boy Tell'em", + "title": "Swing", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lady Antebellum", + "title": "Lookin' For A Good Time", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Musiq Soulchild Featuring Mary J. Blige", + "title": "IfULeave", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Common Featuring Pharrell", + "title": "Universal Mind Control", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jamie Foxx Featuring T.I.", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Offspring", + "title": "You're Gonna Go Far, Kid", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Kenny Chesney With Mac McAnally", + "title": "Down The Road", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Metro Station", + "title": "Seventeen Forever", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Pitbull Featuring Lil Jon", + "title": "Krazy", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Apocalyptica Featuring Adam Gontier", + "title": "I Don't Care", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Busta Rhymes", + "title": "Arab Money", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Chesney With The Wailers", + "title": "Everybody Wants To Go To Heaven", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ne-Yo Featuring Jamie Foxx & Fabolous", + "title": "She Got Her Own", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "50 Cent", + "title": "Get Up", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Craig Morgan", + "title": "Love Remembers", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kanye West Featuring Lil Wayne", + "title": "See You In My Nightmares", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "T.I. Featuring Justin Timberlake", + "title": "Dead And Gone", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Luis Fonsi", + "title": "No Me Doy Por Vencido", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 45, + "fuzzy_match_count": 9, + "missing_count": 46, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2007 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Chris Brown Featuring T-Pain", + "playlist_title": "Kiss Kiss", + "found_song": { + "artist": "Chris Brown Featuring T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0329fd3-dadd-bee1-8807-ae090b3a1b64", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown Featuring T-Pain - Kiss Kiss.mp4", + "title": "Kiss Kiss" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Timbaland Featuring OneRepublic", + "title": "Apologize", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Fergie", + "title": "Clumsy", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rihanna Featuring Ne-Yo", + "title": "Hate That I Love You", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Flo Rida Featuring T-Pain", + "title": "Low", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Timbaland Featuring Keri Hilson", + "title": "The Way I Are", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Paramore", + "title": "Misery Business", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sean Kingston", + "title": "Take You There", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 2, + "missing_count": 12, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2007 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Alan Jackson", + "playlist_title": "Small Town Southern Man", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ce7b0be-b9ba-a551-4ccd-2120473ea9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Small Town Southern Man.mp4", + "title": "Small Town Southern Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Blake Shelton", + "playlist_title": "The More I Drink", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "20d51adc-8017-3854-44fd-b62770c8aece", + "path": "z://MP4\\TheKARAOKEChannel\\The More I Drink in the Style of Blake Shelton with lyrics (no lead vocal).mp4", + "title": "The More I Drink" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Chris Cagle", + "playlist_title": "What Kinda Gone", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c6474876-0f49-bd73-25e6-7900c3a41139", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - What Kinda Gone.mp4", + "title": "What Kinda Gone" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tim McGraw", + "playlist_title": "Suspicions", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67eb60a7-2bad-5621-18a8-784e1fd3204f", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Suspicions.mp4", + "title": "Suspicions" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Eagles", + "playlist_title": "How Long", + "found_song": { + "artist": "Eagles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d577c63c-d280-cfa8-3bc3-1bb5e91d8677", + "path": "z://CDG\\SBI\\SBI-01\\SB02414 - The Eagles - How Long.mp3", + "title": "How Long" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "God Must Be Busy", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "96e031db-78d6-f97f-4554-c571ed8f56e9", + "path": "z://MP4\\KaraFun Karaoke\\God Must Be Busy - Brooks & Dunn Karaoke Version KaraFun.mp4", + "title": "God Must Be Busy" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 13, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Toby Keith", + "title": "Get My Drink On", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jason Aldean", + "title": "Laughed Until We Cried", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kenny Chesney", + "title": "Shiftwork", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 3, + "missing_count": 4, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2007 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "No One", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "ab82b65b-e5ce-e790-1b8f-2e7733880f86", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - No One (Karaoke Version).mp4", + "title": "No One" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Chris Brown Featuring T-Pain", + "playlist_title": "Kiss Kiss", + "found_song": { + "artist": "Chris Brown Featuring T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0329fd3-dadd-bee1-8807-ae090b3a1b64", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Brown Featuring T-Pain - Kiss Kiss.mp4", + "title": "Kiss Kiss" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Colbie Caillat", + "playlist_title": "Bubbly", + "found_song": { + "artist": "Colbie Caillat", + "disabled": false, + "favorite": false, + "guid": "eac41717-e3f8-97eb-ba86-c38687004871", + "path": "z://MP4\\Sing King Karaoke\\Colbie Caillat - Bubbly (Karaoke Version).mp4", + "title": "Bubbly" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jordin Sparks", + "playlist_title": "Tattoo", + "found_song": { + "artist": "Jordin Sparks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eebfd3e1-f8af-453d-680b-16391938880e", + "path": "z://MP4\\Sing King Karaoke\\Jordin Sparks - Tattoo.mp4", + "title": "Tattoo" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Alicia Keys", + "playlist_title": "Like You'll Never See Me Again", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "78376b2e-5369-5505-3d1c-0a332e11ea10", + "path": "z://MP4\\Stingray Karaoke\\Like You'll Never See Me Again in the style of Alicia Keys karaoke version with lyrics.mp4", + "title": "Like You'll Never See Me Again" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Sara Bareilles", + "playlist_title": "Love Song", + "found_song": { + "artist": "Sara Bareilles", + "disabled": false, + "favorite": false, + "guid": "3b2cb5a0-e4d5-90d1-5b46-a5326e1231d5", + "path": "z://MP4\\Sing King Karaoke\\Sara Bareilles - Love Song (Karaoke Version).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Just Fine", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "abf774d6-7e51-7fa4-bf53-eb90eeda6e44", + "path": "z://MP4\\KaraFun Karaoke\\Just Fine - Mary J. Blige Karaoke Version KaraFun.mp4", + "title": "Just Fine" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "matchbox twenty", + "playlist_title": "How Far We've Come", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "ef6caefd-e49f-7e8b-c30d-979251c67e7e", + "path": "z://MP4\\KaraFun Karaoke\\How Far We've Come - Matchbox Twenty Karaoke Version KaraFun.mp4", + "title": "How Far We've Come" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Linkin Park", + "playlist_title": "Shadow Of The Day", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "8b4ddd08-2881-f0bb-b835-b505aca61751", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Shadow Of The Day (Karaoke Version).mp4", + "title": "Shadow Of The Day" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Daughtry", + "playlist_title": "Over You", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "5d4c1743-6c5f-b0a9-c128-cd1410ab6398", + "path": "z://MP4\\TheKARAOKEChannel\\Daughtry - Over You.mp4", + "title": "Over You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Fergie", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "c1c3630f-f208-ee8a-7c9f-d54265a3b077", + "path": "z://MP4\\Sing King Karaoke\\Fergie - Big Girls Don't Cry (Personal) (Karaoke Version).mp4", + "title": "Big Girls Don't Cry" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Maroon 5", + "playlist_title": "Wake Up Call", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "guid": "1c6d8f76-7c06-609c-e907-4ad2aacfe2bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Up Call - Maroon 5.mp4", + "title": "Wake Up Call" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Britney Spears", + "playlist_title": "Piece Of Me", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "87cd88ce-3db0-8d5b-2c7e-674a12d36894", + "path": "z://MP4\\Stingray Karaoke\\Piece Of Me Britney Spears Karaoke with Lyrics.mp4", + "title": "Piece Of Me" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Rihanna", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "guid": "19f7b772-493f-6b3c-7cfb-c659a562a5be", + "path": "z://MP4\\KaraFun Karaoke\\Don’t Stop The Music - Rihanna Karaoke Version KaraFun.mp4", + "title": "Don’t Stop The Music" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Kenny Chesney", + "playlist_title": "Don't Blink", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d581bacb-0f12-4954-ea86-2b1d473e3c0a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Blink - Kenny Chesney.mp4", + "title": "Don t Blink" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Josh Turner", + "playlist_title": "Firecracker", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "25b93310-8c63-13d9-e174-1f2ed851624b", + "path": "z://MP4\\TheKARAOKEChannel\\Josh Turner - Firecracker.mp4", + "title": "Firecracker" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "George Strait", + "playlist_title": "How 'Bout Them Cowgirls", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "127ad588-d2fb-2325-f806-3e757b46f7f9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - How Bout Them Cowgirls.mp4", + "title": "How 'Bout Them Cowgirls" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Carrie Underwood", + "playlist_title": "So Small", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "53d25d73-a486-4a54-a208-71bf86acf521", + "path": "z://MP4\\TheKARAOKEChannel\\So Small in the Style of Carrie Underwood with lyrics (no lead vocal).mp4", + "title": "So Small" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Foo Fighters", + "playlist_title": "The Pretender", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "5f7e8bdf-3b22-92c9-1f7f-39c0e3c9cf35", + "path": "z://MP4\\KaraFun Karaoke\\The Pretender - Foo Fighters Karaoke Version KaraFun.mp4", + "title": "The Pretender" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Seether", + "playlist_title": "Fake It", + "found_song": { + "artist": "Seether", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d53f6990-fd19-621a-1768-b76a28c4e664", + "path": "z://MP4\\KaraokeOnVEVO\\Seether - Fake It.mp4", + "title": "Fake It" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "What Do Ya Think About That", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "guid": "348b2e06-a748-b366-6b20-85d0dadb4617", + "path": "z://MP4\\TheKARAOKEChannel\\What Do Ya Think About That in the style of Montgomery Gentry Karaoke with Lyrics.mp4", + "title": "What Do Ya Think About That" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Jack Johnson", + "playlist_title": "If I Had Eyes", + "found_song": { + "artist": "Jack Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8f18acbd-6ff9-50e3-1301-de5a6b2716cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Jack Johnson - If I Had Eyes - SF264 - 15.mp3", + "title": "If I Had Eyes" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Brad Paisley", + "playlist_title": "Letter To Me", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "ce8f01da-2498-81c5-5512-8b9b0e0afb38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Letter To Me - Brad Paisley.mp4", + "title": "Letter To Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Winner At A Losing Game", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "91c670a5-be62-2d85-fb2a-b279a6e75f87", + "path": "z://CDG\\Various\\Rascal Flatts - Winner At A Losing Game.mp3", + "title": "Winner At A Losing Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Britney Spears", + "playlist_title": "Gimme More", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "904aa4c6-ecc7-fd42-904b-dd47567bb659", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - Gimme More.mp4", + "title": "Gimme More" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Feist", + "playlist_title": "1234", + "found_song": { + "artist": "Feist", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce51464a-c798-d73f-2b03-64871ac4437b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Feist - 1234.mp4", + "title": "1234" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Keith Urban", + "playlist_title": "Everybody", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "993c3258-13b9-b3ad-8d82-398b4fc4454b", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Everybody.mp4", + "title": "Everybody" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Three Days Grace", + "playlist_title": "Never Too Late", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "93f41381-7a43-06c0-b3b6-297a57cd6d84", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Late - Three Days Grace.mp4", + "title": "Never Too Late" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Gary Allan", + "playlist_title": "Watching Airplanes", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ed31a3b-03ea-e34c-779c-68fafc5bfd07", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Watching Airplanes.mp4", + "title": "Watching Airplanes" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Chris Brown", + "playlist_title": "This Christmas", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "851593b2-ddff-d000-b2a2-6a8e23ced309", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Christmas - Chris Brown.mp4", + "title": "This Christmas" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Miley Cyrus", + "playlist_title": "See You Again", + "found_song": { + "artist": "Miley Cyrus", + "disabled": false, + "favorite": false, + "guid": "96e4ce80-ed7c-f6a1-43b7-5a9aa27b27b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke See You Again - Miley Cyrus.mp4", + "title": "See You Again" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Boys Like Girls", + "playlist_title": "Hero/Heroine", + "found_song": { + "artist": "Boys Like Girls", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5428a78f-2dc5-e1ae-a185-e1634c82b4b4", + "path": "z://MP4\\KaraokeOnVEVO\\Boys Like Girls - HeroHeroine.mp4", + "title": "Hero/Heroine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Keyshia Cole", + "playlist_title": "I Remember", + "found_song": { + "artist": "Keyshia Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a03be123-ace2-4beb-4f57-a4901c62fddb", + "path": "z://MP4\\KaraokeOnVEVO\\Keyshia Cole - I Remember.mp4", + "title": "I Remember" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Linkin Park", + "playlist_title": "Bleed It Out", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "d47f94e2-42a9-c025-1c4e-0522d279e454", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park - Bleed It Out (clean) (Karaoke Version).mp4", + "title": "Bleed It Out" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Maroon 5", + "playlist_title": "Won't Go Home Without You", + "found_song": { + "artist": "Maroon 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "680af3d0-df8b-4c1c-acbc-22f7cc8f071d", + "path": "z://MP4\\Sing King Karaoke\\Maroon 5 - Wont Go Home Without You.mp4", + "title": "Won't Go Home Without You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin' Better To Do", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef417a0e-0e17-1ab5-27e1-90d683e37b29", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Better To Do.mp4", + "title": "Nothin' Better To Do" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Ingrid Michaelson", + "playlist_title": "The Way I Am", + "found_song": { + "artist": "Ingrid Michaelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "63ecba86-bc51-ae6d-28d2-b2e5cf5198ec", + "path": "z://MP4\\KaraokeOnVEVO\\Ingrid Michaelson - The Way I Am.mp4", + "title": "The Way I Am" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Rodney Atkins", + "playlist_title": "Cleaning This Gun (Come On In Boy)", + "found_song": { + "artist": "Rodney Atkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8544d0f6-dee9-d916-30ab-80ca77ef30cb", + "path": "z://MP4\\KaraokeOnVEVO\\Rodney Atkins - Cleaning This Gun (Come On In Boy.mp4", + "title": "Cleaning This Gun (Come On In Boy)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Garth Brooks", + "playlist_title": "More Than A Memory", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7aa028f-bfca-d26d-ae15-3e80615d2bdf", + "path": "z://MP4\\KaraokeOnVEVO\\Garth Brooks - More Than A Memory.mp4", + "title": "More Than A Memory" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Jonas Brothers", + "playlist_title": "S.O.S.", + "found_song": { + "artist": "Jonas Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e186ad93-8311-fb96-e9d3-9ecb627e9123", + "path": "z://MP4\\KaraokeOnVEVO\\Jonas Brothers - SOS.mp4", + "title": "S.O.S." + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Livin' Our Love Song", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5de04b41-deef-f62b-343b-8f58d54b330e", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Livin Our Love Song.mp4", + "title": "Livin' Our Love Song" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Chuck Wicks", + "playlist_title": "Stealing Cinderella", + "found_song": { + "artist": "Chuck Wicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27fe3c59-b664-59cc-6383-b1a6f3b519f8", + "path": "z://MP4\\KaraokeOnVEVO\\Chuck Wicks - Stealing Cinderella.mp4", + "title": "Stealing Cinderella" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Free And Easy (Down The Road I Go)", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b438180-6926-b78f-7559-6c921a75af62", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - Free And Easy (Down The Road I Go.mp4", + "title": "Free And Easy (Down The Road I Go)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Craig Morgan", + "playlist_title": "International Harvester", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c9e071e-8cf3-b44f-f8c2-b910e60a4f69", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - International Harvester.mp4", + "title": "International Harvester" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "OneRepublic", + "playlist_title": "Stop And Stare", + "found_song": { + "artist": "OneRepublic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03289aaa-526b-9953-f130-bc5f223b1c03", + "path": "z://MP4\\Sing King Karaoke\\One Republic - Stop And Stare.mp4", + "title": "Stop And Stare" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Work That", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fc727fb1-7390-5af3-e50e-129c167c4ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Work That.mp4", + "title": "Work That" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "Kanye West", + "playlist_title": "Stronger", + "found_song": { + "artist": "Kayne West", + "disabled": false, + "favorite": false, + "guid": "d0c03213-2249-8502-f4ea-c42eefcfa356", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF259\\Kayne West - Stronger - SF259 - 07.mp3", + "title": "Stronger" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Taylor Swift", + "playlist_title": "Our Song", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4ea0498-6923-79f0-23b0-bef5cf779ea2", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Our Song.mp4", + "title": "Our Song" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Taylor Swift", + "playlist_title": "Teardrops On My Guitar", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "9c51883b-589d-4ce5-9e40-d6e3ae3880cb", + "path": "z://MP4\\Sing King Karaoke\\Taylor Swift - Teardrops On My Guitar (Pop Version - Karaoke).mp4", + "title": "Teardrops On My Guitar" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "The-Dream", + "playlist_title": "Shawty Is A 10", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82d2ec44-3390-25c2-a174-36e3d6bc0d86", + "path": "z://CDG\\SBI\\SBI-04\\SB16677 - Dream - Shawty Is A 10.mp3", + "title": "Shawty Is A 10" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Kanye West Featuring Dwele", + "playlist_title": "Flashing Lights", + "found_song": { + "artist": "Kanya West Feat Dwele", + "disabled": false, + "favorite": false, + "guid": "b856d440-2863-0473-91e0-980e95914779", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF267\\Kanya West Feat Dwele - Flashing Lights - SF267 - 05.mp3", + "title": "Flashing Lights" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Sugarland", + "playlist_title": "Stay", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "e86a288a-784d-c73b-55ab-dc36ae7b1d3d", + "path": "z://MP4\\Sing King Karaoke\\Sugarland - Stay (Karaoke Version).mp4", + "title": "Stay" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Pink", + "playlist_title": "Who Knew", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "438c631d-2f7c-146c-9179-077bdda041d2", + "path": "z://MP4\\Sing King Karaoke\\P!nk - Who Knew (Karaoke Version).mp4", + "title": "Who Knew" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Lupe Fiasco Featuring Matthew Santos", + "playlist_title": "Superstar", + "found_song": { + "artist": "Lupe Fiasco Feat Matthew Santos", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9c28c6a-1fdd-6cbb-8a2a-45566b759555", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF264\\Lupe Fiasco Feat Matthew Santos - Superstar - SF264 - 13.mp3", + "title": "Superstar" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paramore", + "playlist_title": "Crushcrushcrush", + "found_song": { + "artist": "Paramore", + "disabled": false, + "favorite": false, + "guid": "44db5b5e-5e9b-fa1e-09b7-3aa36ee745cb", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF262\\Paramore - Crush Crush Crush - SF262 - 08.mp3", + "title": "Crush Crush Crush" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Flo Rida Featuring T-Pain", + "title": "Low", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Timbaland Featuring OneRepublic", + "title": "Apologize", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Fergie", + "title": "Clumsy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Finger Eleven", + "title": "Paralyzer", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Rihanna Featuring Ne-Yo", + "title": "Hate That I Love You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Kanye West Featuring T-Pain", + "title": "Good Life", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Soulja Boy Tell'em", + "title": "Crank That (Soulja Boy)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Baby Bash Featuring T-Pain", + "title": "Cyclone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Plies Featuring Akon", + "title": "Hypnotized", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Trey Songz", + "title": "Can't Help But Wait", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Sean Kingston", + "title": "Take You There", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Natasha Bedingfield Featuring Sean Kingston", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Timbaland Featuring Keri Hilson", + "title": "The Way I Are", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Playaz Circle Featuring Lil Wayne", + "title": "Duffle Bag Boy", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Wyclef Jean Featuring Akon, Lil Wayne & Niia", + "title": "Sweetest Girl (Dollar Bill)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Chris Brown", + "title": "With You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "DJ Khaled Featuring T-Pain, Trick Daddy, Rick Ross & Plies", + "title": "I'm So Hood", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Santana Featuring Chad Kroeger", + "title": "Into The Night", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Bow Wow & Omarion", + "title": "Girlfriend", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Good Charlotte", + "title": "I Don't Wanna Be In Love (Dance Floor Anthem)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Paramore", + "title": "Misery Business", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Snoop Dogg", + "title": "Sensual Seduction", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Justin Timberlake Duet With Beyonce", + "title": "Until The End Of Time", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "J. Holiday", + "title": "Suffocate", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "J. Holiday", + "title": "Bed", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Birdman Featuring Lil Wayne", + "title": "Pop Bottles", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Keyshia Cole Introducing Amina", + "title": "Shoulda Let You Go", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "DJ Felli Fel Featuring Diddy, Akon, Ludacris & Lil Jon", + "title": "Get Buck In Here", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Soulja Boy Tell'em Featuring I-15", + "title": "Soulja Girl", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "50 Cent Featuring Justin Timberlake & Timbaland", + "title": "Ayo Technology", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cassidy Featuring Swizz Beatz", + "title": "My Drink N' My 2 Step", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Billy Ray Cyrus With Miley Cyrus", + "title": "Ready, Set, Don't Go", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Buckcherry", + "title": "Sorry", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Webbie, Lil' Phat & Lil' Boosie", + "title": "Independent", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Fabolous Featuring Jermaine Dupri", + "title": "Baby Don't Go", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Enur Featuring Natasja", + "title": "Calabria 2008", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Mario", + "title": "Crying Out For Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Gucci Mane", + "title": "Freaky Gurl", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Clay Walker", + "title": "Fall", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Last Goodnight", + "title": "Pictures Of You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Jay-Z", + "title": "Roc Boys (And The Winner Is)...", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Sara Evans", + "title": "As If", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Juanes", + "title": "Me Enamora", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Colbie Caillat", + "title": "Mistletoe", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 9, + "missing_count": 44, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "2006 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Akon Featuring Snoop Dogg", + "playlist_title": "I Wanna Love You", + "found_song": { + "artist": "Akon Featuring Snoop Dogg", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d583fc-6fb2-4688-b935-618444f4b46d", + "path": "z://MP4\\KaraokeOnVEVO\\Akon Featuring Snoop Dogg - I Wanna Love You.mp4", + "title": "I Wanna Love You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Justin Timberlake Featuring T.I.", + "title": "My Love", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Akon Featuring Eminem", + "title": "Smack That", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Rihanna & Sean Paul", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Vanessa Hudgens", + "title": "Come Back To Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 7, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2006 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jason Michael Carroll", + "playlist_title": "Alyssa Lies", + "found_song": { + "artist": "Jason Michael Carroll", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a543310-a878-003b-c6f0-e5ea2d5fc507", + "path": "z://MP4\\KaraokeOnVEVO\\Jason Michael Carroll - Alyssa Lies.mp4", + "title": "Alyssa Lies" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Martina McBride", + "playlist_title": "Anyway", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "b7e5bea2-54ed-7cb3-7d90-d5c53340bd2b", + "path": "z://CDG\\Various\\Martina McBride - Anyway.mp3", + "title": "Anyway" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Joe Nichols", + "playlist_title": "I'll Wait For you", + "found_song": { + "artist": "Joe Nichols", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8cbf81-9a83-081f-0b31-95adf822cb8a", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Nichols - Ill Wait For you.mp4", + "title": "I'll Wait For you" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Sara Evans", + "playlist_title": "You'll Always Be My Baby", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8300b37-e4ca-bf00-c53c-3558fd753824", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Youll Always Be My Baby.mp4", + "title": "You'll Always Be My Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "The Wreckers", + "playlist_title": "My, Oh My", + "found_song": { + "artist": "Wreckers", + "disabled": false, + "favorite": false, + "guid": "be2efa61-f0d7-0fb9-aac4-213b734fa74a", + "path": "z://CDG\\Various\\Wreckers - My, Oh My.mp3", + "title": "My, Oh My" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Brad Paisley", + "title": "She's Everything", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Montgomery Gentry", + "title": "Some People Change", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Phil Vassar", + "title": "The Woman In My Life", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Darryl Worley", + "title": "I Just Came Back From A War", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Little Big Town", + "title": "Good As Gone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gary Allan", + "title": "A Feelin' Like That", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 8, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2006 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Beyonce", + "playlist_title": "Irreplaceable", + "found_song": { + "artist": "Beyoncé", + "disabled": false, + "favorite": false, + "guid": "ad1d2b7d-ff8d-7a5d-e18b-e17ad5adc033", + "path": "z://MP4\\Sing King Karaoke\\Beyoncé - Irreplaceable (Karaoke Version).mp4", + "title": "Irreplaceable" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Akon Featuring Snoop Dogg", + "playlist_title": "I Wanna Love You", + "found_song": { + "artist": "Akon Featuring Snoop Dogg", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d583fc-6fb2-4688-b935-618444f4b46d", + "path": "z://MP4\\KaraokeOnVEVO\\Akon Featuring Snoop Dogg - I Wanna Love You.mp4", + "title": "I Wanna Love You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Fergie", + "playlist_title": "Fergalicious", + "found_song": { + "artist": "Fergie", + "disabled": false, + "favorite": false, + "guid": "3e23f125-30ef-ec82-d8bf-a577b31e3351", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Fergie - Fergalicious - SF250 - 08.mp3", + "title": "Fergalicious" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Say It Right", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "cd88ad8c-ab56-4083-2274-be67a46b36d1", + "path": "z://MP4\\Sing King Karaoke\\Nelly Furtado - Say It Right (Karaoke Version).mp4", + "title": "Say It Right" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Fray", + "playlist_title": "How To Save A Life", + "found_song": { + "artist": "The Fray", + "disabled": false, + "favorite": false, + "guid": "55f55492-b883-3872-3971-e52bc34fc281", + "path": "z://MP4\\Sing King Karaoke\\The Fray - How To Save A Life (Karaoke Version).mp4", + "title": "How To Save A Life" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hinder", + "playlist_title": "Lips Of An Angel", + "found_song": { + "artist": "Hinder", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "57e14435-88b4-688d-b762-bf977f60b629", + "path": "z://MP4\\Sing King Karaoke\\Hinder - Lips Of An Angel.mp4", + "title": "Lips Of An Angel" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ciara", + "playlist_title": "Promise", + "found_song": { + "artist": "Ciara", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ab5e084-48f3-f0cb-67e1-ad955b369bfb", + "path": "z://MP4\\KaraokeOnVEVO\\Ciara - Promise.mp4", + "title": "Promise" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Wind It Up", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "63203cfd-2f78-aef1-c72f-2c9ec5bf542b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF251\\Gwen Stefani - Wind It Up - SF251 - 03.mp3", + "title": "Wind It Up" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Justin Timberlake", + "playlist_title": "SexyBack", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "ca76f693-1642-e7a0-23aa-34ebea9e2014", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - SexyBack (Karaoke Version).mp4", + "title": "SexyBack" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Snow Patrol", + "playlist_title": "Chasing Cars", + "found_song": { + "artist": "Snow Patrol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e78427c5-668d-1b90-5154-ff6736ea6326", + "path": "z://MP4\\Sing King Karaoke\\Snow Patrol - Chasing Cars.mp4", + "title": "Chasing Cars" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The All-American Rejects", + "playlist_title": "It Ends Tonight", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd2053e4-de08-ba1f-dc7b-9f9ed85a0b57", + "path": "z://MP4\\KaraokeOnVEVO\\The All-American Rejects - It Ends Tonight.mp4", + "title": "It Ends Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Keep Holding On", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4331b8d1-ac13-c9c9-7331-09eca3a72f98", + "path": "z://MP4\\ZoomKaraokeOfficial\\Avril Lavigne - Keep Holding On.mp4", + "title": "Keep Holding On" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Nickelback", + "playlist_title": "Far Away", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e6a2532f-6885-168f-8a32-9b72a975d880", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Far Away.mp4", + "title": "Far Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Hurt", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "1626ac2d-bd51-9404-c9ff-36e241ec1008", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Hurt (Karaoke Version).mp4", + "title": "Hurt" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Before He Cheats", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "a6f583e5-25a7-43a3-0082-35fd62e4ea80", + "path": "z://MP4\\Sing King Karaoke\\Carrie Underwood - Before He Cheats (Karaoke Version).mp4", + "title": "Before He Cheats" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Snoop Dogg Featuring R. Kelly", + "playlist_title": "That's That", + "found_song": { + "artist": "Snoop Dogg Featuring R. Kelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b36aeb8-66ad-6d77-a450-a9d412b50c51", + "path": "z://MP4\\KaraokeOnVEVO\\Snoop Dogg Featuring R. Kelly - That's That.mp4", + "title": "That's That" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "My Chemical Romance", + "playlist_title": "Welcome To The Black Parade", + "found_song": { + "artist": "My Chemical Romance", + "disabled": false, + "favorite": false, + "guid": "06fcd40d-01c7-a8fd-c31f-a8b0c7ed5ddb", + "path": "z://MP4\\Sing King Karaoke\\My Chemical Romance - Welcome To The Black Parade (Karaoke Version).mp4", + "title": "Welcome To The Black Parade" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Chris Brown", + "playlist_title": "Say Goodbye", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "5c5f5ee1-ca20-46a0-aa0a-aab320a52189", + "path": "z://CDG\\Various\\Chris Brown - Say Goodbye.mp3", + "title": "Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Rascal Flatts", + "playlist_title": "My Wish", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96d6f56d-de3d-1b58-20ae-3fe3a77903cb", + "path": "z://MP4\\VocalStarKaraoke\\Rascal Flatts - My Wish.mp4", + "title": "My Wish" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Evanescence", + "playlist_title": "Call Me When You're Sober", + "found_song": { + "artist": "Evanescence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ec2d16a-cdcd-4a0f-9b23-6ebbf8ef3c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Evanescence - Call Me When You're Sober.mp4", + "title": "Call Me When You're Sober" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "JoJo", + "playlist_title": "Too Little Too Late", + "found_song": { + "artist": "JoJo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "351d2ea8-3de9-c57f-8bc2-ddd72c11caca", + "path": "z://MP4\\Sing King Karaoke\\JoJo - Too Little Too Late.mp4", + "title": "Too Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Justin Timberlake", + "playlist_title": "What Goes Around...", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7242a2-5adc-f364-bdc7-0cfbd17b6598", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - What Goes Around....mp4", + "title": "What Goes Around..." + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Little Girl", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "075d2ff8-8f34-9fd3-0183-ba716fb621b1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Little Girl - Tim McGraw.mp4", + "title": "My Little Girl" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Daughtry", + "playlist_title": "It's Not Over", + "found_song": { + "artist": "Daughtry", + "disabled": false, + "favorite": false, + "guid": "6d91d8a1-26f0-927d-753b-ef120ec394cf", + "path": "z://CDG\\Various\\Daughtry - It's Not Over.mp3", + "title": "It's Not Over" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Rascal Flatts", + "playlist_title": "What Hurts The Most", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "41f639fe-5fc3-528b-64dd-2c55467ec433", + "path": "z://MP4\\Stingray Karaoke\\What Hurts The Most Rascal Flatts Karaoke with Lyrics.mp4", + "title": "What Hurts The Most" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Snow ((Hey Oh))", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "888cdcf5-b499-983f-dbda-b041f37727b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF250\\Red Hot Chili Peppers - Snow (hey Oh) - SF250 - 07.mp3", + "title": "Snow (hey Oh)" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Weird Al Yankovic", + "playlist_title": "White & Nerdy", + "found_song": { + "artist": "Weird Al Yankovic", + "disabled": false, + "favorite": false, + "guid": "147d524b-8a4e-2756-96aa-9edebcec8e88", + "path": "z://MP4\\KtvEntertainment\\Weird Al Yankovic - White & Nerdy (Karaoke without Vocal).mp4", + "title": "White & Nerdy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Strait", + "playlist_title": "It Just Comes Natural", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "5ff67233-8c07-3074-1543-7046f6dc2f26", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Strait, George - It Just Comes Natural.mp3", + "title": "It Just Comes Natural" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Killers", + "playlist_title": "When You Were Young", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "5c1bb851-d920-6b95-042d-6e006c5422be", + "path": "z://MP4\\TheKARAOKEChannel\\The Killers - When You Were Young.mp4", + "title": "When You Were Young" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Maneater", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "782ed721-e722-e711-f45d-d4ba5cdc8525", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nelly Furtado - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "OK Go", + "playlist_title": "Here It Goes Again", + "found_song": { + "artist": "OK Go", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce63d670-b8a2-3500-ba04-90c695679586", + "path": "z://MP4\\KaraokeOnVEVO\\OK Go - Here It Goes Again.mp4", + "title": "Here It Goes Again" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Hellogoodbye", + "playlist_title": "Here (In Your Arms)", + "found_song": { + "artist": "Hellogoodbye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de899fa7-7b0b-5914-00fe-9b874f3922dc", + "path": "z://MP4\\KaraokeOnVEVO\\Hellogoodbye - Here (In Your Arms.mp4", + "title": "Here (In Your Arms)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jason Aldean", + "playlist_title": "Amarillo Sky", + "found_song": { + "artist": "Jason Aldean", + "disabled": false, + "favorite": false, + "guid": "22dba21b-4a24-d5a6-ffdd-cea4c57fef18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amarillo Sky - Jason Aldean.mp4", + "title": "Amarillo Sky" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kenny Chesney", + "playlist_title": "You Save Me", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f550273-1d08-90bb-de5a-e0ceaea2609e", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - You Save Me.mp4", + "title": "You Save Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Nickelback", + "playlist_title": "Rockstar", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "44b7dea0-b763-ded5-1eb4-0ddabe758500", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - Rockstar (Karaoke Version).mp4", + "title": "Rockstar" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Rob Thomas", + "playlist_title": "Streetcorner Symphony", + "found_song": { + "artist": "Rob Thomas", + "disabled": false, + "favorite": false, + "guid": "317c7d7a-84ef-4892-7296-a7cfa221bfc1", + "path": "z://CDG\\Various\\Rob Thomas - Streetcorner Symphony.mp3", + "title": "Streetcorner Symphony" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "ee857071-16f1-7b56-37ef-30eba74c4c5c", + "path": "z://CDG\\Various\\Mary J. Blige - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Keith Urban", + "playlist_title": "Stupid Boy", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1513e18d-ae71-875e-ca1a-6fdee93c2d09", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Stupid Boy.mp4", + "title": "Stupid Boy" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Trace Adkins", + "playlist_title": "Ladies Love Country Boys", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1c2adf0-6613-0ff1-b83e-aea1c9ae5f54", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Ladies Love Country Boys.mp4", + "title": "Ladies Love Country Boys" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kellie Pickler", + "playlist_title": "Red High Heels", + "found_song": { + "artist": "Kellie Pickler", + "disabled": false, + "favorite": false, + "guid": "00c5b2e7-d8fd-7870-8d4b-42f308f34132", + "path": "z://CDG\\Various\\Kellie Pickler - Red High Heels.mp3", + "title": "Red High Heels" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Craig Morgan", + "playlist_title": "Little Bit Of Life", + "found_song": { + "artist": "Craig Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2446f9d8-c79e-a32d-073d-74aedcd1dfad", + "path": "z://MP4\\KaraokeOnVEVO\\Craig Morgan - Little Bit Of Life.mp4", + "title": "Little Bit Of Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Regina Spektor", + "playlist_title": "Fidelity", + "found_song": { + "artist": "Regina Spektor", + "disabled": false, + "favorite": false, + "guid": "5145e72a-3d70-51f5-6e2c-7cd4116561e0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fidelity - Regina Spektor.mp4", + "title": "Fidelity" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 39, + "playlist_artist": "Sugarland", + "playlist_title": "Want To", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "990fbda1-bd9d-1085-bd73-1a3c557dadfc", + "path": "z://CDG\\Various\\Sugarland - Want To.mp3", + "title": "Want To" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "Taylor Swift", + "playlist_title": "Tim McGraw", + "found_song": { + "artist": "Taylor Swift", + "disabled": false, + "favorite": false, + "guid": "15d90cdb-9585-f8e6-879f-b7d0b1014105", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tim McGraw - Taylor Swift.mp4", + "title": "Tim McGraw" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "River", + "found_song": { + "artist": "Josh Groban & Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "24976346-8ae3-676f-7f27-311972e7e953", + "path": "z://MP4\\KaraFun Karaoke\\Run - Josh Groban & Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Run" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 75, + "playlist_artist": "U2 & Green Day", + "playlist_title": "The Saints Are Coming", + "found_song": { + "artist": "U2 ft. Green Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eab14c05-0b20-0ceb-2469-8070ec5ae5fc", + "path": "z://MP4\\KaraokeOnVEVO\\U2 & Green Day - The Saints Are Coming.mp4", + "title": "The Saints Are Coming" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 80, + "playlist_artist": "Three Days Grace", + "playlist_title": "Pain", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "guid": "1498f681-c73b-c6c6-f5e1-bce06d5ba597", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF287\\Three Days Grace - Break - SF287 - 12.mp3", + "title": "Break" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Heartland", + "playlist_title": "I Loved Her First", + "found_song": { + "artist": "Heartland", + "disabled": false, + "favorite": false, + "guid": "ef53ba78-c69d-1692-5849-023627471fea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Loved Her First - Heartland.mp4", + "title": "I Loved Her First" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Josh Groban", + "playlist_title": "I'll Be Home For Christmas", + "found_song": { + "artist": "Amy Grant", + "disabled": false, + "favorite": false, + "guid": "0e169582-b622-0070-f6db-943dc2b067ad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Be Home For Christmas - Amy Grant.mp4", + "title": "I ll Be Home For Christmas" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Akon Featuring Eminem", + "title": "Smack That", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Justin Timberlake Featuring T.I.", + "title": "My Love", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Jim Jones", + "title": "We Fly High", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bow Wow Featuring Chris Brown & Johnta Austin", + "title": "Shortie Like Mine", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Unk", + "title": "Walk It Out", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy", + "title": "I Luv It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Ludacris Featuring Pharrell", + "title": "Money Maker", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Paula DeAnda Featuring The DEY", + "title": "Walk Away (Remember Me)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eminem, 50 Cent, Lloyd Banks & Cashis", + "title": "You Don't Know", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Featuring Lil' Wayne", + "title": "You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "John Mayer", + "title": "Waiting On The World To Change", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Fat Joe Featuring Lil Wayne", + "title": "Make It Rain", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Ludacris Featuring Mary J. Blige", + "title": "Runaway Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil Scrappy Featuring Young Buck", + "title": "Money In The Bank", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Brad Paisley", + "title": "She's Everything", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Pussycat Dolls Featuring Timbaland", + "title": "Wait A Minute", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Rodney Atkins", + "title": "Watching You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Stone Sour", + "title": "Through Glass", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Birdman & Lil Wayne", + "title": "Stuntin' Like My Daddy", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Diddy Featuring Christina Aguilera", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Diddy Featuring Nicole Scherzinger", + "title": "Come To Me", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Fray", + "title": "Happy Xmas (War Is Over)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Cherish", + "title": "Unappreciated", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jay-Z", + "title": "Show Me What You Got", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Danity Kane", + "title": "Show Stopper", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Rihanna & Sean Paul", + "title": "Break It Off", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Nas Featuring will.i.am", + "title": "Hip Hop Is Dead", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Omarion", + "title": "Ice Box", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jay-Z Featuring Chrisette Michele", + "title": "Lost One", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Chris Brown Featuring Jay Biz", + "title": "Poppin'", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Blue October", + "title": "Into The Ocean", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Montgomery Gentry", + "title": "Some People Change", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Augustana", + "title": "Boston", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lil' Boosie Featuring Yung Joc", + "title": "Zoom", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Beyonce Featuring Jay-Z", + "title": "Upgrade U", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Incubus", + "title": "Anna-Molly", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Red Jumpsuit Apparatus", + "title": "Face Down", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Vanessa Hudgens", + "title": "Come Back To Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Fall Out Boy", + "title": "The Carpal Tunnel Of Love", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "T.I.", + "title": "Top Back", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jibbs", + "title": "Chain Hang Low", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Chingy Featuring Jermaine Dupri", + "title": "Dem Jeans", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rich Boy Featuring Polow Da Don", + "title": "Throw Some D's", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "AFI", + "title": "Love Like Winter", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Game", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Robin Thicke", + "title": "Lost Without U", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Mat Kearney", + "title": "Nothing Left To Lose", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Gwen Stefani Featuring Akon", + "title": "The Sweet Escape", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Pitbull", + "title": "Ay Chico (Lengua Afuera)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Trent Tomlinson", + "title": "One Wing In The Fire", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Baby Boy Da Prince Featuring Lil Boosie", + "title": "The Way I Live", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 42, + "fuzzy_match_count": 7, + "missing_count": 51, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "2005 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Keyshia Cole", + "title": "I Should Have Cheated", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Alicia Keys", + "title": "Unbreakable", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lil' Wayne", + "title": "Fireman", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Kanye West Featuring Adam Levine", + "title": "Heard 'Em Say", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Trey Songz", + "title": "Gotta Go", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lyfe Jennings", + "title": "Must Be Nice", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kirk Franklin", + "title": "Looking For You", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "50 Cent", + "title": "Window Shopper", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2005 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Kanye West Featuring Jamie Foxx", + "title": "Gold Digger", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Sean Paul", + "title": "We Be Burnin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 1, + "missing_count": 5, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2005 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Brad Paisley Featuring Dolly Parton", + "playlist_title": "When I Get Where I'm Going", + "found_song": { + "artist": "Brad Paisley Featuring Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23bcfe67-8104-457e-5a76-9a2eb4814602", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley Featuring Dolly Parton - When I Get Where Im Going.mp4", + "title": "When I Get Where I'm Going" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Sara Evans", + "playlist_title": "Cheatin'", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "guid": "d2e88774-32ee-8450-b8ba-a7b0c99b1d4a", + "path": "z://CDG\\Various\\Sara Evans - Cheatin'.mp3", + "title": "Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Blake Shelton", + "playlist_title": "Nobody But Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "2ad5b86e-8283-241d-0d6e-52d7ffdad067", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - Nobody But Me.mp3", + "title": "Nobody But Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jamey Johnson", + "playlist_title": "The Dollar", + "found_song": { + "artist": "Jamey Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6b19281-fabe-b18a-e68e-a0a6ee6a2058", + "path": "z://MP4\\KaraokeOnVEVO\\Jamey Johnson - The Dollar.mp4", + "title": "The Dollar" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 15, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Garth Brooks", + "title": "Good Ride Cowboy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Joe Nichols", + "title": "Tequila Makes Her Clothes Fall Off", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kenny Chesney", + "title": "Who You'd Be Today", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Brooks & Dunn", + "title": "Believe", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gretchen Wilson", + "title": "I Don't Feel Like Loving You Today", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 3, + "missing_count": 6, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2005 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Don't Forget About Us", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "26574aa2-6097-3295-bceb-d2127f0275df", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Mariah Carey - Don't Forget About Us - SF238 - 06.mp3", + "title": "Don't Forget About Us" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Chris Brown", + "playlist_title": "Run It!", + "found_song": { + "artist": "Chris Brown", + "disabled": false, + "favorite": false, + "guid": "27a40382-4d09-0a53-e31d-01f3183aa923", + "path": "z://MP4\\Let's Sing Karaoke\\Chris Brown - Run It!.mp4", + "title": "Run It!" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Pussycat Dolls", + "playlist_title": "Stickwitu", + "found_song": { + "artist": "The Pussycat Dolls", + "disabled": false, + "favorite": false, + "guid": "f9030390-32cf-ab22-0ff4-008621c9e18d", + "path": "z://MP4\\Sing King Karaoke\\The Pussycat Dolls - Stickwitu (Karaoke Version).mp4", + "title": "Stickwitu" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Nickelback", + "playlist_title": "Photograph", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5ef01201-1922-cd01-2a67-88e2054430f9", + "path": "z://MP4\\KaraFun Karaoke\\Nickelback - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Because Of You", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "aa5bb121-d4be-3040-c7aa-3980b69b8a4b", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Because Of You (Karaoke Version).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Ray J", + "playlist_title": "One Wish", + "found_song": { + "artist": "Ray J", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ab9d713-1582-aa25-c33b-e3033f772c1d", + "path": "z://MP4\\KaraokeOnVEVO\\Ray J - One Wish.mp4", + "title": "One Wish" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eminem", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b02bfcb6-1b3f-2ba7-b38a-2915a6148c70", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eminem - When Im Gone.mp4", + "title": "When I'm Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "T-Pain", + "playlist_title": "I'm Sprung", + "found_song": { + "artist": "T-Pain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0ccb051-1e4b-13ff-57e0-8464bf523332", + "path": "z://MP4\\KaraokeOnVEVO\\T-Pain - Im Sprung.mp4", + "title": "I'm Sprung" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Without You", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "fe34d71b-4ffc-9ab4-27c8-ca3008c99fbf", + "path": "z://CDG\\Various\\Mary J. Blige - Be Without You.mp3", + "title": "Be Without You" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Madonna", + "playlist_title": "Hung Up", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "f20ee305-c5ab-05f0-f95b-78d8563de21f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Madonna - Hung Up - SF238 - 02.mp3", + "title": "Hung Up" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Sugar, We're Goin' Down", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "92f36dc6-66b6-5e98-c83d-9f469706a911", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sugar, We re Goin Down - Fall Out Boy.mp4", + "title": "Sugar, We re Goin Down" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "James Blunt", + "playlist_title": "You're Beautiful", + "found_song": { + "artist": "James Blunt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4433ad20-9204-4b26-d1c5-469de0048c4f", + "path": "z://MP4\\Sing King Karaoke\\James Blunt - Youre Beautiful.mp4", + "title": "You're Beautiful" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Fall Out Boy", + "playlist_title": "Dance, Dance", + "found_song": { + "artist": "Fall Out Boy", + "disabled": false, + "favorite": false, + "guid": "d14f4c5f-d501-7fc8-97c7-81750530c684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance, Dance - Fall Out Boy.mp4", + "title": "Dance, Dance" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Gwen Stefani", + "playlist_title": "Luxurious", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "guid": "9481cfd2-9302-6735-b158-2722582aa51f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF238\\Gwen Stefani - Luxurious - SF238 - 10.mp3", + "title": "Luxurious" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Ne-Yo", + "playlist_title": "So Sick", + "found_song": { + "artist": "Ne-Yo", + "disabled": false, + "favorite": false, + "guid": "ebf29147-0715-1a86-c1e5-7b797ef6e177", + "path": "z://MP4\\Sing King Karaoke\\Ne-Yo - So Sick (Karaoke Version).mp4", + "title": "So Sick" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The All-American Rejects", + "playlist_title": "Dirty Little Secret", + "found_song": { + "artist": "The All-American Rejects", + "disabled": false, + "favorite": false, + "guid": "4a9c46ad-4a43-e5ff-c2ac-d60dac377068", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dirty Little Secret - The All-American Rejects.mp4", + "title": "Dirty Little Secret" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Lifehouse", + "playlist_title": "You And Me", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "15033a5b-74e8-ad46-fc39-40868e73809d", + "path": "z://MP4\\Sing King Karaoke\\Lifehouse - You And Me (Karaoke Version).mp4", + "title": "You And Me" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Gorillaz", + "playlist_title": "Feel Good Inc", + "found_song": { + "artist": "Gorillaz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d5581fa1-9b96-ea02-69cd-76ba6958063e", + "path": "z://MP4\\Sing King Karaoke\\Gorillaz - Feel Good Inc.mp4", + "title": "Feel Good Inc" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Carrie Underwood", + "playlist_title": "Jesus, Take The Wheel", + "found_song": { + "artist": "Carrie Underwood", + "disabled": false, + "favorite": false, + "guid": "d600b0a3-9e9b-9347-3187-b2f079e40a7f", + "path": "z://CDG\\Various\\Carrie Underwood - Jesus, Take The Wheel.mp3", + "title": "Jesus, Take The Wheel" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Green Day", + "playlist_title": "Wake Me Up When September Ends", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "73489459-90de-96ba-4c6d-8e9289dbcfb6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wake Me Up When September Ends - Green Day.mp4", + "title": "Wake Me Up When September Ends" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Rihanna", + "playlist_title": "If It's Lovin' That You Want", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "654018ad-5f02-b581-99b4-c61c92e2ddaa", + "path": "z://MP4\\Sing King Karaoke\\Rihanna - If It's Lovin' That You Want.mp4", + "title": "If It's Lovin' That You Want" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Weezer", + "playlist_title": "Beverly Hills", + "found_song": { + "artist": "Weezer", + "disabled": false, + "favorite": false, + "guid": "1ac1976e-4360-7393-4015-96bacc9aee70", + "path": "z://CDG\\Various\\Weezer - Beverly Hills.mp3", + "title": "Beverly Hills" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Trace Adkins", + "playlist_title": "Honky Tonk Badonkadonk", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "guid": "429d5fe3-901c-eef6-4fae-24988683dc92", + "path": "z://CDG\\Various\\Trace Adkins - Honky Tonk Badonkadonk.mp3", + "title": "Honky Tonk Badonkadonk" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Billy Currington", + "playlist_title": "Must Be Doin' Somethin' Right", + "found_song": { + "artist": "Billy Currington", + "disabled": false, + "favorite": false, + "guid": "3df290b2-bbbc-40cc-29cf-27afb23eaeea", + "path": "z://CDG\\Various\\Billy Currington - Must Be Doin' Somethin' Right.mp3", + "title": "Must Be Doin' Somethin' Right" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dierks Bentley", + "playlist_title": "Come A Little Closer", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "guid": "50773ee4-232c-b093-ca46-0cfacb22c132", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come A Little Closer - Dierks Bentley.mp4", + "title": "Come A Little Closer" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Shake It Off", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "561fec1d-1402-53b0-88f5-65f9f1b1a6a3", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Mariah Carey - Shake It Off - SF236 - 13.mp3", + "title": "Shake It Off" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Pussycat Dolls Featuring Busta Rhymes", + "playlist_title": "Don't Cha", + "found_song": { + "artist": "The Pussycat Dolls Featuring Busta Rhymes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cba42c4-225a-94ac-d62a-b1b4728c4d21", + "path": "z://MP4\\KaraokeOnVEVO\\The Pussycat Dolls Featuring Busta Rhymes - Don't Cha.mp4", + "title": "Don't Cha" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mariah Carey", + "playlist_title": "We Belong Together", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "57bd5ff3-646d-8e1b-2610-1ca9a0998dff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF232\\Mariah Carey - We Belong Together - SF232 - 02.mp3", + "title": "We Belong Together" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Natasha Bedingfield", + "playlist_title": "Unwritten", + "found_song": { + "artist": "Natasha Bedingfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd2daaa-e097-c5fc-4ed3-45ab718adb71", + "path": "z://MP4\\Sing King Karaoke\\Natasha Bedingfield - Unwritten (Karaoke Version).mp4", + "title": "Unwritten" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "George Strait", + "playlist_title": "She Let Herself Go", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65f94185-ac11-2980-5df6-fa2fc7d5bbe9", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She Let Herself Go.mp4", + "title": "She Let Herself Go" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Better Days", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "251a7d67-2f85-498b-f025-288678f15a77", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Better Days (Karaoke).mp4", + "title": "Better Days" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Little Big Town", + "playlist_title": "Boondocks", + "found_song": { + "artist": "Little Big Town", + "disabled": false, + "favorite": false, + "guid": "135aa3ac-77c9-559e-ba5d-4fefe56da6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Boondocks - Little Big Town.mp4", + "title": "Boondocks" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Shakira", + "playlist_title": "Don't Bother", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "6cea6dd0-ed12-3f74-4573-b2177798ef23", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF240\\Shakira - Don't Bother - SF240 - 01.mp3", + "title": "Don't Bother" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Brad Paisley Featuring Dolly Parton", + "playlist_title": "When I Get Where I'm Going", + "found_song": { + "artist": "Brad Paisley Featuring Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23bcfe67-8104-457e-5a76-9a2eb4814602", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley Featuring Dolly Parton - When I Get Where Im Going.mp4", + "title": "When I Get Where I'm Going" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Rompe", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "0c48353b-0f9c-92ce-752f-b482f092cc11", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Rompe (Karaoke Version) (2).mp4", + "title": "Rompe" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Chris Cagle", + "playlist_title": "Miss Me Baby", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "120b5784-472e-b489-bde9-06e2624ca241", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - Miss Me Baby.mp4", + "title": "Miss Me Baby" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "Pump It", + "found_song": { + "artist": "The Black Eyed Peas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87718b7c-4493-9eba-8937-2f4c557c37e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Black Eyed Peas - Pump It.mp4", + "title": "Pump It" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Keith Urban", + "playlist_title": "Better Life", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78b300e5-495a-9234-5a85-8457af3fe66d", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Urban - Better Life.mp4", + "title": "Better Life" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "Big Blue Note", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfbc5e8d-a963-8be6-2758-38be69d02588", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - Big Blue Note.mp4", + "title": "Big Blue Note" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Avenged Sevenfold", + "playlist_title": "Bat Country", + "found_song": { + "artist": "Avenged Sevenfold", + "disabled": false, + "favorite": false, + "guid": "2426b09c-ef14-2cc8-f23f-2d4085ae41df", + "path": "z://MP4\\TheKARAOKEChannel\\Avenged Sevenfold - Bat Country.mp4", + "title": "Bat Country" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shinedown", + "playlist_title": "Save Me", + "found_song": { + "artist": "Shinedown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58552639-5aca-d289-f283-358634858516", + "path": "z://MP4\\KaraokeOnVEVO\\Shinedown - Save Me.mp4", + "title": "Save Me" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Foo Fighters", + "playlist_title": "DOA", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "c6f7a97a-73c0-41b8-791e-e56425cdd25f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF235\\Foo Fighters - Doa - SF235 - 08.mp3", + "title": "Doa" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Keith Urban", + "playlist_title": "Tonight I Wanna Cry", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "a80081a9-2b92-8d1e-fe7b-3bbf69ada626", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tonight I Wanna Cry - Keith Urban.mp4", + "title": "Tonight I Wanna Cry" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Old Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd2ad164-a9e9-7c3d-06cc-b38bb08c0bd8", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Old Friend.mp4", + "title": "My Old Friend" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Ashlee Simpson", + "playlist_title": "Boyfriend", + "found_song": { + "artist": "Ashlee Simpson", + "disabled": false, + "favorite": false, + "guid": "b2398a6c-b327-8ae2-3287-284f7ddf5146", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF239\\Ashlee Simpson - Boyfriend - SF239 - 12.mp3", + "title": "Boyfriend" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Josh Turner", + "playlist_title": "Your Man", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "183e5461-d38a-a729-7881-82934cfd8388", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Your Man - Josh Turner.mp4", + "title": "Your Man" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "She Don't Tell Me To", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2813836-fd70-fecb-28fe-28977c3b42fa", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - She Dont Tell Me To.mp4", + "title": "She Don't Tell Me To" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Bon Jovi", + "playlist_title": "Have A Nice Day", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "b68159ce-d595-aae8-d472-859672419755", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF236\\Bon Jovi - Have A Nice Day - Sf236 - 04 .mp3", + "title": "Have A Nice Day" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "The Black Eyed Peas", + "playlist_title": "My Humps", + "found_song": { + "artist": "Black Eyed Peas", + "disabled": false, + "favorite": false, + "guid": "da7d4341-dff7-9c95-3072-7257ba8f8dfa", + "path": "z://MP4\\singsongsmusic\\My Humps - Karaoke HD (In the style of Black Eyed Peas).mp4", + "title": "My Humps" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Cast Of Rent", + "playlist_title": "Seasons Of Love", + "found_song": { + "artist": "Rent", + "disabled": false, + "favorite": false, + "guid": "1ec06fca-bb11-f666-7d15-e73c212faade", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Seasons Of Love - Rent.mp4", + "title": "Seasons Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Sugarland", + "playlist_title": "Just Might (Make Me Believe)", + "found_song": { + "artist": "Sugarland", + "disabled": false, + "favorite": false, + "guid": "eff7bc8a-0318-d09d-e533-0a1909ddfb6f", + "path": "z://MP4\\TheKARAOKEChannel\\Sugarland - Just Might (Make Me Believe).mp4", + "title": "Just Might (Make Me Believe)" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Miranda Lambert", + "playlist_title": "Kerosene", + "found_song": { + "artist": "Miranda Lambert", + "disabled": false, + "favorite": false, + "guid": "1da11cdf-5f8e-85ed-aeda-dcccbbd4cfaa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kerosene - Miranda Lambert.mp4", + "title": "Kerosene" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Big & Rich", + "playlist_title": "Comin' To Your City", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b09c3a1-36e7-f877-8dcc-a0a79d12cc97", + "path": "z://MP4\\KaraokeOnVEVO\\Big & Rich - Comin' To Your City.mp4", + "title": "Comin' To Your City" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Nelly Featuring Paul Wall, Ali & Gipp", + "title": "Grillz", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "D4L", + "title": "Laffy Taffy", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kanye West Featuring Jamie Foxx", + "title": "Gold Digger", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Beyonce Featuring Slim Thug", + "title": "Check On It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Juelz Santana", + "title": "There It Go! (The Whistle Song)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Three 6 Mafia Featuring Young Buck & Eightball & MJG", + "title": "Stay Fly", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Young Jeezy Featuring Akon", + "title": "Soul Survivor", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Dem Franchize Boyz Featuring Jermaine Dupri, Da Brat & Bow Wow", + "title": "I Think They Like Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Trina Featuring Kelly Rowland", + "title": "Here We Go", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Sean Paul", + "title": "We Be Burnin'", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Kanye West Featuring Adam Levine", + "title": "Heard 'Em Say", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lil' Wayne", + "title": "Fireman", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Keyshia Cole", + "title": "I Should Have Cheated", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Purple Ribbon All-Stars", + "title": "Kryptonite (I'm On It)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Twista Featuring Trey Songz", + "title": "Girl Tonite", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Chamillionaire Featuring Lil' Flip", + "title": "Turn It Up", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Joe Nichols", + "title": "Tequila Makes Her Clothes Fall Off", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "50 Cent", + "title": "Window Shopper", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jamie Foxx Featuring Ludacris", + "title": "Unpredictable", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Ludacris & Field Mob Featuring Jamie Foxx", + "title": "Georgia", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Alicia Keys", + "title": "Unbreakable", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Eminem Featuring Nate Dogg", + "title": "Shake That", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Faith Hill", + "title": "Like We Never Loved At All", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Cascada", + "title": "Everytime We Touch", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Kenny Chesney", + "title": "Who You'd Be Today", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Garth Brooks", + "title": "Good Ride Cowboy", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Death Cab For Cutie", + "title": "Soul Meets Body", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "System Of A Down", + "title": "Hypnotize", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Notorious B.I.G. Featuring Diddy, Nelly, Jagged Edge & Avery Storm", + "title": "Nasty Girl", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Korn", + "title": "Twisted Transistor", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Busta Rhymes", + "title": "Touch It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Trey Songz", + "title": "Gotta Go", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ying Yang Twins Featuring Pitbull", + "title": "Shake", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Juvenile", + "title": "Rodeo", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bow Wow Featuring J-Kwon & Jermaine Dupri", + "title": "Fresh Azimiz", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Ashlee Simpson", + "title": "L.O.V.E.", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Weezer", + "title": "Perfect Situation", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kirk Franklin", + "title": "Looking For You", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Frankie J", + "title": "More Than Words", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Wisin & Yandel", + "title": "Rakata", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "T-Pain Featuring Mike Jones", + "title": "I'm N Luv (Wit A Stripper)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Chris Brown", + "title": "Yo (Excuse Me Miss)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "YoungBloodZ", + "title": "Presidential", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Seether", + "title": "Remedy", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Brooks & Dunn", + "title": "Believe", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Twista Featuring Pitbull", + "title": "Hit The Floor", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Lindsay Lohan", + "title": "Confessions Of A Broken Heart (Daughter To Father)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 48, + "fuzzy_match_count": 5, + "missing_count": 47, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2004 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Usher And Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Fabolous", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Ludacris", + "title": "Get Back", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 1, + "missing_count": 18, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2004 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Nelly Featuring Tim McGraw", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher And Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Switchfoot", + "title": "Dare You To Move", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ciara Featuring Petey Pablo", + "title": "Goodies", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 1, + "missing_count": 8, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2004 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Josh Gracin", + "playlist_title": "Nothin' To Lose", + "found_song": { + "artist": "Josh Gracin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf9f50b0-c0e0-f267-0494-14fabb2f3757", + "path": "z://MP4\\KaraokeOnVEVO\\Josh Gracin - Nothin To Lose.mp4", + "title": "Nothin' To Lose" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Billy Dean", + "playlist_title": "Let Them Be Little", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "guid": "192f3e01-56f7-2649-6d67-6ada6e5ba039", + "path": "z://MP4\\Let's Sing Karaoke\\Dean, Billy - Let Them Be Little (Karaoke & Lyrics).mp4", + "title": "Let Them Be Little" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "I May Hate Myself In The Morning", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95953d65-31ce-b1bf-b9c3-fb1e3e0400a8", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - I May Hate Myself In The Morning.mp4", + "title": "I May Hate Myself In The Morning" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Pat Green", + "playlist_title": "Don't Break My Heart Again", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e95db78-7929-e48d-2e5a-1ec2a4d19662", + "path": "z://MP4\\KaraokeOnVEVO\\Pat Green - Dont Break My Heart Again.mp4", + "title": "Don't Break My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Jamie O'Neal", + "playlist_title": "Trying To Find Atlantis", + "found_song": { + "artist": "Jamie O Neal", + "disabled": false, + "favorite": false, + "guid": "360bbad9-b954-10e2-006b-500d7dd405a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Trying To Find Atlantis - Jamie O Neal.mp4", + "title": "Trying To Find Atlantis" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Andy Griggs", + "playlist_title": "If Heaven", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c71511f6-73e1-5906-747e-f97b91669214", + "path": "z://MP4\\KaraokeOnVEVO\\Andy Griggs - If Heaven.mp4", + "title": "If Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Big & Rich", + "playlist_title": "Holy Water", + "found_song": { + "artist": "Big & Rich", + "disabled": false, + "favorite": false, + "guid": "74e75f73-358e-f8b7-73e9-8d4addf1bcd9", + "path": "z://MP4\\Let's Sing Karaoke\\Big & Rich - Holy Water (Karaoke & Lyrics).mp4", + "title": "Holy Water" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Lonestar", + "title": "Mr. Mom", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Jimmy Wayne", + "title": "Paper Angels", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 2, + "missing_count": 5, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2004 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Mario", + "playlist_title": "Let Me Love You", + "found_song": { + "artist": "Mario", + "disabled": false, + "favorite": false, + "guid": "9c25c35b-8933-bbfd-1173-bd4028bd6821", + "path": "z://MP4\\Sing King Karaoke\\Mario - Let Me Love You (Karaoke Version).mp4", + "title": "Let Me Love You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Destiny's Child", + "playlist_title": "Lose My Breath", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "guid": "deb43d52-ebcb-bbb0-85bf-e01cabc0aa30", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF224\\Destiny's Child - Lose My Breath - SF224 - 08.mp3", + "title": "Lose My Breath" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Breakaway", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6e074f4-0d63-e833-bb32-d020b82dea28", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Clarkson - Breakaway.mp4", + "title": "Breakaway" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Gavin DeGraw", + "playlist_title": "I Don't Want To Be", + "found_song": { + "artist": "Gavin DeGraw", + "disabled": false, + "favorite": false, + "guid": "a7255311-67c5-d7e7-3c6e-3bc5573e6be8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Don t Want To Be - Gavin DeGraw.mp4", + "title": "I Don t Want To Be" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "50 Cent", + "playlist_title": "Disco Inferno", + "found_song": { + "artist": "50 Cent", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "057e01ef-8f87-ed05-a80d-bf673e90cd8b", + "path": "z://MP4\\KaraokeOnVEVO\\50 Cent - Disco Inferno.mp4", + "title": "Disco Inferno" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ashanti", + "playlist_title": "Only U", + "found_song": { + "artist": "Ashanti", + "disabled": false, + "favorite": false, + "guid": "f51a437c-706d-14e6-5450-26185886f953", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF228\\Ashanti - Only U - SF228 - 02.mp3", + "title": "Only U" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Maroon5", + "playlist_title": "She Will Be Loved", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "12324640-f6b6-8ccc-96dd-63b769675149", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - She Will Be Loved.mp4", + "title": "She Will Be Loved" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lil Wayne", + "playlist_title": "Go D.J.", + "found_song": { + "artist": "Lil Wayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d3a6c08-23a3-eea7-518b-2eb2e6c8c650", + "path": "z://MP4\\KaraokeOnVEVO\\Lil Wayne - Go DJ.mp4", + "title": "Go D.J." + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Green Day", + "playlist_title": "Boulevard Of Broken Dreams", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "127c4f85-1067-067f-b6c4-c4649fb5452e", + "path": "z://MP4\\Sing King Karaoke\\Green Day - Boulevard Of Broken Dreams (Karaoke Version).mp4", + "title": "Boulevard Of Broken Dreams" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Blake Shelton", + "playlist_title": "Some Beach", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "c0c00b27-1005-a044-e81b-bcab9c6e8952", + "path": "z://MP4\\Let's Sing Karaoke\\Blake Shelton - Some Beach.mp4", + "title": "Some Beach" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Anthony Hamilton", + "playlist_title": "Charlene", + "found_song": { + "artist": "Anthony Hamilton", + "disabled": false, + "favorite": false, + "guid": "0844c218-3ace-4bbd-898e-c4d3efab873a", + "path": "z://MP4\\TheKARAOKEChannel\\Charlene in the Style of Anthony Hamilton with lyrics (no lead vocal).mp4", + "title": "Charlene" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Tim McGraw", + "playlist_title": "Back When", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "bf5f3986-038a-7b8e-df62-e65b777b19e4", + "path": "z://MP4\\Let's Sing Karaoke\\McGraw, Tim - Back When (Karaoke & Lyrics).mp4", + "title": "Back When" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Vertigo", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73197e25-e313-b3fc-82c4-ed816e5c06a5", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Vertigo.mp4", + "title": "Vertigo" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "True", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "guid": "398cee7c-69d0-13a1-867a-c8aadc093caf", + "path": "z://CDG\\Various\\Ryan Cabrera - True.mp3", + "title": "True" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Simple Plan", + "playlist_title": "Welcome To My Life", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "ac24ead7-bcc3-166b-dc8d-c90b71694dee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To My Life - Simple Plan.mp4", + "title": "Welcome To My Life" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ryan Cabrera", + "playlist_title": "On The Way Down", + "found_song": { + "artist": "Ryan Cabrera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b7aa4ad8-eb0c-cf90-e2c0-c903bee2f60e", + "path": "z://MP4\\KaraokeOnVEVO\\Ryan Cabrera - On The Way Down.mp4", + "title": "On The Way Down" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Avril Lavigne", + "playlist_title": "My Happy Ending", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "3f16298a-9ffc-c261-8485-05cadfe9cfa6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happy Ending - Avril Lavigne.mp4", + "title": "My Happy Ending" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Darryl Worley", + "playlist_title": "Awful, Beautiful Life", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3e17e69e-422b-ee1d-e22a-52e8f5c53eda", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - Awful, Beautiful Life.mp4", + "title": "Awful, Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Eminem", + "playlist_title": "Just Lose It", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "9cfccc64-5cff-d5ee-4160-678c0f47338f", + "path": "z://MP4\\Karaoke Sing Sing\\Eminem - Just Lose It (Karaoke Version) (2).mp4", + "title": "Just Lose It" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Terror Squad", + "playlist_title": "Lean Back", + "found_song": { + "artist": "Terror Squad", + "disabled": false, + "favorite": false, + "guid": "f7e2c54d-3cf9-a309-1a9d-d098c4d0c117", + "path": "z://MP4\\Let's Sing Karaoke\\Terror Squad - Lean Back (Karaoke & Lyrics).mp4", + "title": "Lean Back" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Kenny Chesney", + "playlist_title": "The Woman With You", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "d18db7ea-2d66-aa8e-6291-97e023a2b4f0", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - The Woman With You (Karaoke).mp4", + "title": "The Woman With You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Jesse McCartney", + "playlist_title": "Beautiful Soul", + "found_song": { + "artist": "Jesse McCartney", + "disabled": false, + "favorite": false, + "guid": "97aacb42-bf32-7566-962d-7cd3f3582d06", + "path": "z://MP4\\Sing King Karaoke\\Jesse McCartney - Beautiful Soul (Karaoke Version).mp4", + "title": "Beautiful Soul" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dierks Bentley", + "playlist_title": "How Am I Doin'", + "found_song": { + "artist": "Dierks Bentley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcca0290-b1dc-358d-2f31-e6f955202797", + "path": "z://MP4\\KaraokeOnVEVO\\Dierks Bentley - How Am I Doin.mp4", + "title": "How Am I Doin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "Since U Been Gone", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c20f434-5706-b447-f671-5e1d3406da86", + "path": "z://MP4\\Sing King Karaoke\\Kelly Clarkson - Since U Been Gone.mp4", + "title": "Since U Been Gone" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Gretchen Wilson", + "playlist_title": "When I Think About Cheatin'", + "found_song": { + "artist": "Gretchen Wilson", + "disabled": false, + "favorite": false, + "guid": "c385c73c-60a2-3cd5-bc88-d26eaddc01c1", + "path": "z://MP4\\Let's Sing Karaoke\\Wilson, Gretchen - When I Think About Cheatin' (Karaoke & Lyrics).mp4", + "title": "When I Think About Cheatin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Keith Urban", + "playlist_title": "You're My Better Half", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "eca314fb-1f63-54ec-56d3-41c34fbff625", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re My Better Half - Keith Urban.mp4", + "title": "You re My Better Half" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Nobody's Home", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "5f03e41b-5090-bd39-2a0c-ef0d1d222df0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nobody's Home - Avril Lavigne.mp4", + "title": "Nobody's Home" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brad Paisley", + "playlist_title": "Mud On The Tires", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "guid": "0732eb1b-7998-fce5-0295-8491a78b21b8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mud On The Tires - Brad Paisley.mp4", + "title": "Mud On The Tires" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Nothin 'Bout Love Makes Sense", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1982ffd4-0f38-e7cd-501e-9079ca5ae6f8", + "path": "z://MP4\\KaraokeOnVEVO\\LeAnn Rimes - Nothin Bout Love Makes Sense.mp4", + "title": "Nothin 'Bout Love Makes Sense" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Rascal Flatts", + "playlist_title": "Bless The Broken Road", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "a62f1e2c-f501-6387-d30a-9a43079fcb4e", + "path": "z://MP4\\KaraokeOnVEVO\\Rascal Flatts - Bless The Broken Road (Karaoke).mp4", + "title": "Bless The Broken Road" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Killers", + "playlist_title": "Somebody Told Me", + "found_song": { + "artist": "The Killers", + "disabled": false, + "favorite": false, + "guid": "914c5ed7-9687-2636-95a8-06a18ac476f6", + "path": "z://MP4\\KaraFun Karaoke\\Somebody Told Me - The Killers Karaoke Version KaraFun.mp4", + "title": "Somebody Told Me" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Bowling For Soup", + "playlist_title": "1985", + "found_song": { + "artist": "Bowling For Soup", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c1994f-e8a5-b601-34f7-ecb09321e170", + "path": "z://MP4\\KaraokeOnVEVO\\Bowling For Soup - 1985.mp4", + "title": "1985" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Alicia Keys", + "playlist_title": "Karma", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04518eb6-af7e-f913-cf10-4b591e9b513c", + "path": "z://MP4\\VocalStarKaraoke\\Alicia Keys - Karma.mp4", + "title": "Karma" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Alan Jackson", + "playlist_title": "Monday Morning Church", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "64c09d7d-03aa-8516-ad66-8af2af3dda0d", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Monday Morning Church (Karaoke & Lyrics).mp4", + "title": "Monday Morning Church" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Give A Little Bit", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "7ac862fe-521a-013f-d83d-8cf6eb50568f", + "path": "z://MP4\\KaraFun Karaoke\\Give A Little Bit - Goo Goo Dolls Karaoke Version KaraFun.mp4", + "title": "Give A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Reba McEntire", + "playlist_title": "He Gets That From Me", + "found_song": { + "artist": "Reba Mcentire", + "disabled": false, + "favorite": false, + "guid": "feea2227-69fa-cee9-3784-4fa7f02307ff", + "path": "z://MP4\\Let's Sing Karaoke\\Mcentire, Reba - He Gets That From Me (Karaoke & Lyrics).mp4", + "title": "He Gets That From Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Daddy Yankee", + "playlist_title": "Gasolina", + "found_song": { + "artist": "Daddy Yankee", + "disabled": false, + "favorite": false, + "guid": "f34e7706-9a7a-48ff-e008-d11451d78b3d", + "path": "z://MP4\\Karaoke Sing Sing\\Daddy Yankee - Gasolina (Karaoke Version) (2).mp4", + "title": "Gasolina" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Usher", + "playlist_title": "Caught Up", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3938bbff-7d91-1dd0-04ba-a0eef20e8163", + "path": "z://MP4\\Sing King Karaoke\\Usher - Caught Up.mp4", + "title": "Caught Up" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Velvet Revolver", + "playlist_title": "Fall To Pieces", + "found_song": { + "artist": "Velvet Revolver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86ccd26e-1cf4-2917-56a8-258edc8b142d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 866\\Velvet Revolver - Fall To Pieces - SFMW 866 -09.mp3", + "title": "Fall To Pieces" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Breaking Benjamin", + "playlist_title": "So Cold", + "found_song": { + "artist": "Breaking Benjamin", + "disabled": false, + "favorite": false, + "guid": "47cac92a-4ad0-7fcd-0528-bc5ddfeac841", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Cold - Breaking Benjamin.mp4", + "title": "So Cold" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Phil Vassar", + "playlist_title": "In A Real Love", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "8697e9d1-fedd-ade4-6a27-286b6ddbf6b5", + "path": "z://CDG\\Various\\Phil Vassar - In A Real Love.mp3", + "title": "In A Real Love" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Papa Roach", + "playlist_title": "Getting Away With Murder", + "found_song": { + "artist": "Papa Roach", + "disabled": false, + "favorite": false, + "guid": "9830b4d1-c9dc-7081-dd33-041025e45792", + "path": "z://CDG\\Various\\Papa Roach - Getting Away With Murder.mp3", + "title": "Getting Away With Murder" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gwen Stefani", + "playlist_title": "What You Waiting For?", + "found_song": { + "artist": "Gwen Stefani", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf248731-a9d8-fa6e-f439-b0c603e2b42a", + "path": "z://MP4\\KaraokeOnVEVO\\Gwen Stefani - What You Waiting For.mp4", + "title": "What You Waiting For?" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Green Day", + "playlist_title": "American Idiot", + "found_song": { + "artist": "Green Day", + "disabled": false, + "favorite": false, + "guid": "e21d4cae-cb13-1c57-659f-eca48d6725ff", + "path": "z://MP4\\KaraFun Karaoke\\American Idiot - Green Day Karaoke Version KaraFun.mp4", + "title": "American Idiot" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Beyonce", + "playlist_title": "Dangerously In Love", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "3eba3d8f-892f-5827-c1ee-4ffd538bba41", + "path": "z://MP4\\Karaoke Sing Sing\\Beyonce - Dangerously In Love SING SING KARAOKE.mp4", + "title": "Dangerously In Love" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "George Strait", + "playlist_title": "I Hate Everything", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75053792-2441-ed1b-5e41-19c2c6ac4879", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I Hate Everything.mp4", + "title": "I Hate Everything" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Ciara Featuring Missy Elliott", + "playlist_title": "1, 2 Step", + "found_song": { + "artist": "Ciara Feat Missy Elliott", + "disabled": false, + "favorite": false, + "guid": "94f81f18-9f68-c34e-ba5d-00ba2ad00f02", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF230\\Ciara Feat Missy Elliott - 1 2 Step - SF230 - 05.mp3", + "title": "1 2 Step" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "Jay-Z/Linkin Park", + "playlist_title": "Numb/Encore", + "found_song": { + "artist": "Linkin Park & Jay-Z", + "disabled": false, + "favorite": false, + "guid": "39fb4f78-e45c-f72f-41aa-0d9cf8851138", + "path": "z://MP4\\Karaoke Sing Sing\\Linkin Park & Jay-Z - Numb Encore (Karaoke Version).mp4", + "title": "Numb Encore" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Gary Allan", + "playlist_title": "Nothing On But The Radio", + "found_song": { + "artist": "Gary Allen", + "disabled": false, + "favorite": false, + "guid": "a3239e9d-185d-b66d-70ba-8f0853a1a7ce", + "path": "z://MP4\\Let's Sing Karaoke\\Allen, Gary - Nothing On But The Radio (Karaoke & Lyrics).mp4", + "title": "Nothing On But The Radio" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Lady", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "guid": "82d1e248-3a06-438c-1aff-428a47cfc183", + "path": "z://CDG\\Various\\Lenny Kravitz - Black.mp3", + "title": "Black" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 88, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "That's What It's All About", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca91821d-ae7f-e384-6edf-1820ba5678a3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - That's What It's All About.mp4", + "title": "That's What It's All About" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Snoop Dogg Featuring Pharrell", + "title": "Drop It Like It's Hot", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Usher ft. Alicia Keys", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly Featuring Tim McGraw", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Lil Jon & The East Side Boyz Featuring Usher & Ludacris", + "title": "Lovers And Friends", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Destiny's Child Featuring T.I. & Lil Wayne", + "title": "Soldier", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring R. Kelly & Ashanti", + "title": "Wonderful", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Trick Daddy Featuring Lil Jon & Twista", + "title": "Let's Go", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ciara Featuring Petey Pablo", + "title": "Goodies", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "N.O.R.E. Featuring Daddy Yankee, Nina Sky, Gem Star & Big Mato", + "title": "Oye Mi Canto", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ludacris", + "title": "Get Back", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Switchfoot", + "title": "Dare You To Move", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Fabolous", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jadakiss Featuring Mariah Carey", + "title": "U Make Me Wanna", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Lil Jon & The East Side Boyz Featuring Lil Scrappy", + "title": "What U Gon' Do", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Game Featuring 50 Cent", + "title": "How We Do", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Lloyd Banks Featuring Avant", + "title": "Karma", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Eminem Featuring Dr. Dre & 50 Cent", + "title": "Encore", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Seether Featuring Amy Lee", + "title": "Broken", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ja Rule Featuring Fat Joe & Jadakiss", + "title": "New York", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "JoJo Featuring Bow Wow", + "title": "Baby It's You", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "John Mayer", + "title": "Daughters", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "T.I.", + "title": "Bring Em Out", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Young Buck", + "title": "Shorty Wanna Ride", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Finger Eleven", + "title": "One Thing", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Alicia Keys Featuring Tony! Toni! Tone!", + "title": "Diary", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chingy", + "title": "Balla Baby", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "LL Cool J Featuring 7 Aurelius", + "title": "Hush", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Lonestar", + "title": "Mr. Mom", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Shania Twain With Billy Currington Or Mark McGrath", + "title": "Party For Two", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Rupee", + "title": "Tempted To Touch", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Trillville Featuring Cutty", + "title": "Some Cut", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Chevelle", + "title": "Vitamin R (Leading Us Along)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Gwen Stefani Featuring Eve", + "title": "Rich Girl", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "SheDaisy", + "title": "Come Home Soon", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Guerilla Black Featuring Mario Winans", + "title": "You're The One", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Crossfade", + "title": "Cold", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Keyshia Cole Featuring Shyne", + "title": "I Changed My Mind", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Terror Squad", + "title": "Take Me Home", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Crime Mob Featuring Lil Scrappy", + "title": "Knuck If You Buck", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Juvenile, Wacko & Skip", + "title": "Nolia Clap", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Sugarland", + "title": "Baby Girl", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Patti LaBelle Featuring Ron Isley", + "title": "Gotta Go Solo", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Body Head Bangerz Featuring YoungBloodz", + "title": "I Smoke, I Drank", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Xzibit Featuring Keri Hilson", + "title": "Hey Now (Mean Muggin)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Nivea Featuring Lil Jon & YoungBloodZ", + "title": "Okay", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Monchy & Alexandra", + "title": "Perdidos", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "John Legend", + "title": "Used To Love U", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Anita Baker", + "title": "You're My Everything", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Prince", + "title": "Call My Name", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 5, + "missing_count": 49, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2003 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "R. Kelly", + "title": "Step In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kanye West", + "title": "Through The Wire", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Joe", + "title": "More & More", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ashanti", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 0, + "missing_count": 20, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2003 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Beyonce Featuring Sean Paul", + "playlist_title": "Baby Boy", + "found_song": { + "artist": "Beyonce With Sean Paul", + "disabled": false, + "favorite": false, + "guid": "beed2bbb-228f-ee42-6fe3-3fa20a207bbd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF210\\Beyonce With Sean Paul - Baby Boy - SF210 - 05.mp3", + "title": "Baby Boy" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Stacie Orrico", + "title": "(There's Gotta Be) More To Life", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Liz Phair", + "title": "Why Can't I", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 1, + "missing_count": 8, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2003 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Diamond Rio", + "playlist_title": "Wrinkles", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff951190-c84b-66f3-d004-3f668c516eb0", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Wrinkles.mp4", + "title": "Wrinkles" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Trace Adkins", + "playlist_title": "Hot Mama", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fec2b5c0-a944-a735-646f-8714ad9d630d", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Hot Mama.mp4", + "title": "Hot Mama" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Sara Evans", + "playlist_title": "Perfect", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60ce758b-5b40-0122-4985-5dfae359d4f3", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Perfect.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Martina McBride", + "playlist_title": "In My Daughter's Eyes", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "18ee8602-1da7-c619-389b-dca580f45ef0", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - In My Daughter's Eyes.mp4", + "title": "In My Daughter's Eyes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "George Strait", + "title": "Cowboys Like Us", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Montgomery Gentry", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jo Dee Messina", + "title": "I Wish", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jimmy Wayne", + "title": "I Love You This Much", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 18, + "fuzzy_match_count": 0, + "missing_count": 7, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2003 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "OutKast", + "playlist_title": "Hey Ya!", + "found_song": { + "artist": "OutKast", + "disabled": false, + "favorite": false, + "guid": "35894f96-7c36-f20d-9432-b6ee47a6d0d2", + "path": "z://MP4\\Sing King Karaoke\\OutKast - Hey Ya! (Karaoke Version).mp4", + "title": "Hey Ya!" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Kelis", + "playlist_title": "Milkshake", + "found_song": { + "artist": "Kelis", + "disabled": false, + "favorite": false, + "guid": "003625c6-1a50-4bcc-0e97-0167566678dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Milkshake - Kelis.mp4", + "title": "Milkshake" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Alicia Keys", + "playlist_title": "You Don't Know My Name", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "b085a752-2aff-d83a-6b6b-233bd37c3a8c", + "path": "z://CDG\\Various\\Alicia Keys - You Don T Know My Name.mp3", + "title": "You Don T Know My Name" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "3 Doors Down", + "playlist_title": "Here Without You", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "82a85846-69e9-a933-79a1-0c3c1b437227", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Here Without You (Karaoke Version).mp4", + "title": "Here Without You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Jay-Z", + "playlist_title": "Change Clothes", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "592c7013-834d-3ade-bf5e-8214825f660a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Jay Z - Change Clothes - SF214 - 13.mp3", + "title": "Change Clothes" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "No Doubt", + "playlist_title": "It's My Life", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "guid": "8c5ffa91-54f7-aeb0-4dd2-55ffa553894a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s My Life - No Doubt.mp4", + "title": "It s My Life" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Nickelback", + "playlist_title": "Someday", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "guid": "d19d2254-1b2e-0c5c-591c-53201db63ba9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF209\\Nickelback - Someday - SF209 - 12.mp3", + "title": "Someday" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Beyonce", + "playlist_title": "Me, Myself And I", + "found_song": { + "artist": "Beyonce", + "disabled": false, + "favorite": false, + "guid": "e1aa397f-9aa3-baa7-efe6-49fbfb64190e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF214\\Beyonce - Me Myself And I - SF214 - 03.mp3", + "title": "Me Myself And I" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Simple Plan", + "playlist_title": "Perfect", + "found_song": { + "artist": "Simple Plan", + "disabled": false, + "favorite": false, + "guid": "3950e094-843a-d9b0-13ab-d5423528e505", + "path": "z://MP4\\Sing King Karaoke\\Simple Plan - Perfect (Karaoke Version).mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Trapt", + "playlist_title": "Headstrong", + "found_song": { + "artist": "Trapt", + "disabled": false, + "favorite": false, + "guid": "cb868230-efdb-cc56-f5a0-782e7ebbb220", + "path": "z://MP4\\Let's Sing Karaoke\\Trapt - Headstrong (Karaoke & Lyrics).mp4", + "title": "Headstrong" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Dido", + "playlist_title": "White Flag", + "found_song": { + "artist": "Dido", + "disabled": false, + "favorite": false, + "guid": "1ed41ba7-8c14-da3f-ada8-11874ce8c17f", + "path": "z://MP4\\Let's Sing Karaoke\\Dido - White Flag (Karaoke & Lyrics).mp4", + "title": "White Flag" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Linkin Park", + "playlist_title": "Numb", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c1bd24f-92c0-7d11-6b47-2be6ef625802", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - Numb.mp4", + "title": "Numb" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Staind", + "playlist_title": "So Far Away", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "290f920b-ffb0-2e2e-6b52-192da96f3086", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Far Away - Staind.mp4", + "title": "So Far Away" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Kenny Chesney", + "playlist_title": "There Goes My Life", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "637a456d-330d-cb73-8489-da7294c11e55", + "path": "z://CDG\\Various\\Kenny Chesney - There Goes My Life.mp3", + "title": "There Goes My Life" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Sheryl Crow", + "playlist_title": "The First Cut Is The Deepest", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "guid": "6f08998e-9905-274d-fdbb-d04ea93ae4cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The First Cut Is The Deepest - Sheryl Crow.mp4", + "title": "The First Cut Is The Deepest" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bright Lights", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "guid": "3d243457-7403-3c7f-469e-f224b7fd8e6e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bright Lights - Matchbox Twenty.mp4", + "title": "Bright Lights" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Chingy", + "playlist_title": "Right Thurr", + "found_song": { + "artist": "Chingy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2c000ba0-c450-50a5-e98c-18c20102fa77", + "path": "z://MP4\\KaraokeOnVEVO\\Chingy - Right Thurr.mp4", + "title": "Right Thurr" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Voice Within", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "0dec9439-bf1d-4214-4db8-b22e82686353", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - The Voice Within (Karaoke Version).mp4", + "title": "The Voice Within" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Maroon5", + "playlist_title": "Harder To Breathe", + "found_song": { + "artist": "Maroon5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a9186c6-3e12-3b0a-372c-0eab35fa5e13", + "path": "z://MP4\\Sing King Karaoke\\Maroon5 - Harder To Breathe.mp4", + "title": "Harder To Breathe" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Toby Keith", + "playlist_title": "I Love This Bar", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "c8faac28-32ac-4458-fa71-463c4b02e59b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Love This Bar - Toby Keith.mp4", + "title": "I Love This Bar" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Clay Aiken", + "playlist_title": "Invisible", + "found_song": { + "artist": "Clay Aiken", + "disabled": false, + "favorite": false, + "guid": "14948022-0630-8eb8-0dba-5664c5049cde", + "path": "z://MP4\\Let's Sing Karaoke\\Aiken, Clay - Invisible (Karaoke & Lyrics).mp4", + "title": "Invisible" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alan Jackson", + "playlist_title": "Remember When", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "ff4e8daa-dc2f-dc5d-1500-89cd853a8f02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember When - Alan Jackson.mp4", + "title": "Remember When" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Michelle Branch", + "playlist_title": "Breathe", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "cccbadc4-b1b0-5fe2-0aec-2bdfa9ce5567", + "path": "z://CDG\\Various\\Michelle Branch - Breathe.mp3", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "matchbox twenty", + "playlist_title": "Unwell", + "found_song": { + "artist": "Matchbox Twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e56641f6-893d-b685-3ba2-41ba51bd6b3e", + "path": "z://MP4\\Sing King Karaoke\\matchbox twenty - Unwell.mp4", + "title": "Unwell" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Fallen", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "3af0dd0b-8d53-533a-d3b4-dd45216098f9", + "path": "z://MP4\\KaraFun Karaoke\\Fallen - Sarah McLachlan Karaoke Version KaraFun.mp4", + "title": "Fallen" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Three Days Grace", + "playlist_title": "(I Hate) Everything About You", + "found_song": { + "artist": "Three Days Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa35a50a-77dc-6201-ab49-e1307ed279dc", + "path": "z://MP4\\Sing King Karaoke\\Three Days Grace - (I Hate Everything About You.mp4", + "title": "(I Hate) Everything About You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Terri Clark", + "playlist_title": "I Wanna Do It All", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc18a97-530d-837d-cda0-b72624fa1903", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Wanna Do It All.mp4", + "title": "I Wanna Do It All" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Tim McGraw", + "playlist_title": "Watch The Wind Blow By", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64610817-32c6-7c9a-eba4-d7c5039fe166", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Watch The Wind Blow By.mp4", + "title": "Watch The Wind Blow By" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Shania Twain", + "playlist_title": "She's Not Just A Pretty Face", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "ace866c3-7a83-e6e5-554b-8bbdef7bf864", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF217\\Shania Twain - She's Not Just A Pretty Face - sf217 - 10.mp3", + "title": "She's Not Just A Pretty Face" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jessica Simpson", + "playlist_title": "With You", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27378d76-42ba-4416-4346-931f6b6d4a9b", + "path": "z://MP4\\KaraokeOnVEVO\\Jessica Simpson - With You.mp4", + "title": "With You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tracy Byrd", + "playlist_title": "Drinkin' Bone", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046b14ba-2245-7750-a363-8a9aaf6721b4", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - Drinkin Bone.mp4", + "title": "Drinkin' Bone" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Keith Urban", + "playlist_title": "Who Wouldn't Wanna Be Me", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "3d92070d-76e6-a2fb-17df-effce8ca3bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Wouldn t Wanna Be Me - Keith Urban.mp4", + "title": "Who Wouldn t Wanna Be Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Toby Keith", + "playlist_title": "American Soldier", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79af2e14-eabf-871d-3c78-ba39c0a5701f", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - American Soldier.mp4", + "title": "American Soldier" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Fountains Of Wayne", + "playlist_title": "Stacy's Mom", + "found_song": { + "artist": "Fountains of Wayne", + "disabled": false, + "favorite": false, + "guid": "66124703-b251-a855-cba0-5617e0876f16", + "path": "z://MP4\\KtvEntertainment\\Fountains of Wayne - Stacy's Mom (Karaoke without Vocal).mp4", + "title": "Stacy's Mom" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Brad Paisley", + "playlist_title": "Little Moments", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f122e3c3-cf59-0153-61ef-73cc1902f00d", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Little Moments.mp4", + "title": "Little Moments" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Jet", + "playlist_title": "Are You Gonna Be My Girl", + "found_song": { + "artist": "Jet", + "disabled": false, + "favorite": false, + "guid": "bdb33708-3c2c-0b1d-d743-85b622642d61", + "path": "z://MP4\\TheKARAOKEChannel\\Are You Gonna Be My Girl in the style of Jet Karaoke with Lyrics.mp4", + "title": "Are You Gonna Be My Girl" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Offspring", + "playlist_title": "Hit That", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9db77999-2f4e-b6c3-9dd1-46cbb33dae81", + "path": "z://MP4\\KaraokeOnVEVO\\Offspring - Hit That.mp4", + "title": "Hit That" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Lonestar", + "playlist_title": "Walking In Memphis", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "90bf521e-bba8-0e37-92a1-e5db68608b7d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In Memphis - Lonestar.mp4", + "title": "Walking In Memphis" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Pat Green", + "playlist_title": "Wave On Wave", + "found_song": { + "artist": "Pat Green", + "disabled": false, + "favorite": false, + "guid": "1b7b54a9-dc4d-dddd-5488-5fb9ec3c3303", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wave On Wave - Pat Green.mp4", + "title": "Wave On Wave" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I Melt", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "2379a88f-35ee-42ed-7385-61ee1ef5bff0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-11 - Rascal Flatts - I Melt.mp3", + "title": "I Melt" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Gary Allan", + "playlist_title": "Tough Little Boys", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007397d1-8437-f9f1-bd01-81bd4685efaa", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Tough Little Boys.mp4", + "title": "Tough Little Boys" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "A Perfect Circle", + "playlist_title": "Weak And Powerless", + "found_song": { + "artist": "A Perfect Circle", + "disabled": false, + "favorite": false, + "guid": "556b104f-f275-24ab-34ae-3039f2011dd2", + "path": "z://CDG\\Various\\A Perfect Circle - Weak And Powerless.mp3", + "title": "Weak And Powerless" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Josh Turner", + "playlist_title": "Long Black Train", + "found_song": { + "artist": "Josh Turner", + "disabled": false, + "favorite": false, + "guid": "11bb4b9a-0a19-a898-14dc-fc3ab903d867", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Long Black Train - Josh Turner.mp4", + "title": "Long Black Train" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Scotty Emerick With Toby Keith", + "playlist_title": "I Can't Take You Anywhere", + "found_song": { + "artist": "Scotty Emerick With Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "786dadc5-07b8-83ea-9e52-4143ad37537c", + "path": "z://MP4\\KaraokeOnVEVO\\Scotty Emerick With Toby Keith - I Cant Take You Anywhere.mp4", + "title": "I Can't Take You Anywhere" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Hilary Duff", + "playlist_title": "So Yesterday", + "found_song": { + "artist": "Hilary Duff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5d729bc-0cf5-1c6b-0929-3b92c2699734", + "path": "z://MP4\\KaraokeOnVEVO\\Hilary Duff - So Yesterday.mp4", + "title": "So Yesterday" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Michael Jackson", + "playlist_title": "One More Chance", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "807482f1-eca1-63fc-533c-c45df5bf8504", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Jackson - One More Chance.mp4", + "title": "One More Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Beyonce Featuring Sean Paul", + "playlist_title": "Baby Boy", + "found_song": { + "artist": "Beyonce With Sean Paul", + "disabled": false, + "favorite": false, + "guid": "beed2bbb-228f-ee42-6fe3-3fa20a207bbd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF210\\Beyonce With Sean Paul - Baby Boy - SF210 - 05.mp3", + "title": "Baby Boy" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Eamon", + "playlist_title": "F**k It (I Don't Want You Back)", + "found_song": { + "artist": "Eamon", + "disabled": false, + "favorite": false, + "guid": "dd0b8a27-8866-00c8-3e62-5fb42fcbe74f", + "path": "z://MP4\\Let's Sing Karaoke\\Eamon - I Don't Want You Back (Fuck It) (Karaoke & Lyrics).mp4", + "title": "I Don't Want You Back" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Live", + "playlist_title": "Heaven", + "found_song": { + "artist": "Emeli Sande", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f07e84b-dd83-86b0-9a6e-748f7f57a0e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Emeli Sande - Heaven.mp4", + "title": "Heaven" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "OutKast Featuring Sleepy Brown", + "title": "The Way You Move", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ludacris Featuring Shawnna", + "title": "Stand Up", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Jagged Edge", + "title": "Walked Outta Heaven", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baby Bash Featuring Frankie J", + "title": "Suga Suga", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Chingy Featuring Ludacris & Snoop Dogg", + "title": "Holidae In", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "R. Kelly", + "title": "Step In The Name Of Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "YoungBloodZ Featuring Lil Jon", + "title": "Damn!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Lil Jon & The East Side Boyz Featuring Ying Yang Twins", + "title": "Get Low", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Twista Featuring Kanye West & Jamie Foxx", + "title": "Slow Jamz", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Avant", + "title": "Read Your Mind", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Tupac Featuring The Notorious B.I.G.", + "title": "Runnin (Dying To Live)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "G-Unit", + "title": "Stunt 101", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Santana Featuring Alex Band Or Chad Kroeger", + "title": "Why Don't You & I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Murphy Lee Featuring Jermaine Dupri", + "title": "Wat Da Hook Gon Be", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Liz Phair", + "title": "Why Can't I", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nick Cannon Featuring R. Kelly", + "title": "Gigolo", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ying Yang Twins Featuring Lil Jon & The East Side Boyz", + "title": "Salt Shaker", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Stacie Orrico", + "title": "(There's Gotta Be) More To Life", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Kanye West", + "title": "Through The Wire", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Nelly, P. Diddy & Murphy Lee", + "title": "Shake Ya Tailfeather", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brooks & Dunn", + "title": "You Can't Take The Honky Tonk Out Of The Girl", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "George Strait", + "title": "Cowboys Like Us", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mary J. Blige Featuring Eve", + "title": "Not Today", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Joe", + "title": "More & More", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Ashanti", + "title": "Rain On Me", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Westside Connection Featuring Nate Dogg", + "title": "Gangsta Nation", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Musiq", + "title": "Forthenight", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Bow Wow Featuring Jagged Edge", + "title": "My Baby", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Chris Cagle", + "title": "Chicks Dig It", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mya", + "title": "Fallen", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Rodney Atkins", + "title": "Honesty (Write Me A List)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Marques Houston Featuring Joe Budden & Pied Piper", + "title": "Clubbin", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Montgomery Gentry", + "title": "Hell Yeah", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Missy Elliott", + "title": "Pass That Dutch", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Cassidy Featuring R. Kelly", + "title": "Hotel", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Puddle Of Mudd", + "title": "Away From Me", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "B2K Featuring Fabolous", + "title": "Badaboom", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Trapt", + "title": "Still Frame", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Britney Spears Featuring Madonna", + "title": "Me Against The Music", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Marques Houston Featuring Jermaine \"JD\" Dupri", + "title": "Pop That Booty", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Ginuwine", + "title": "Love You More", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Monica", + "title": "Knock Knock", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Barenaked Ladies", + "title": "Another Postcard (Chimps)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Audioslave", + "title": "Show Me How To Live", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "John Mayer", + "title": "Bigger Than My Body", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ryan Duarte", + "title": "You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Ja Rule", + "title": "Clap Back", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Too Short Featuring Lil Jon & The East Side Boyz", + "title": "Shake That Monkey", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Lasgo", + "title": "Alone", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Trillville", + "title": "Neva Eva", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Big Tymers Featuring R. Kelly", + "title": "Gangsta Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 46, + "fuzzy_match_count": 3, + "missing_count": 51, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2002 - R&B Hip-Hop Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Musiq", + "title": "dontchange", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Aaliyah", + "title": "Miss You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Nas", + "title": "Made You Look", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "50 Cent", + "title": "Wanksta", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Clipse", + "title": "When The Last Time", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2002 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "title": "Jenny From The Block", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "No Doubt Featuring Lady Saw", + "title": "Underneath It All", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Santana Featuring Michelle Branch", + "title": "The Game Of Love", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "O-Town", + "title": "These Are The Days", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 2, + "missing_count": 7, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "2002 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Brad Paisley", + "playlist_title": "I Wish You'd Stay", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc1f362-7bb1-7024-dc5f-f4f8c4a4c174", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - I Wish Youd Stay.mp4", + "title": "I Wish You'd Stay" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Travis Tritt", + "playlist_title": "Strong Enough To Be Your Man", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0b64741-3b4e-3167-d903-ea9ac553ef89", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Strong Enough To Be Your Man.mp4", + "title": "Strong Enough To Be Your Man" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Beautiful Mess", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "52632b67-86fc-05dd-7c9a-c8c5eff4e2cf", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - Beautiful Mess (Karaoke & Lyrics).mp4", + "title": "Beautiful Mess" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Gary Allan", + "playlist_title": "Man To Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f8453de-c5f3-9a36-b58c-f4cdb4670aac", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Man To Man.mp4", + "title": "Man To Man" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Trace Adkins", + "playlist_title": "Chrome", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db940c6c-be07-8136-e87a-427e6f5651b4", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Chrome.mp4", + "title": "Chrome" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lonestar", + "title": "Unusually Unusual", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "John Michael Montgomery", + "title": "'Til Nothing Comes Between Us", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Trick Pony", + "title": "On A Mission", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kellie Coffey", + "title": "At The End Of The Day", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jennifer Hanson", + "title": "Beautiful Goodbye", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 1, + "missing_count": 7, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2002 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Eminem", + "playlist_title": "Lose Yourself", + "found_song": { + "artist": "Eminem", + "disabled": false, + "favorite": false, + "guid": "99253b7a-cdd8-aa1d-0f20-ad3a9c567e38", + "path": "z://MP4\\KaraokeOnVEVO\\Eminem - Lose Yourself (Karaoke).mp4", + "title": "Lose Yourself" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Missy \"Misdemeanor\" Elliott", + "playlist_title": "Work It", + "found_song": { + "artist": "Missy Misdemeanor Elliott", + "disabled": false, + "favorite": false, + "guid": "7123cc72-9b07-a1ce-c2e2-d387e924f42f", + "path": "z://MP4\\Let's Sing Karaoke\\Missy Misdemeanor Elliott - Work It (Karaoke & Lyrics).mp4", + "title": "Work It" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Christina Aguilera", + "playlist_title": "Beautiful", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "guid": "d211aee5-3672-4178-27a5-7e5e30cc5bd9", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - Beautiful (Karaoke Version).mp4", + "title": "Beautiful" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Sean Paul", + "playlist_title": "Gimme The Light", + "found_song": { + "artist": "Sean Paul", + "disabled": false, + "favorite": false, + "guid": "73a81cf7-f6b3-f593-f68e-706341f4203c", + "path": "z://MP4\\Let's Sing Karaoke\\Sean Paul - Gimme The Light (Karaoke & Lyrics).mp4", + "title": "Gimme The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "She Hates Me", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "6253a061-4e42-5a2c-a1ee-fcadbfda1b21", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She Hates Me - Puddle of Mudd.mp4", + "title": "She Hates Me" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Landslide", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "d59e3e88-312e-e028-142b-fa2bd63d67b0", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Landslide (Karaoke).mp4", + "title": "Landslide" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Avril Lavigne", + "playlist_title": "I'm With You", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "cac2cfbc-f417-5e4b-70e0-5df0bfc6587a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m With You - Avril Lavigne.mp4", + "title": "I m With You" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "LL Cool J", + "playlist_title": "Luv U Better", + "found_song": { + "artist": "LL Cool J", + "disabled": false, + "favorite": false, + "guid": "c0f1fada-fdc1-1d8c-0ee1-8dfffa2661d7", + "path": "z://MP4\\Let's Sing Karaoke\\LL Cool J - Luv U Better (Karaoke & Lyrics) (2).mp4", + "title": "Luv U Better" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "John Mayer", + "playlist_title": "Your Body Is A Wonderland", + "found_song": { + "artist": "John Mayer", + "disabled": false, + "favorite": false, + "guid": "05f4fe5b-5217-dbf5-7dc1-5a445b3a128b", + "path": "z://MP4\\Let's Sing Karaoke\\Mayer, John - Your Body Is A Wonderland (Karaoke & Lyrics).mp4", + "title": "Your Body Is A Wonderland" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Strait", + "playlist_title": "She'll Leave You With A Smile", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2aec84-da7b-6559-4e84-862f0dd7856f", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - She'll Leave You With A Smile.mp4", + "title": "She'll Leave You With A Smile" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Creed", + "playlist_title": "One Last Breath", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "539bc371-68b1-16b4-62b3-9d52a7bc13f4", + "path": "z://MP4\\Sing King Karaoke\\Creed - One Last Breath (Karaoke Version).mp4", + "title": "One Last Breath" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Toby Keith", + "playlist_title": "Who's Your Daddy?", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "e99944ee-24f1-13cc-919d-717bd4086ebe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who s Your Daddy - Toby Keith.mp4", + "title": "Who s Your Daddy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Cry Me A River", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "35ca8ea3-470c-3757-0e00-5e8453e90812", + "path": "z://MP4\\Sing King Karaoke\\Justin Timberlake - Cry Me A River (Karaoke Version).mp4", + "title": "Cry Me A River" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rascal Flatts", + "playlist_title": "These Days", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "cda3c212-e00a-b36c-71cd-01ffbcf3cede", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-03 - Rascal Flatts - These Days.mp3", + "title": "These Days" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Mark Wills", + "playlist_title": "19 Somethin'", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5aeabf72-0b83-d125-f707-67b738010c3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mark Wills - 19 Somethin.mp4", + "title": "19 Somethin'" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R. Kelly", + "playlist_title": "Ignition", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "6169e236-5800-6410-b73e-76c85aeff78a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF205\\R. Kelly - Ignition - SF205 - 08.mp3", + "title": "Ignition" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "matchbox twenty", + "playlist_title": "Disease", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3831e030-71f2-91a3-995b-3199d9adb6cf", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Disease.mp4", + "title": "Disease" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Kid Rock Featuring Sheryl Crow", + "playlist_title": "Picture", + "found_song": { + "artist": "Kid Rock Featuring Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce317767-7b44-9d54-7fca-6bf57aa9c82f", + "path": "z://MP4\\VocalStarKaraoke\\Kid Rock Featuring Sheryl Crow - Picture.mp4", + "title": "Picture" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Madonna", + "playlist_title": "Die Another Day", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "373b795c-1a47-3ceb-eb3b-8c1d6c481a19", + "path": "z://MP4\\singsongsmusic\\Die Another Day - Karaoke HD (In the style of Madonna).mp4", + "title": "Die Another Day" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "3 Doors Down", + "playlist_title": "When I'm Gone", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "befa5d31-9144-10d1-fc7d-61ce5ca2e0ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I m Gone - 3 Doors Down.mp4", + "title": "When I m Gone" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Complicated", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "51732fe4-ff44-676c-6025-1ecde284c595", + "path": "z://MP4\\Sing King Karaoke\\Avril Lavigne - Complicated (Karaoke Version).mp4", + "title": "Complicated" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Justin Timberlake", + "playlist_title": "Like I Love You", + "found_song": { + "artist": "Justin Timberlake", + "disabled": false, + "favorite": false, + "guid": "97ec88b6-e93e-2c86-620b-8b5bc2ac1324", + "path": "z://MP4\\Let's Sing Karaoke\\Timberlake, Justin - Like I Love You (Karaoke & Lyrics).mp4", + "title": "Like I Love You" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Keith Urban", + "playlist_title": "Somebody Like You", + "found_song": { + "artist": "Keith Urban", + "disabled": false, + "favorite": false, + "guid": "1696fad2-6a30-d444-5a01-625e86b0f42a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somebody Like You - Keith Urban.mp4", + "title": "Somebody Like You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Good Charlotte", + "playlist_title": "Lifestyles Of The Rich And Famous", + "found_song": { + "artist": "Good Charlotte", + "disabled": false, + "favorite": false, + "guid": "cf73e87c-ee9d-e30f-9763-789a45a81dbd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifestyles Of The Rich And Famous - Good Charlotte.mp4", + "title": "Lifestyles Of The Rich And Famous" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Foo Fighters", + "playlist_title": "All My Life", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "guid": "921b541f-5f91-39cf-17cb-64b2db7df075", + "path": "z://MP4\\Let's Sing Karaoke\\Foo Fighters - All My Life (Karaoke & Lyrics).mp4", + "title": "All My Life" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Amerie", + "playlist_title": "Talkin' To Me", + "found_song": { + "artist": "Amerie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4cb79f9-f640-4917-f069-910852d234c5", + "path": "z://MP4\\KaraokeOnVEVO\\Amerie - Talkin To Me.mp4", + "title": "Talkin' To Me" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Avril Lavigne", + "playlist_title": "Sk8er Boi", + "found_song": { + "artist": "Avril Lavigne", + "disabled": false, + "favorite": false, + "guid": "515a0c03-cae3-13aa-a7c4-c6da23aec4af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sk8er Boi - Avril Lavigne.mp4", + "title": "Sk8er Boi" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Blake Shelton", + "playlist_title": "The Baby", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "e0a69b6f-eedf-54fc-db25-683e915d42f9", + "path": "z://MP4\\KaraokeOnVEVO\\Blake Shelton - The Baby (Karaoke).mp4", + "title": "The Baby" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Nirvana", + "playlist_title": "You Know You're Right", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "55526be5-974f-880d-1b07-0604a5322e4a", + "path": "z://MP4\\Let's Sing Karaoke\\Nirvana - You Know You're Right (Karaoke & Lyrics).mp4", + "title": "You Know You're Right" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Terri Clark", + "playlist_title": "I Just Wanna Be Mad", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48826050-67a3-24d4-407f-5d0a83b6bf02", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - I Just Wanna Be Mad.mp4", + "title": "I Just Wanna Be Mad" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Lot Of Things Different", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f397fa3-8cc0-d768-ed3f-75da027d9983", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Lot Of Things Different.mp4", + "title": "A Lot Of Things Different" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Lasgo", + "playlist_title": "Something", + "found_song": { + "artist": "Lasgo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efbf7f30-6256-abe4-5c63-7cc0632e07f2", + "path": "z://MP4\\VocalStarKaraoke\\Lasgo - Something.mp4", + "title": "Something" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Saliva", + "playlist_title": "Always", + "found_song": { + "artist": "Saliva", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2a4f67d-fdb4-b0c9-c868-7456331f1787", + "path": "z://MP4\\KaraokeOnVEVO\\Saliva - Always.mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Norah Jones", + "playlist_title": "Don't Know Why", + "found_song": { + "artist": "Norah Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d153ea9-0a91-bf02-0cdb-69134cd2a806", + "path": "z://MP4\\Sing King Karaoke\\Norah Jones - Don't Know Why.mp4", + "title": "Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Aaron Lines", + "playlist_title": "You Can't Hide Beautiful", + "found_song": { + "artist": "Aaron Lines", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd123eb8-9110-dccb-4c80-e350dc0b1a8a", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Lines - You Cant Hide Beautiful.mp4", + "title": "You Can't Hide Beautiful" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Audioslave", + "playlist_title": "Cochise", + "found_song": { + "artist": "Audioslave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df2f27c7-52bf-8406-d638-8aaaf8273bdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Audioslave - Cochise - SFMW 865 -15.mp3", + "title": "Cochise" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Shania Twain", + "playlist_title": "I'm Gonna Getcha Good!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "bd112152-c0e7-e5b5-28fe-0c7e0819e317", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - I'm Gonna Getcha Good (Karaoke & Lyrics).mp4", + "title": "I'm Gonna Getcha Good" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Kelly Clarkson", + "playlist_title": "A Moment Like This", + "found_song": { + "artist": "Kelly Clarkson", + "disabled": false, + "favorite": false, + "guid": "002fa5b4-958f-dff6-52a3-f2560f704a32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Moment Like This - Kelly Clarkson.mp4", + "title": "A Moment Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Queens Of The Stone Age", + "playlist_title": "No One Knows", + "found_song": { + "artist": "Queens Of The Stone Age", + "disabled": false, + "favorite": false, + "guid": "2bc09bcb-a27d-9b13-bbaf-ed919ec8c06d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No One Knows - Queens Of The Stone Age.mp4", + "title": "No One Knows" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "The Zephyr Song", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "74ff414c-f20d-c134-bdcd-c9491a43bfc0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Zephyr Song - Red Hot Chili Peppers.mp4", + "title": "The Zephyr Song" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Uncle Kracker", + "playlist_title": "In A Little While", + "found_song": { + "artist": "Uncle Kracker", + "disabled": false, + "favorite": false, + "guid": "74e9df70-8b26-91f9-10ec-5af604c9f06b", + "path": "z://MP4\\Let's Sing Karaoke\\Uncle Kracker - In A Little While (Karaoke & Lyrics).mp4", + "title": "In A Little While" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "TLC", + "playlist_title": "Girl Talk", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e3176-d926-4b11-3296-1d714a36ffd8", + "path": "z://CDG\\SBI\\SBI-04\\SB12077 - TLC - Girl Talk.mp3", + "title": "Girl Talk" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Faith Hill", + "playlist_title": "Cry", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "185f64ef-d7a4-dd02-53f8-8b5ded0fd2ea", + "path": "z://MP4\\KaraFun Karaoke\\Cry - Faith Hill Karaoke Version KaraFun.mp4", + "title": "Cry" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Mariah Carey", + "playlist_title": "Through The Rain", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "19adc49c-8897-c40a-4380-03feab62015a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF199\\Mariah Carey - Through The Rain - SF199 - 06.mp3", + "title": "Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Of Those Days", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "01aac6e0-fb8f-85d8-fbe4-18868d456bde", + "path": "z://CDG\\Various\\Whitney Houston - One Of Those Days.mp3", + "title": "One Of Those Days" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "System Of A Down", + "playlist_title": "Aerials", + "found_song": { + "artist": "System Of A Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c38c5782-f58e-a296-5605-17fb0b3b2427", + "path": "z://MP4\\Sing King Karaoke\\System Of A Down - Aerials.mp4", + "title": "Aerials" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Kylie Minogue", + "playlist_title": "Come Into My World", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39d36c3c-cb08-777b-2ea9-ad1ba3df8b79", + "path": "z://MP4\\KaraokeOnVEVO\\Kylie Minogue - Come Into My World.mp4", + "title": "Come Into My World" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "My Town", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "664ba413-2ce8-b354-a536-0fa069e7af9e", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - My Town.mp4", + "title": "My Town" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Alan Jackson", + "playlist_title": "Work In Progress", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2255c3c0-c7ac-3b4d-9b92-f1d6ba700e5d", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Work In Progress.mp4", + "title": "Work In Progress" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Michelle Branch", + "playlist_title": "Goodbye To You", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "guid": "7e929ca3-1142-4897-ad0a-b0377eb16ce4", + "path": "z://MP4\\KaraFun Karaoke\\Goodbye To You - Michelle Branch Karaoke Version KaraFun.mp4", + "title": "Goodbye To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Pink", + "playlist_title": "Family Portrait", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "guid": "0b20cc23-5324-e226-a863-d5847117ab5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Portrait - Pink.mp4", + "title": "Family Portrait" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "Nelly Featuring Kelly Rowland", + "playlist_title": "Dilemma", + "found_song": { + "artist": "Nelly Feat Kelly Rowland", + "disabled": false, + "favorite": false, + "guid": "07a4a669-893a-242d-e9af-890d2f078978", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF197\\Nelly Feat Kelly Rowland - Dilemma - SF197 - 15.mp3", + "title": "Dilemma" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Kelly Rowland", + "playlist_title": "Stole", + "found_song": { + "artist": "Kelly Rowland", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0b0b029-0478-7082-a3d8-8fed13d59c54", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Rowland - Stole.mp4", + "title": "Stole" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Tim McGraw", + "playlist_title": "Red Rag Top", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "730bf828-c755-e833-87e4-a955e42551df", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - Red Ragtop.mp4", + "title": "Red Ragtop" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Lifehouse", + "playlist_title": "Spin", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "guid": "4a10709b-9c9c-8b76-545f-d58a622b77fd", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Blind (Karaoke).mp4", + "title": "Blind" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Jennifer Lopez Featuring Jadakiss & Styles", + "title": "Jenny From The Block", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Jay-Z Featuring Beyonce Knowles", + "title": "'03 Bonnie & Clyde", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Nelly Featuring Kyjuan, Ali & Murphy Lee", + "title": "Air Force Ones", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "B2K & P. Diddy", + "title": "Bump, Bump, Bump", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Nivea Featuring Brian & Brandon Casey", + "title": "Don't Mess With My Man", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "No Doubt Featuring Lady Saw", + "title": "Underneath It All", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Santana Featuring Michelle Branch", + "title": "The Game Of Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Erykah Badu Featuring Common", + "title": "Love Of My Life (An Ode To Hip Hop)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Aaliyah", + "title": "Miss You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Musiq", + "title": "dontchange", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2Pac", + "title": "Thugz Mansion", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cam'ron Featuring Juelz Santana, Freekey Zekey & Toya", + "title": "Hey Ma", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jennifer Lopez Featuring LL Cool J", + "title": "All I Have", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Clipse", + "title": "When The Last Time", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "I Should Be...", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Jaheim Featuring Tha Rayne", + "title": "Fabulous", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Nas", + "title": "Made You Look", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Baby Featuring P. Diddy", + "title": "Do That...", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Emerson Drive", + "title": "Fall Into Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Eve", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Erick Sermon Featuring Redman", + "title": "React", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "50 Cent", + "title": "Wanksta", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "LL Cool J Featuring Amerie", + "title": "Paradise", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Aaliyah", + "title": "I Care 4 U", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ja Rule Featuring Bobby Brown", + "title": "Thug Lovin'", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Busta Rhymes Featuring Spliff Star", + "title": "Make It Clap", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Chevelle", + "title": "The Red", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Christina Aguilera Featuring Redman", + "title": "Dirrty", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Ja Rule Featuring Ashanti", + "title": "Mesmerize", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "O-Town", + "title": "These Are The Days", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Seether", + "title": "Fine Again", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Stone Sour", + "title": "Bother", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Disturbed", + "title": "Prayer", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ludacris", + "title": "Gossip Folks", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Field Mob", + "title": "Sick Of Being Lonely", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Snoop Dogg", + "title": "From Tha Chuuuch To Da Palace", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Brooks & Dunn", + "title": "Every River", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Our Lady Peace", + "title": "Somewhere Out There", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Common Featuring Mary J. Blige", + "title": "Come Close To Me", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Isyss", + "title": "Single For The Rest Of My Life", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Benzino", + "title": "Rock The Party", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Trick Daddy Featuring LaTocha Scott", + "title": "Thug Holiday", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Toni Braxton Featuring Loon", + "title": "Hit The Freeway", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Telepopmusik", + "title": "Breathe", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Big Tymers Featuring Tateeze, Boo & Gotti", + "title": "Oh Yeah!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 50, + "fuzzy_match_count": 5, + "missing_count": 45, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "2001 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "No Doubt Featuring Bounty Killer", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lenny Kravitz", + "title": "Dig In", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Nelly", + "title": "#1", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 1, + "missing_count": 6, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "2001 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tim McGraw", + "playlist_title": "The Cowboy In Me", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b06ddd0-1837-c33d-35b3-4d64e4fbc6e3", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - The Cowboy In Me.mp4", + "title": "The Cowboy In Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Some Days You Gotta Dance", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7861fd3-7ad5-7f95-f4cf-7e4f51d72217", + "path": "z://CDG\\Various\\Dixie Chicks - Some Days You Gotta Dance.mp3", + "title": "Some Days You Gotta Dance" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Martina McBride", + "playlist_title": "Blessed", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dfd7ff9-48f3-6aa9-abb3-4c880629cae8", + "path": "z://MP4\\KaraokeOnVEVO\\Martina McBride - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Chris Cagle", + "playlist_title": "I Breathe In, I Breathe Out", + "found_song": { + "artist": "Chris Cagle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4956694-27c2-b135-0abc-15f10618b397", + "path": "z://MP4\\KaraokeOnVEVO\\Chris Cagle - I Breathe In, I Breathe Out.mp4", + "title": "I Breathe In, I Breathe Out" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Blake Shelton", + "playlist_title": "All Over Me", + "found_song": { + "artist": "Blake Shelton", + "disabled": false, + "favorite": false, + "guid": "4d90cb21-a0e1-f990-182d-10bf07a71a1a", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Shelton, Blake - All Over Me.mp3", + "title": "All Over Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Montgomery Gentry", + "playlist_title": "Cold One Comin' On", + "found_song": { + "artist": "Montgomery Gentry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47d5931d-14b6-0ebe-712f-12bccb5164f9", + "path": "z://MP4\\KaraokeOnVEVO\\Montgomery Gentry - Cold One Comin On.mp4", + "title": "Cold One Comin' On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "Only In America", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "ddc3b2e2-25e6-0a04-47ea-80f36865f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only In America - Brooks & Dunn.mp4", + "title": "Only In America" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Rascal Flatts", + "playlist_title": "I'm Movin' On", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "genre": "Other", + "guid": "76d07be9-89c2-3a87-5fa9-156a6b46acd0", + "path": "z://CDG\\Sound Choice Karaoke\\SC9008\\SC9008-07 - Rascal Flatts - Im Moving On.mp3", + "title": "Im Moving On" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jo Dee Messina With Tim McGraw", + "title": "Bring On The Rain", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Joe Diffie", + "title": "In Another World", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Tracy Byrd", + "title": "Just Let Me Be In Love", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Travis Tritt", + "title": "Love Of A Woman", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sara Evans", + "title": "Saints & Angels", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jamie O'Neal", + "title": "Shiver", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 4, + "missing_count": 7, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2001 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Nickelback", + "playlist_title": "How You Remind Me", + "found_song": { + "artist": "Nickelback", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b4da9e-a43c-a99e-5cc6-1ab1f6721763", + "path": "z://MP4\\Sing King Karaoke\\Nickelback - How You Remind Me (Karaoke Version).mp4", + "title": "How You Remind Me" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Usher", + "playlist_title": "U Got It Bad", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "f127489f-d1d4-c7ed-6290-6a684a86cd74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke U Got It Bad - Usher.mp4", + "title": "U Got It Bad" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f10911e-993f-1368-fdd2-c4c57f7f2f8c", + "path": "z://MP4\\Sing King Karaoke\\Mary J. Blige - Family Affair.mp4", + "title": "Family Affair" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Hero", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "41c95b81-3936-a93a-7e56-cc61c70dd4df", + "path": "z://MP4\\Sing King Karaoke\\Enrique Iglesias - Hero (Karaoke Version).mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Shakira", + "playlist_title": "Whenever, Wherever", + "found_song": { + "artist": "Shakira", + "disabled": false, + "favorite": false, + "guid": "cc9bf0e8-061e-b271-a08c-ef54d7523052", + "path": "z://MP4\\KaraFun Karaoke\\Whenever, Wherever - Shakira Karaoke Version KaraFun.mp4", + "title": "Whenever, Wherever" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ginuwine", + "playlist_title": "Differences", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "00d9be9a-faee-fc20-b800-9bf47b5fa87f", + "path": "z://MP4\\KaraokeOnVEVO\\Ginuwine - Differences.mp4", + "title": "Differences" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Creed", + "playlist_title": "My Sacrifice", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "guid": "0698eff7-44c9-72a8-1ad8-03eb6ce970a6", + "path": "z://MP4\\Sing King Karaoke\\Creed - My Sacrifice (Karaoke Version).mp4", + "title": "My Sacrifice" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Alicia Keys", + "playlist_title": "A Woman's Worth", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "e5075906-ec70-2aa0-e5da-42d36a8cbd80", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Woman s Worth - Alicia Keys.mp4", + "title": "A Woman s Worth" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Nelly Furtado", + "playlist_title": "Turn Off The Light", + "found_song": { + "artist": "Nelly Furtado", + "disabled": false, + "favorite": false, + "guid": "3f8c1e31-836a-30a8-e54b-4c78694ee075", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF178\\Nelly Furtado - Turn Off The Light - SF178 - 04.mp3", + "title": "Turn Off The Light" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "'N Sync", + "playlist_title": "Gone", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "guid": "58bdbee8-1af4-5f4f-1748-a1d06fd37275", + "path": "z://MP4\\Let's Sing Karaoke\\N Sync - Gone (Karaoke & Lyrics).mp4", + "title": "Gone" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Five For Fighting", + "playlist_title": "Superman (It's Not Easy)", + "found_song": { + "artist": "Five for Fighting", + "disabled": false, + "favorite": false, + "guid": "ea57e44e-2911-2964-aa5f-ba8d5a744ba6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superman (It s Not Easy) - Five for Fighting.mp4", + "title": "Superman (It s Not Easy)" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Calling", + "playlist_title": "Wherever You Will Go", + "found_song": { + "artist": "The Calling", + "disabled": false, + "favorite": false, + "guid": "b6e1cdcd-0de5-94f9-9866-45b6047cc106", + "path": "z://MP4\\Sing King Karaoke\\The Calling - Wherever You Will Go (Karaoke Version).mp4", + "title": "Wherever You Will Go" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaliyah", + "playlist_title": "Rock The Boat", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "fb107fbe-d1a1-73d7-f492-5417aeb529a7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock The Boat - Aaliyah.mp4", + "title": "Rock The Boat" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Enya", + "playlist_title": "Only Time", + "found_song": { + "artist": "Enya", + "disabled": false, + "favorite": false, + "guid": "c533bd09-18e9-9c91-a827-6ba382d59ed7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Time - Enya.mp4", + "title": "Only Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "Where The Stars And Stripes And The Eagle Fly", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5669bab-4aca-2df9-f02a-1fe22b1da944", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - Where The Stars And Stripes And The Eagle Fly.mp4", + "title": "Where The Stars And Stripes And The Eagle Fly" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Michael Jackson", + "playlist_title": "Butterflies", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "16110716-0dfa-c3d0-32a3-4c6ede8b5874", + "path": "z://CDG\\Various\\Michael Jackson - Butterflies.mp3", + "title": "Butterflies" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Alicia Keys", + "playlist_title": "Fallin'", + "found_song": { + "artist": "Alicia Keys", + "disabled": false, + "favorite": false, + "guid": "0510686b-a790-0535-9927-b139da1ab698", + "path": "z://MP4\\Sing King Karaoke\\Alicia Keys - Fallin (Karaoke Version).mp4", + "title": "Fallin" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Linkin Park", + "playlist_title": "In The End", + "found_song": { + "artist": "Linkin Park", + "disabled": false, + "favorite": false, + "guid": "51afd01e-6d42-4ef2-a317-f31964de6046", + "path": "z://MP4\\Sing King Karaoke\\Linkin Park - In The End (Karaoke Version) (2).mp4", + "title": "In The End" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Destiny's Child", + "playlist_title": "Emotion", + "found_song": { + "artist": "Destiny's Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "221a1f4c-0be0-73e2-d998-6b2a8771cf01", + "path": "z://MP4\\ZoomKaraokeOfficial\\Destinys Child - Emotion.mp4", + "title": "Emotion" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where Were You (When The World Stopped Turning)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "9fe18428-91fb-2bf8-2f85-e1c286f80ca3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where Were You (When The World Stopped Turning) - Alan Jackson.mp4", + "title": "Where Were You (When The World Stopped Turning)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Staind", + "playlist_title": "It's Been Awhile", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "a014b9cd-8e4c-69e9-86d6-9dac9064ece4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Been Awhile - Staind.mp4", + "title": "It s Been Awhile" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Toby Keith", + "playlist_title": "I Wanna Talk About Me", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9f424f8-452d-81e6-f309-094a3f57334b", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - I Wanna Talk About Me.mp4", + "title": "I Wanna Talk About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Craig David", + "playlist_title": "7 Days", + "found_song": { + "artist": "Craig David", + "disabled": false, + "favorite": false, + "guid": "eba76a00-10d0-37ad-61b5-c2613bb2b508", + "path": "z://MP4\\Let's Sing Karaoke\\David, Craig - 7 Days (Karaoke & Lyrics).mp4", + "title": "7 Days" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Jewel", + "playlist_title": "Standing Still", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbfd8447-25ef-8e86-f0b8-b26e2d02f28d", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Standing Still.mp4", + "title": "Standing Still" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Holy", + "playlist_title": "Good Morning Beautiful", + "found_song": { + "artist": "Steve Holy", + "disabled": false, + "favorite": false, + "guid": "3cbb60f0-2bf7-3b3b-66c6-a1c440ba6f37", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Holy - Good Morning Beautiful (Karaoke).mp4", + "title": "Good Morning Beautiful" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Lifehouse", + "playlist_title": "Hanging By A Moment", + "found_song": { + "artist": "Lifehouse", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4297f406-3f5c-cfb1-19dd-1f878e47a9de", + "path": "z://MP4\\KaraokeOnVEVO\\Lifehouse - Hanging By A Moment.mp4", + "title": "Hanging By A Moment" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Train", + "playlist_title": "Drops Of Jupiter (Tell Me)", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "490cda6b-a72c-3ba3-a610-ee9fce9c87b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Drops Of Jupiter (Tell Me) - Train.mp4", + "title": "Drops Of Jupiter (Tell Me)" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Trace Adkins", + "playlist_title": "I'm Tryin'", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31d568f3-3075-f64d-4b53-aa4acbb12187", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Im Tryin.mp4", + "title": "I'm Tryin'" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "P.O.D.", + "playlist_title": "Alive", + "found_song": { + "artist": "P.O.D.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bcf40adb-a360-1f99-ddaa-95f84e9cab57", + "path": "z://MP4\\KaraokeOnVEVO\\P.O.D. - Alive.mp4", + "title": "Alive" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wrapped Up In You", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "6ed49fd5-54b1-c33f-4e14-9c2949694b98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wrapped Up In You - Garth Brooks.mp4", + "title": "Wrapped Up In You" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Brad Paisley", + "playlist_title": "Wrapped Around", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "75ac71a4-ddce-3bb1-652e-cb750231701f", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - Wrapped Around.mp4", + "title": "Wrapped Around" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jay-Z", + "playlist_title": "Girls, Girls, Girls", + "found_song": { + "artist": "Jay Z", + "disabled": false, + "favorite": false, + "guid": "a89359a9-0289-580a-1968-28df3603bd36", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\Jay Z - Girls Girls Girls - SF189 - 14.mp3", + "title": "Girls Girls Girls" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Mary J. Blige", + "playlist_title": "No More Drama", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "guid": "57fc453d-c218-61e1-f4c5-82c191835699", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Drama - Mary J. Blige.mp4", + "title": "No More Drama" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Blurry", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "8e66704c-3dd1-7043-d24b-9508e0ab3ff5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blurry - Puddle of Mudd.mp4", + "title": "Blurry" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Maxwell", + "playlist_title": "Lifetime", + "found_song": { + "artist": "Maxwell", + "disabled": false, + "favorite": false, + "guid": "ca4b071a-450e-6b78-3471-4b36895d76f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lifetime - Maxwell.mp4", + "title": "Lifetime" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Michelle Branch", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Michelle Branch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e919d66-d2db-6bfd-9d31-2ef5c2625b10", + "path": "z://MP4\\Sing King Karaoke\\Michelle Branch - Everywhere.mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Angie Stone", + "playlist_title": "Brotha", + "found_song": { + "artist": "Angie Stone", + "disabled": false, + "favorite": false, + "guid": "fd30df8c-f9d9-2582-c6e6-6b7b41390ba4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brotha - Angie Stone.mp4", + "title": "Brotha" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Britney Spears", + "playlist_title": "I'm A Slave 4 U", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "5dbc0504-3c1b-38db-3f78-d5bfb3f61ba8", + "path": "z://MP4\\KaraFun Karaoke\\I'm a Slave 4 U - Britney Spears Karaoke Version KaraFun.mp4", + "title": "I'm a Slave 4 U" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Incubus", + "playlist_title": "Wish You Were Here", + "found_song": { + "artist": "Incubus", + "disabled": false, + "favorite": false, + "guid": "57897604-1afa-d58d-da39-0b14e56b113e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wish You Were Here - Incubus.mp4", + "title": "Wish You Were Here" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Lonestar", + "playlist_title": "With Me", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db2e8e92-0ded-6132-4a44-2c9cdc9f9a7b", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - With Me.mp4", + "title": "With Me" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "112", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "112", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "689fac89-5270-4ac6-feef-9e119800812a", + "path": "z://MP4\\KaraokeOnVEVO\\112 - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Lee Greenwood", + "playlist_title": "God Bless The USA", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cde5ef84-9aef-a4ae-4e00-a161fa22cc06", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - God Bless The USA.mp4", + "title": "God Bless The USA" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Staind", + "playlist_title": "Fade", + "found_song": { + "artist": "Staind", + "disabled": false, + "favorite": false, + "guid": "53473366-978e-74b3-5598-13674cf852a3", + "path": "z://CDG\\Various\\Staind - Fade.mp3", + "title": "Fade" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "U2", + "playlist_title": "Stuck In A Moment You Can't Get Out Of", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "915ffd6b-26da-de76-69c4-0ef529a1d378", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Stuck In A Moment You Can't Get Out Of (Karaoke & Lyrics).mp4", + "title": "Stuck In A Moment You Can't Get Out Of" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Alien Ant Farm", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Alien Ant Farm", + "disabled": false, + "favorite": false, + "guid": "3de1cb54-3303-4c99-296f-bddf52d156fd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Alien Ant Farm.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Drowning", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "59c55862-8e29-41fc-a04f-0c316812cf85", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Backstreet Boys - Drowning - SFTPB04 - 08.mp3", + "title": "Drowning" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Christina Milian", + "playlist_title": "AM To PM", + "found_song": { + "artist": "Christina Milian", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ecd54eb-364b-3dfc-04a4-ee6a86b82495", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christina Milian - AM To PM.mp4", + "title": "AM To PM" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Alan Jackson", + "playlist_title": "Where I Come From", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "fc7a8e67-bee6-a22d-5219-4a69aff99859", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Where I Come From - Alan Jackson.mp4", + "title": "Where I Come From" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Brian McKnight", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e350c44f-62b3-97ec-14d1-602d6f224b25", + "path": "z://MP4\\KaraokeOnVEVO\\Brian McKnight - Love Of My Life.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Puddle Of Mudd", + "playlist_title": "Control", + "found_song": { + "artist": "PUddle of Mudd", + "disabled": false, + "favorite": false, + "guid": "59e9e955-ff98-2108-2b34-c1e296316acd", + "path": "z://CDG\\Various\\Puddle Of Mudd - Control.mp3", + "title": "Control" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Tim McGraw", + "playlist_title": "Angry All The Time", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "0b985a5c-30bf-6b96-3497-a7f7d353c875", + "path": "z://CDG\\Various\\Tim McGraw - Angry All The Time.mp3", + "title": "Angry All The Time" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Whitney Houston", + "playlist_title": "The Star Spangled Banner", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "e74da08f-5aaa-60ad-1864-0b000316dc19", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Star Spangled Banner - Whitney Houston.mp4", + "title": "The Star Spangled Banner" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Rock My World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "2f598e17-f4d2-1334-db2d-bb79ee9cf779", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - You Rock My World (Karaoke & Lyrics) (2).mp4", + "title": "You Rock My World" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Pink", + "playlist_title": "Get The Party Started", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bd27fa0-1440-3903-f910-070865c2a9d1", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Get The Party Started.mp4", + "title": "Get The Party Started" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 37, + "playlist_artist": "George Strait", + "playlist_title": "Run", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "895bcaae-ed46-afc8-4548-f0ff549382fb", + "path": "z://MP4\\Let's Sing Karaoke\\Strait, George - Fireman (Karaoke & Lyrics).mp4", + "title": "Fireman" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "R. Kelly", + "playlist_title": "The World's Greatest", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "guid": "d65bc9d0-18d9-acb1-b52a-9e17ac63c09c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF189\\R. Kelly - The Worlds Greatest - SF189 - 15.mp3", + "title": "The Worlds Greatest" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "The Long Goodbye", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2541655c-4a75-0e13-04be-590bc3201c91", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - The Long Goodbye.mp4", + "title": "The Long Goodbye" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Ja Rule Featuring Ashanti", + "title": "Always On Time", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ja Rule Featuring Case", + "title": "Livin' It Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Toya", + "title": "I Do!!", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Fat Joe Featuring R. Kelly", + "title": "We Thuggin'", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "City High Featuring Eve", + "title": "Caramel", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Nelly", + "title": "#1", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "No Doubt Featuring Bounty Killer", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Janet Featuring Missy Elliott, P. Diddy & Carly Simon", + "title": "Son Of A Gun", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Lenny Kravitz", + "title": "Dig In", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Ludacris", + "title": "Roll Out (My Business)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Mr. Cheeks", + "title": "Lights, Camera, Action!", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Busta Rhymes", + "title": "Break Ya Neck", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "David Ball", + "title": "Riding With Private Malone", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mystikal", + "title": "Bouncin' Back (Bumpin' Me Against The Wall)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Faith Evans", + "title": "You Gets No Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Petey Pablo", + "title": "Raise Up", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "OutKast Featuring Killer Mike", + "title": "The Whole World", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Jo Dee Messina With Tim McGraw", + "title": "Bring On The Rain", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Ginuwine & Tweet", + "title": "Take Away", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Fabolous", + "title": "Young'n (Holla Back)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Master P Featuring Weebie", + "title": "Ooohhhwee", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Jagged Edge", + "title": "Goodbye", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Travis Tritt", + "title": "Love Of A Woman", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Joe", + "title": "Let's Stay Home Tonight", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Jermaine Dupri & Ludacris", + "title": "Welcome To Atlanta", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Jennifer Lopez Featuring Ja Rule", + "title": "Ain't It Funny", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Juvenile", + "title": "From Her Mama (Mama Got A**)", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Glenn Lewis", + "title": "Don't You Forget It", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Mariah Carey", + "title": "Never Too Far/Hero (Medley)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Method Man & Redman", + "title": "Part II", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bubba Sparxxx", + "title": "Ugly", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Ludacris, LL Cool J & Keith Murray", + "title": "Fatty Girl", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "R. Kelly", + "title": "Feelin' On Yo Booty", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Nas", + "title": "Got Ur Self A...", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Tyrese", + "title": "What Am I Gonna Do", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Reba", + "title": "I'm A Survivor", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "R.L., Snoop Dogg & Lil' Kim", + "title": "Do U Wanna Roll (Dolittle Theme)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Babyface", + "title": "What If", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jonell & Method Man", + "title": "Round & Round", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Daniel Rodriguez", + "title": "God Bless America", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "DMX", + "title": "Who We Be", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 54, + "fuzzy_match_count": 4, + "missing_count": 42, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "2000 - Hot Pop Songs", + "total_songs": 20, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "SoulDecision Featuring Thrust", + "playlist_title": "Faded", + "found_song": { + "artist": "SoulDecision Featuring Thrust", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b4b4d4a-55f6-d61f-1451-2865b0898c93", + "path": "z://MP4\\KaraokeOnVEVO\\SoulDecision Featuring Thrust - Faded.mp4", + "title": "Faded" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lenny Kravitz", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 3, + "missing_count": 5, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "2000 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Darryl Worley", + "playlist_title": "A Good Day To Run", + "found_song": { + "artist": "Darryl Worley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46836067-4735-1177-5f0c-7c657686e857", + "path": "z://MP4\\KaraokeOnVEVO\\Darryl Worley - A Good Day To Run.mp4", + "title": "A Good Day To Run" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Alabama", + "playlist_title": "When It All Goes South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83358de3-65e9-b2fd-616a-f5f187ae7ef6", + "path": "z://CDG\\Various\\Alabama - When It All Goes South.mp3", + "title": "When It All Goes South" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Andy Griggs", + "playlist_title": "You Made Me That Way", + "found_song": { + "artist": "Andy Griggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2f5d6dca-7a0d-548a-ebca-e8b1efe4fcc5", + "path": "z://CDG\\Various\\Andy Griggs - You Made Me That Way.mp3", + "title": "You Made Me That Way" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Tim McGraw", + "title": "My Next Thirty Years", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Kenny Chesney", + "title": "I Lost It", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Brad Paisley", + "title": "We Danced", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Aaron Tippin", + "title": "Kiss This", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "SheDaisy", + "title": "Lucky 4 You (Tonight I'm Just Me)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 15, + "fuzzy_match_count": 0, + "missing_count": 10, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "2000 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Destiny's Child", + "playlist_title": "Independent Women Part I", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "305f06cc-25e9-26df-f83b-65dbc94c24af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Independent Women Part I - Destiny s Child.mp4", + "title": "Independent Women Part I" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Dream", + "playlist_title": "He Loves U Not", + "found_song": { + "artist": "Dream", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2aa8e300-b9d0-1e70-4667-7f65f19aa084", + "path": "z://MP4\\VocalStarKaraoke\\Dream - He Loves U Not.mp4", + "title": "He Loves U Not" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Creed", + "playlist_title": "With Arms Wide Open", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1117a36b-47a2-e5f0-2dee-cf3547c625d2", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - With Arms Wide Open.mp4", + "title": "With Arms Wide Open" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "OutKast", + "playlist_title": "Ms. Jackson", + "found_song": { + "artist": "Outkast", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7a4e934-2ed2-2439-6a21-d879714cd925", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTPB04\\Outkast - Ms Jackson - SFTPB04 - 14.mp3", + "title": "Ms Jackson" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "matchbox twenty", + "playlist_title": "If You're Gone", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a7fe433a-c4d8-61b3-f72c-a16b8f9a097d", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - If Youre Gone.mp4", + "title": "If You're Gone" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "3 Doors Down", + "playlist_title": "Kryptonite", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "guid": "b267729b-4cef-a156-3150-ae3264585327", + "path": "z://MP4\\Sing King Karaoke\\3 Doors Down - Kryptonite (Karaoke Version).mp4", + "title": "Kryptonite" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Debelah Morgan", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "Debelah Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21c4bfc2-9e2b-5689-9f8d-877a8ffe308e", + "path": "z://MP4\\KaraokeOnVEVO\\Debelah Morgan - Dance With Me.mp4", + "title": "Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "'N Sync", + "playlist_title": "This I Promise You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5cd91af4-14d3-ea62-1921-476c48a65ae2", + "path": "z://MP4\\Sing King Karaoke\\N Sync - This I Promise You.mp4", + "title": "This I Promise You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Samantha Mumba", + "playlist_title": "Gotta Tell You", + "found_song": { + "artist": "Samantha Mumba", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14b1a55-8beb-a649-b7e2-45256ecf6e82", + "path": "z://MP4\\VocalStarKaraoke\\Samantha Mumba - Gotta Tell You.mp4", + "title": "Gotta Tell You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "R. Kelly", + "playlist_title": "I Wish", + "found_song": { + "artist": "R. Kelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8fea3d88-4410-9d5c-3421-0b8100f34a87", + "path": "z://MP4\\KaraokeOnVEVO\\R. Kelly - I Wish.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "O-Town", + "playlist_title": "Liquid Dreams", + "found_song": { + "artist": "O Town", + "disabled": false, + "favorite": false, + "guid": "4af7a5c4-864f-b30c-6491-3645e5486db1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF186\\O Town - Liquid Dreams - SF186 - 12.mp3", + "title": "Liquid Dreams" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Nelly", + "playlist_title": "E.I.", + "found_song": { + "artist": "Nelly", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a889b7a-d714-eba8-6cb2-fee0db45ea8b", + "path": "z://MP4\\KaraokeOnVEVO\\Nelly - EI.mp4", + "title": "E.I." + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Shape Of My Heart", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "dcbf733d-96f9-8f06-12d5-cbfe19f7dc57", + "path": "z://MP4\\Sing King Karaoke\\Backstreet Boys - Shape Of My Heart (Karaoke Version).mp4", + "title": "Shape Of My Heart" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "Pinch Me", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "0b6ba5d7-3551-1c94-59df-628e99a76cd7", + "path": "z://CDG\\Various\\Barenaked Ladies - Pinch Me.mp3", + "title": "Pinch Me" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "U2", + "playlist_title": "Beautiful Day", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "c83be262-204b-3b04-76dc-019e0b598d20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\U2 - Beautiful Day - SF172 - 07.mp3", + "title": "Beautiful Day" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Madonna", + "playlist_title": "Music", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3125831-bf55-b10c-2239-5fa7bb83160b", + "path": "z://MP4\\VocalStarKaraoke\\Madonna - Music.mp4", + "title": "Music" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Britney Spears", + "playlist_title": "Stronger", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "379bb21b-1147-53fd-a577-28454563d7ea", + "path": "z://MP4\\KaraokeOnVEVO\\Britney Spears - Stronger.mp4", + "title": "Stronger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Madonna", + "playlist_title": "Don't Tell Me", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "7c0b6524-0c14-fa30-4ce1-7829a39c536f", + "path": "z://MP4\\singsongsmusic\\Don t Tell me - Karaoke HD (In the style of Madonna).mp4", + "title": "Don t Tell me" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Without You", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8529234-fd63-cf30-0da8-27c812bb2feb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sara Evans", + "playlist_title": "Born To Fly", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36a3dfb5-b5f5-38ac-9ad6-fa55134c5a68", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - Born To Fly.mp4", + "title": "Born To Fly" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fuel", + "playlist_title": "Hemorrhage (In My Hands)", + "found_song": { + "artist": "Fuel", + "disabled": false, + "favorite": false, + "guid": "0dfb7642-1dc7-3c1b-a8f6-5a1d5a2761f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hemorrhage (In My Hands) - Fuel.mp4", + "title": "Hemorrhage (In My Hands)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "matchbox twenty", + "playlist_title": "Bent", + "found_song": { + "artist": "matchbox twenty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dab62e58-e941-66a1-7b40-c6601548731c", + "path": "z://MP4\\KaraokeOnVEVO\\matchbox twenty - Bent.mp4", + "title": "Bent" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Ricky Martin", + "playlist_title": "She Bangs", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf327ed4-1810-3506-dd38-1b1150ead179", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ricky Martin - She Bangs.mp4", + "title": "She Bangs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "My Everything", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c59a897-660b-e958-1f9d-4e83bb6ab003", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - My Everything.mp4", + "title": "My Everything" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Travis Tritt", + "playlist_title": "Best Of Intentions", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8200f1a-368c-4fb6-8bcd-aa0348caf91a", + "path": "z://MP4\\KaraokeOnVEVO\\Travis Tritt - Best Of Intentions.mp4", + "title": "Best Of Intentions" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Alan Jackson", + "playlist_title": "www.memory", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "3712b432-e3d8-f8aa-54a3-d833fbccd2cc", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Alan - Www Memory (Karaoke & Lyrics).mp4", + "title": "Www Memory" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Lonestar", + "playlist_title": "Tell Her", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46cee5bf-e428-0924-3675-47fede2439b0", + "path": "z://MP4\\KaraokeOnVEVO\\Lonestar - Tell Her.mp4", + "title": "Tell Her" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Phil Vassar", + "playlist_title": "Just Another Day In Paradise", + "found_song": { + "artist": "Phil Vassar", + "disabled": false, + "favorite": false, + "guid": "5712d1c0-0839-41ad-aff2-9cd012812bf4", + "path": "z://CDG\\Various\\Phil Vassar - Just Another Day In Paradise.mp3", + "title": "Just Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "Ashes By Now", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "guid": "e8b31ae9-38ed-f68b-1e6f-ad132b495abd", + "path": "z://MP4\\Let's Sing Karaoke\\Womack, Lee Ann - Ashes By Now (Karaoke & Lyrics).mp4", + "title": "Ashes By Now" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Burn", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb4234fb-96a4-0ea3-719a-de8145822911", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Burn.mp4", + "title": "Burn" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "3 Doors Down", + "playlist_title": "Loser", + "found_song": { + "artist": "3 Doors Down", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba2c8b62-daa6-34ed-ad42-bb48320a2805", + "path": "z://MP4\\KaraokeOnVEVO\\3 Doors Down - Loser.mp4", + "title": "Loser" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "The Little Girl", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "467b8194-fdfe-abec-5541-3f3848efbc0c", + "path": "z://MP4\\TheKARAOKEChannel\\The Little Girl in the Style of John Michael Montgomery with lyrics (no lead vocal) Karaoke Video.mp4", + "title": "The Little Girl" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "David Gray", + "playlist_title": "Babylon", + "found_song": { + "artist": "David Gray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a63df7f-b64b-641c-2d5e-b823b11bb304", + "path": "z://MP4\\KaraokeOnVEVO\\David Gray - Babylon.mp4", + "title": "Babylon" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Garth Brooks", + "playlist_title": "Wild Horses", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "e97b78c4-ebb1-7357-9e7c-7840d1311d47", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild Horses - Garth Brooks.mp4", + "title": "Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Rollin'", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4f57c300-7f06-253b-bf18-7af1022e1480", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limp Bizkit - Rollin.mp4", + "title": "Rollin'" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kelly Price", + "playlist_title": "You Should've Told Me", + "found_song": { + "artist": "Kelly Price", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27ffe53b-9803-1bc2-8869-08846d8ae029", + "path": "z://MP4\\KaraokeOnVEVO\\Kelly Price - You Shouldve Told Me.mp4", + "title": "You Should've Told Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Rascal Flatts", + "playlist_title": "This Everyday Love", + "found_song": { + "artist": "Rascal Flatts", + "disabled": false, + "favorite": false, + "guid": "d923b604-e03c-374f-8578-5a3cd67f28c5", + "path": "z://CDG\\Various\\Rascal Flatts - This Everyday Love.mp3", + "title": "This Everyday Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toby Keith", + "playlist_title": "You Shouldn't Kiss Me Like This", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "524f042d-13dd-513c-c3e1-5375016892f8", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith - You Shouldnt Kiss Me Like This.mp4", + "title": "You Shouldn't Kiss Me Like This" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Offspring", + "playlist_title": "Original Prankster", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d21a102-e7fd-366b-1b63-917072596b4e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Offspring - Original Prankster - SFMW 807 -14.mp3", + "title": "Original Prankster" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Can't Fight The Moonlight", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e62f3efc-78b7-16f6-17a3-5015c68db395", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - Can't Fight The Moonlight.mp4", + "title": "Can't Fight The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boyz II Men", + "playlist_title": "Thank You In Advance", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc89a85d-ea17-3d94-d73d-a2490c4abc01", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - Thank You In Advance.mp4", + "title": "Thank You In Advance" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "98 Degrees", + "playlist_title": "Give Me Just One Night (Una Noche)", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91caebe0-b8b7-a78d-3384-61dca5f83d28", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Give Me Just One Night (Una Noche.mp4", + "title": "Give Me Just One Night (Una Noche)" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "George Strait", + "playlist_title": "Go On", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1eaad4b7-e503-7b33-80eb-96687af400d7", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Go On.mp4", + "title": "Go On" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "Faith Hill", + "playlist_title": "The Way You Love Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "86635f39-d959-2c24-4c69-2999174c0765", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - Way You Love Me (Karaoke & Lyrics).mp4", + "title": "Way You Love Me" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Pink", + "playlist_title": "Most Girls", + "found_song": { + "artist": "P!nk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2996b42d-ce86-7307-5b53-aa970adeda59", + "path": "z://MP4\\KaraokeOnVEVO\\Pink - Most Girls.mp4", + "title": "Most Girls" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Love Don't Cost A Thing", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "guid": "364647e9-ab11-384a-1814-88750500f843", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF175\\Jennifer Lopez - My Love Don't Cost A Thing - SF175 - 03.mp3", + "title": "My Love Don't Cost A Thing" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Shaggy Featuring Rayvon", + "playlist_title": "Angel", + "found_song": { + "artist": "Shaggy Ft. Rayvon", + "disabled": false, + "favorite": false, + "guid": "98bd0551-aaa1-0281-3bb8-a32d3bc60a8f", + "path": "z://MP4\\Sing King Karaoke\\Shaggy Ft. Rayvon - Angel (Karaoke Version).mp4", + "title": "Angel" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Shaggy Featuring Ricardo \"RikRok\" Ducent", + "title": "It Wasn't Me", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mya", + "title": "Case Of The Ex (Whatcha Gonna Do)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jay-Z", + "title": "I Just Wanna Love U (Give It 2 Me)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lenny Kravitz", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ja Rule Featuring Christina Milian", + "title": "Between Me And You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Evan And Jaron", + "title": "Crazy For This Girl", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ludacris Featuring Shawna", + "title": "What's Your Fantasy", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Avant Featuring Ketara Wyatt", + "title": "My First Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tim McGraw", + "title": "My Next Thirty Years", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Musiq", + "title": "Just Friends (Sunny)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Mystikal Featuring Nivea", + "title": "Danger (Been So Long)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Kenny Chesney", + "title": "I Lost It", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "K-Ci & JoJo", + "title": "Crazy", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Mikaila", + "title": "So In Love With Two", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Kandi", + "title": "Don't Think I'm Not", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lil Bow Wow", + "title": "Bow Wow (That's My Name)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Brad Paisley", + "title": "We Danced", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Vertical Horizon", + "title": "You're A God", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Carl Thomas", + "title": "Emotional", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "3LW", + "title": "No More (Baby I'ma Do Right)", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Public Announcement", + "title": "Mamacita", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Wyclef Jean Featuring Mary J. Blige", + "title": "911", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dave Hollister", + "title": "One Woman Man", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Eminem Featuring Dido", + "title": "Stan", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Vitamin C", + "title": "The Itch", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Moby Featuring Gwen Stefani", + "title": "South Side", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Cash Money Millionaires", + "title": "Project Chick", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jagged Edge", + "title": "Promise", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "112", + "title": "It's Over Now", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Erykah Badu", + "title": "Bag Lady", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Jamie O'Neal", + "title": "There Is No Arizona", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "NewSong", + "title": "The Christmas Shoes", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "BBMak", + "title": "Still On Your Side", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Memphis Bleek Featuring Jay-Z & Missy Elliott", + "title": "Is That Your Chick", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Keith Urban", + "title": "But For The Grace Of God", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Profyle", + "title": "Liar", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Yolanda Adams", + "title": "Open My Heart", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Xzibit", + "title": "X", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Clark Family Experience", + "title": "Meanwhile Back At The Ranch", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Billy Gilman", + "title": "Oklahoma", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Beenie Man Featuring Mya", + "title": "Girls Dem Sugar", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ja Rule Featuring Lil' Mo And Vita", + "title": "Put It On Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jaheim", + "title": "Could It Be", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Terri Clark", + "title": "A Little Gasoline", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Lil' Kim Featuring Sisqo", + "title": "How Many Licks?", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Chris Cagle", + "title": "My Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Mos Def & Pharoahe Monch Featuring Nate Dogg", + "title": "Oh No", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Marc Anthony", + "title": "My Baby You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "De La Soul Featuring Chaka Khan", + "title": "All Good?", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Aaron Tippin", + "title": "Kiss This", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Sunday", + "title": "I Know", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Vince Gill", + "title": "Feels Like Love", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nine Days", + "title": "If I Am", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 43, + "fuzzy_match_count": 4, + "missing_count": 53, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1999 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gary Allan", + "playlist_title": "Smoke Rings In The Dark", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49e24614-81b7-2227-66e5-264486f13ebb", + "path": "z://CDG\\Various\\Gary Allan - Smoke Rings In The Dark.mp3", + "title": "Smoke Rings In The Dark" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Mark Wills", + "playlist_title": "Back At One", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "guid": "8a4f03b4-18b9-8802-cdd8-155fb7f3cb0f", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Back At One (Karaoke).mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Because You Love Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "guid": "09806881-c17d-3a41-bdf1-5ef050cdb0a2", + "path": "z://MP4\\KaraFun Karaoke\\Because You Love Me - Jo Dee Messina Karaoke Version KaraFun.mp4", + "title": "Because You Love Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Clint Black", + "title": "When I Said I Do", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "John Michael Montgomery", + "title": "Home To You", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Martina McBride", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tracy Byrd", + "title": "Put Your Hand In Mine", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Brooks & Dunn", + "title": "Beer Thirty", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "George Strait", + "title": "What Do You Say To That", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Joe Diffie", + "title": "The Quittin' Kind", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1999 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Brian McKnight", + "playlist_title": "Back At One", + "found_song": { + "artist": "Brian McKnight", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "ee1da233-9aa1-2e7e-69ec-545f23f75bd9", + "path": "z://MP4\\Sing King Karaoke\\Brian McKnight - Back At One.mp4", + "title": "Back At One" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Jessica Simpson", + "playlist_title": "I Wanna Love You Forever", + "found_song": { + "artist": "Jessica Simpson", + "disabled": false, + "favorite": false, + "guid": "9a684988-cf6f-9021-f62d-74c6ccfed52e", + "path": "z://MP4\\KaraFun Karaoke\\I Wanna Love You Forever - Jessica Simpson Karaoke Version KaraFun.mp4", + "title": "I Wanna Love You Forever" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Savage Garden", + "playlist_title": "I Knew I Loved You", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "1d596975-c0fe-cf0e-bff2-468586de73f3", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - I Knew I Loved You (Karaoke Version).mp4", + "title": "I Knew I Loved You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Whitney Houston", + "playlist_title": "My Love Is Your Love", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "c6f17c64-c26f-b405-0a92-962502cb3242", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - My Love Is Your Love (Karaoke Version).mp4", + "title": "My Love Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Marc Anthony", + "playlist_title": "I Need To Know", + "found_song": { + "artist": "Marc Anthony", + "disabled": false, + "favorite": false, + "guid": "b8496988-a5c9-7019-b64f-b42a7f4d9868", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need To Know - Marc Anthony.mp4", + "title": "I Need To Know" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Blaque", + "playlist_title": "Bring It All To Me", + "found_song": { + "artist": "Blaque ft. N Sync", + "disabled": false, + "favorite": false, + "guid": "3043647b-de52-0f74-4240-b780f90961a4", + "path": "z://MP4\\Let's Sing Karaoke\\Blaque & N Sync - Bring It All To Me (Karaoke & Lyrics).mp4", + "title": "Bring It All To Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jennifer Lopez", + "playlist_title": "Waiting For Tonight", + "found_song": { + "artist": "Jennifer Lopez", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4691016a-3bb5-be33-e9dc-8d853adf3714", + "path": "z://CDG\\Sunfly Collection\\Sunfly TeenPack Set\\SFTP01\\Jennifer Lopez - Waiting For Tonight - SFTP01- 02.mp3", + "title": "Waiting For Tonight" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Christina Aguilera", + "playlist_title": "What A Girl Wants", + "found_song": { + "artist": "Christina Aguilera", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5291999f-3cd9-fc19-1de1-92f05783ab69", + "path": "z://MP4\\Sing King Karaoke\\Christina Aguilera - What A Girl Wants.mp4", + "title": "What A Girl Wants" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Len", + "playlist_title": "Steal My Sunshine", + "found_song": { + "artist": "Len", + "disabled": false, + "favorite": false, + "guid": "9f29d6a7-a31d-d02b-8954-2a3af1a124dc", + "path": "z://MP4\\Len - Steal My Sunshine.mp4", + "title": "Steal My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eiffel 65", + "playlist_title": "Blue (Da Ba Dee)", + "found_song": { + "artist": "Eiffel 65", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4c7cf8da-1f36-4a56-a5b8-2ba2bb84d1fb", + "path": "z://MP4\\Sing King Karaoke\\Eiffel 65 - Blue (Da Ba Dee).mp4", + "title": "Blue (Da Ba Dee)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lou Bega", + "playlist_title": "Mambo No. 5 (A Little Bit Of...)", + "found_song": { + "artist": "Lou Bega", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1db201e1-5a76-282d-6b89-2163c8f0d8f6", + "path": "z://MP4\\Sing King Karaoke\\Lou Bega - Mambo No 5 (A Little Bit Of).mp4", + "title": "Mambo No 5 (A Little Bit Of...)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "TLC", + "playlist_title": "Unpretty", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "803500e8-931f-b7ab-c0c2-68ef27c71040", + "path": "z://MP4\\ZoomKaraokeOfficial\\TLC - Unpretty.mp4", + "title": "Unpretty" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Train", + "playlist_title": "Meet Virginia", + "found_song": { + "artist": "Train", + "disabled": false, + "favorite": false, + "guid": "4b437d87-78ba-89de-09bc-c4fdd031db0b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Meet Virginia - Train.mp4", + "title": "Meet Virginia" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Foo Fighters", + "playlist_title": "Learn To Fly", + "found_song": { + "artist": "Foo Fighters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b0637364-9cbb-d3f0-175c-8930847465cc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Foo Fighters - Learn To Fly - SFMW 833 -09.mp3", + "title": "Learn To Fly" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Montell Jordan", + "playlist_title": "Get It On Tonite", + "found_song": { + "artist": "Montell Jordan", + "disabled": false, + "favorite": false, + "guid": "64a34933-d17a-531c-3372-9d3cdfa68fe5", + "path": "z://MP4\\Let's Sing Karaoke\\Jordan, Montell - Get It On Tonite (Karaoke & Lyrics).mp4", + "title": "Get It On Tonite" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "Big Deal", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "b433cdc9-a829-377e-8872-6c0125360d14", + "path": "z://MP4\\Let's Sing Karaoke\\Rimes, LeAnn - Big Deal (Karaoke & Lyrics) (2).mp4", + "title": "Big Deal" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Faith Hill", + "playlist_title": "Breathe", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e3f941-737c-9394-b2b1-606610918cf7", + "path": "z://MP4\\KaraokeOnVEVO\\Faith Hill - Breathe.mp4", + "title": "Breathe" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Celine Dion", + "playlist_title": "That's The Way It Is", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43f0d877-e82a-62c9-c00a-15a3b58b9537", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - That's The Way It Is.mp4", + "title": "That's The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Brad Paisley", + "playlist_title": "He Didn't Have To Be", + "found_song": { + "artist": "Brad Paisley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1237eb14-771b-f011-a2ce-39953863877c", + "path": "z://MP4\\KaraokeOnVEVO\\Brad Paisley - He Didnt Have To Be.mp4", + "title": "He Didn't Have To Be" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Counting Crows", + "playlist_title": "Hanginaround", + "found_song": { + "artist": "Counting Crows", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba93391-ba9d-460e-19e8-839665d7cf89", + "path": "z://MP4\\KaraokeOnVEVO\\Counting Crows - Hanginaround.mp4", + "title": "Hanginaround" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Black Balloon", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "e64da962-6c75-51aa-fe5e-6be5d535cafa", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Black Balloon (Karaoke).mp4", + "title": "Black Balloon" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Filter", + "playlist_title": "Take A Picture", + "found_song": { + "artist": "Filter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d497674-1321-6371-ad3a-d84b3b489418", + "path": "z://MP4\\KaraokeOnVEVO\\Filter - Take A Picture.mp4", + "title": "Take A Picture" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Ricky Martin", + "playlist_title": "Shake Your Bon-Bon", + "found_song": { + "artist": "Ricky Martin", + "disabled": false, + "favorite": false, + "guid": "7145de03-4e19-1726-af4f-711600f5fd92", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF150\\Ricky Martin - Shake Your Bon Bon - SF150 - 11.mp3", + "title": "Shake Your Bon Bon" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Mint Condition", + "playlist_title": "If You Love Me", + "found_song": { + "artist": "Mint Condition", + "disabled": false, + "favorite": false, + "guid": "0db24760-18f8-b5dd-e44e-e788685e827a", + "path": "z://MP4\\Let's Sing Karaoke\\Mint Condition - If You Love Me (Karaoke & Lyrics).mp4", + "title": "If You Love Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Lonestar", + "playlist_title": "Amazed", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "36aee739-e208-9aaa-79cd-f65558a5fec9", + "path": "z://MP4\\Sing King Karaoke\\Lonestar - Amazed (Karaoke Version).mp4", + "title": "Amazed" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Tal Bachman", + "playlist_title": "She's So High", + "found_song": { + "artist": "Tal Bachman", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "94a99f15-d660-8809-9e3d-9dd2a697d45c", + "path": "z://MP4\\KaraokeOnVEVO\\Tal Bachman - She's So High.mp4", + "title": "She's So High" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Cowboy Take Me Away", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "guid": "32989d10-b8c3-3882-c20a-bfdec91f35fb", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Cowboy Take Me Away (Karaoke).mp4", + "title": "Cowboy Take Me Away" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Britney Spears", + "playlist_title": "(You Drive Me) Crazy", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "1b410e42-2654-ea6e-caf1-aaec31213daf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Drive Me) Crazy (album version) - Britney Spears.mp4", + "title": "(You Drive Me) Crazy" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tim McGraw", + "playlist_title": "My Best Friend", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "99ed0042-961b-cf3b-a0c0-84b9c346a725", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - My Best Friend (Karaoke).mp4", + "title": "My Best Friend" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Alan Jackson", + "playlist_title": "Pop A Top", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "84d67376-4277-9cad-d991-0777774546d6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pop A Top - Alan Jackson.mp4", + "title": "Pop A Top" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Robbie Williams", + "playlist_title": "Angels", + "found_song": { + "artist": "Robbie Williams", + "disabled": false, + "favorite": false, + "guid": "7115c9f8-0f65-40b1-8e80-ac51627ed2b7", + "path": "z://MP4\\Sing King Karaoke\\Robbie Williams - Angels (Karaoke Version).mp4", + "title": "Angels" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Yankee Grey", + "playlist_title": "All Things Considered", + "found_song": { + "artist": "Yankee Grey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b76f692-6d1d-8b2c-6f24-e45b5583fe71", + "path": "z://MP4\\KaraokeOnVEVO\\Yankee Grey - All Things Considered.mp4", + "title": "All Things Considered" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Blink-182", + "playlist_title": "All The Small Things", + "found_song": { + "artist": "Blink-182", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fd1c3c-2448-3967-7b45-590795534b24", + "path": "z://MP4\\Sing King Karaoke\\blink-182 - All the Small Things.mp4", + "title": "All the Small Things" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Creed", + "playlist_title": "Higher", + "found_song": { + "artist": "Creed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f719d2ac-5c17-4223-d10c-a9a27372e3d0", + "path": "z://MP4\\KaraokeOnVEVO\\Creed - Higher.mp4", + "title": "Higher" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Deep Inside", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "1124ffec-c620-8a81-7bda-74c279008e74", + "path": "z://MP4\\singsongsmusic\\Deep Inside - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Deep Inside" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Tim McGraw", + "playlist_title": "Something Like That", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c725fa0b-33fc-a34b-a463-0f3b5dd495e5", + "path": "z://CDG\\Sound Choice Karaoke\\SC2329\\SC2329-06 - McGraw, Tim - Something Like That.mp3", + "title": "Something Like That" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Enrique Iglesias", + "playlist_title": "Rhythm Divine", + "found_song": { + "artist": "Enrique Iglesias", + "disabled": false, + "favorite": false, + "guid": "518601ea-8aa1-b6b2-5a5b-d6443e1f5f19", + "path": "z://MP4\\singsongsmusic\\Rhythm Divine - Karaoke HD (In the style of Enrique Iglesias).mp4", + "title": "Rhythm Divine" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Larger Than Life", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f3ef19-2463-b72a-8168-1ab9e1693043", + "path": "z://MP4\\ZoomKaraokeOfficial\\Backstreet Boys - Larger Than Life.mp4", + "title": "Larger Than Life" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Kenny Chesney", + "playlist_title": "She Thinks My Tractor's Sexy", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "guid": "38ccd80b-fa23-4384-1c07-295193321669", + "path": "z://CDG\\Various\\Kenny Chesney - She Thinks My Tractor's Sexy.mp3", + "title": "She Thinks My Tractor's Sexy" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Sixpence None The Richer", + "playlist_title": "There She Goes", + "found_song": { + "artist": "Sixpence None The Richer", + "disabled": false, + "favorite": false, + "guid": "2aaf19d4-2dbb-1a09-c0f2-05cf37da59b7", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF146\\Sixpence None The Richer - There She Goes - SF146 - 08.mp3", + "title": "There She Goes" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "R.E.M.", + "playlist_title": "The Great Beyond", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6f5d01d9-2fa4-ab0c-efd9-2aacc57d30ed", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The Great Beyond.mp4", + "title": "The Great Beyond" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Lonestar", + "playlist_title": "Smile", + "found_song": { + "artist": "Lonestar", + "disabled": false, + "favorite": false, + "guid": "98f54f88-a127-211a-254b-8711a9c9a6c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF172\\Lonestar - Smile - SF172 - 02.mp3", + "title": "Smile" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "Come On Over", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c664908c-89a0-a2ec-20f4-9de26267ddef", + "path": "z://MP4\\Let's Sing Karaoke\\Twain, Shania - Come On Over (Karaoke & Lyrics).mp4", + "title": "Come On Over" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Fatboy Slim", + "playlist_title": "The Rockafeller Skank", + "found_song": { + "artist": "Fatboy Slim", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b08017eb-ff29-005d-0bff-46060419e2c5", + "path": "z://MP4\\KaraokeOnVEVO\\Fatboy Slim - The Rockafeller Skank.mp4", + "title": "The Rockafeller Skank" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Destiny's Child", + "playlist_title": "Say My Name", + "found_song": { + "artist": "Destiny s Child", + "disabled": false, + "favorite": false, + "guid": "fbb0c270-c77a-9adb-66d4-561882d12c7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Say My Name - Destiny s Child.mp4", + "title": "Say My Name" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Ty Herndon", + "playlist_title": "Steam", + "found_song": { + "artist": "Ty Herndon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5854880-0ec8-ab50-692c-4515d0874df6", + "path": "z://MP4\\KaraokeOnVEVO\\Ty Herndon - Steam.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Clay Walker", + "playlist_title": "Live, Laugh, Love", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b6f8667-e01c-7cea-c000-4f6f1e85e9bb", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live, Laugh, Love.mp4", + "title": "Live, Laugh, Love" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Kevon Edmonds", + "playlist_title": "24/7", + "found_song": { + "artist": "Kevon Edmonds", + "disabled": false, + "favorite": false, + "guid": "546415b1-b021-159e-2223-d7e24532e112", + "path": "z://MP4\\Let's Sing Karaoke\\Edmonds, Kevon - 247 (Karaoke & Lyrics).mp4", + "title": "247" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "IMx", + "playlist_title": "Stay The Night", + "found_song": { + "artist": "Blunt, James", + "disabled": false, + "favorite": false, + "guid": "3cc5bdef-ae7d-04cf-dd0c-a7b4863209b7", + "path": "z://CDG\\Big Hits Karaoke\\BHK015\\BHK015-11 - Blunt, James - Stay The Night.mp3", + "title": "Stay The Night" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "M2M", + "playlist_title": "Don't Say You Love Me", + "found_song": { + "artist": "Fifth Harmony", + "disabled": false, + "favorite": false, + "guid": "b8448f4f-54cb-4647-19d8-bb6f1a796a66", + "path": "z://MP4\\Sing King Karaoke\\Fifth Harmony - Don't Say You Love Me (Karaoke Version).mp4", + "title": "Don't Say You Love Me" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "Christina Aguilera", + "playlist_title": "The Christmas Song (Chestnuts Roasting On An Open Fire)", + "found_song": { + "artist": "Justin Bieber", + "disabled": false, + "favorite": false, + "guid": "1165bec5-f32d-6c3a-615a-4d7007531983", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Christmas Song (Chestnuts Roasting On An Open Fire) - Justin Bieber.mp4", + "title": "The Christmas Song (Chestnuts Roasting On An Open Fire)" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Destiny's Child", + "playlist_title": "Bug A Boo", + "found_song": { + "artist": "Destinys Child", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "992005ff-5233-b451-2d05-4ed292c4b6a3", + "path": "z://MP4\\VocalStarKaraoke\\Destinys Child - Bug A Boo.mp4", + "title": "Bug A Boo" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "'N Sync & Gloria Estefan", + "playlist_title": "Music Of My Heart", + "found_song": { + "artist": "N Sync & Gloria Estefan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bbc977d-69f4-928d-c68d-ca4b992efec7", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync & Gloria Estefan - Music Of My Heart.mp4", + "title": "Music Of My Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Limp Bizkit", + "playlist_title": "Re-arranged", + "found_song": { + "artist": "Limp Bizkit", + "disabled": false, + "favorite": false, + "guid": "780a9129-0c7e-ce2a-e2e8-ecfa1e0c6f5f", + "path": "z://CDG\\Various\\Limp Bizkit - Rearranged.mp3", + "title": "Rearranged" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Santana Featuring Rob Thomas", + "title": "Smooth", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Missy \"Misdemeanor\" Elliott Featuring NAS, EVE & Q-Tip", + "title": "Hot Boyz", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Donell Jones", + "title": "U Know What's Up", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "LFO", + "title": "Girl On TV", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Smash Mouth", + "title": "Then The Morning Comes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Jagged Edge", + "title": "He Can't Love U", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "702", + "title": "Where My Girls At?", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sole Featuring JT Money & Kandi", + "title": "4, 5, 6", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Juvenile Featuring Mannie Fresh & Lil' Wayne", + "title": "Back That Thang Up", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Ideal", + "title": "Get Gone", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Guy", + "title": "Dancin'", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Puff Daddy Featuring R. Kelly", + "title": "Satisfy You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Ol' Dirty Bastard Featuring Kelis", + "title": "Got Your Money", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sugar Ray", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Clint Black", + "title": "When I Said I Do", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mack 10 & Ms. Toi", + "title": "You Can Do It", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Marc Nelson", + "title": "15 Minutes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Reba", + "title": "What Do You Say", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Sisqo Featuring Make It Hot", + "title": "Got To Get It", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Mariah Carey Featuring Joe & 98 Degrees", + "title": "Thank God I Found You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Mariah Carey Featuring Jay-Z", + "title": "Heartbreaker", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Will Smith Featuring K-Ci", + "title": "Will 2K", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Martina McBride", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "B.G. Featuring Baby, Turk, Mannie Fresh, Juvenile & Lil' Wayne", + "title": "Bling Bling", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Kelis", + "title": "Caught Out There", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Eve", + "title": "Gotta Man", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "John Michael Montgomery", + "title": "Home To You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Amber", + "title": "Sexual (Li Da Di)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Ginuwine", + "title": "None Of Ur Friends Business", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bush", + "title": "The Chemicals Between Us", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "D'Angelo Featuring Method Man And Redman", + "title": "Left & Right", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Deborah Cox With R.L.", + "title": "We Can't Be Friends", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Limp Bizkit Featuring Method Man", + "title": "N 2 Gether Now", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Lil' Wayne Featuring Juvenile & B.G.", + "title": "Tha Block Is Hot", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Angie Stone", + "title": "No More Rain (In This Cloud)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Rage Against The Machine", + "title": "Guerrilla Radio", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Lil' Kim", + "title": "Notorious B.I.G.", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Kenny G", + "title": "Auld Lang Syne", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Chico DeBarge", + "title": "Give You What You Want (Fa Sure)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Prince", + "title": "The Greatest Romance Ever Sold", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Warren G Featuring Mack 10", + "title": "I Want It All", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "J-Shin Featuring LaTocha Scott", + "title": "One Night Stand", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "SheDaisy", + "title": "Deck The Halls", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Dr. Dre Featuring Snoop Dogg", + "title": "Still D.R.E.", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Beth Hart", + "title": "L.A. Song", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Nas", + "title": "NAStradamus", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 7, + "missing_count": 46, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1998 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 3, + "artist": "Collin Raye", + "title": "Someone You Used To Know", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Faith Hill", + "title": "Let Me Let Go", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Martina McBride", + "title": "Wrong Again", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Aaron Tippin", + "title": "For You I Will", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tim McGraw", + "title": "For A Little While", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Ty Herndon", + "title": "It Must Be Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Reba", + "title": "Wrong Night", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Garth Brooks", + "title": "It s Your Song", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Toby Keith", + "title": "Getcha Some", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Billy Ray Cyrus", + "title": "Busy Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 0, + "missing_count": 15, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1998 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "R. Kelly", + "playlist_title": "I m Your Angel", + "found_song": { + "artist": "Celine Dion ft. R. Kelly", + "disabled": false, + "favorite": false, + "guid": "b557e694-cf78-b50d-b6b0-e3f901c9fbc4", + "path": "z://MP4\\Let's Sing Karaoke\\Dion, Celine & R. Kelly - I'm Your Angel (Karaoke & Lyrics) (2).mp4", + "title": "I'm Your Angel" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Deborah Cox", + "playlist_title": "Nobody s Supposed To Be Here", + "found_song": { + "artist": "Deborah Cox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "54a4997e-6060-9ec4-bf34-9b9089da70cf", + "path": "z://MP4\\Sing King Karaoke\\Deborah Cox - Nobody s Supposed To Be Here.mp4", + "title": "Nobody s Supposed To Be Here" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Shania Twain", + "playlist_title": "From This Moment On", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "246f9d01-7488-82ef-f492-f2c39c9c7deb", + "path": "z://MP4\\KaraFun Karaoke\\From This Moment On - Shania Twain Karaoke Version KaraFun.mp4", + "title": "From This Moment On" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Britney Spears", + "playlist_title": "...Baby One More Time", + "found_song": { + "artist": "Britney Spears", + "disabled": false, + "favorite": false, + "guid": "54a2d9dd-0de0-ce76-6839-d14695ba7582", + "path": "z://MP4\\Sing King Karaoke\\Britney Spears - ...Baby One More Time (Karaoke Version).mp4", + "title": "...Baby One More Time" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "98 Degrees", + "playlist_title": "Because Of You", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "guid": "9587183e-6e80-4b1b-ae7f-a6acf4c943a5", + "path": "z://MP4\\KaraokeOnVEVO\\98º - Because Of You (Karaoke).mp4", + "title": "Because Of You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Lauryn Hill", + "playlist_title": "Doo Wop (That Thing)", + "found_song": { + "artist": "Lauryn Hill", + "disabled": false, + "favorite": false, + "guid": "9d5e1052-e04e-f190-685b-38e7f7ed2e37", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Doo Wop (That Thing) - Lauryn Hill.mp4", + "title": "Doo Wop (That Thing)" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Spice Girls", + "playlist_title": "Goodbye", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "fd725dec-7a02-e504-93a6-657f650c1bb4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF128\\Spice Girls - Goodbye - SF128 - 01.mp3", + "title": "Goodbye" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Eagle-Eye Cherry", + "playlist_title": "Save Tonight", + "found_song": { + "artist": "Eagle-Eye Cherry", + "disabled": false, + "favorite": false, + "guid": "a396330b-1c8c-177d-4902-e5e9a60584e5", + "path": "z://MP4\\Sing King Karaoke\\Eagle-Eye Cherry - Save Tonight (Karaoke Version).mp4", + "title": "Save Tonight" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Faith Hill", + "playlist_title": "This Kiss", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "8c8f7fce-6145-241d-af15-074fbcf6393d", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - This Kiss (Karaoke & Lyrics) (2).mp4", + "title": "This Kiss" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jewel", + "playlist_title": "Hands", + "found_song": { + "artist": "Jewel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "657caf6b-266d-fef2-3abd-d42d6df99ce7", + "path": "z://MP4\\KaraokeOnVEVO\\Jewel - Hands.mp4", + "title": "Hands" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Jumper", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "a9c232cd-780e-5176-be79-7b35214efc00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jumper - Third Eye Blind.mp4", + "title": "Jumper" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Slide", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "13f03b13-59ed-74de-41b5-98a4e262a669", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Slide - Goo Goo Dolls.mp4", + "title": "Slide" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Iris", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9dd266b2-0aaf-69b2-1f48-41710e538388", + "path": "z://MP4\\Sing King Karaoke\\Goo Goo Dolls - Iris (Karaoke Version).mp4", + "title": "Iris" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Monica", + "playlist_title": "The First Night", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4d065-cbaa-ccbd-288a-e95c7ff5072a", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - The First Night.mp4", + "title": "The First Night" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Edwin McCain", + "playlist_title": "I ll Be", + "found_song": { + "artist": "Edwin McCain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "97d73023-95f1-0324-bc0a-654bcdfa5e00", + "path": "z://MP4\\Sing King Karaoke\\Edwin McCain - Ill Be.mp4", + "title": "I'll Be" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "BLACKstreet", + "playlist_title": "Take Me There", + "found_song": { + "artist": "Mya ft. Mase, Blackstreet, Blinky Blink", + "disabled": false, + "favorite": false, + "guid": "cc1fd058-5fa5-a4d6-6bbe-34f825d2553c", + "path": "z://MP4\\Let's Sing Karaoke\\Mya & Mase & Blackstreet & Blinky Blink - Take Me There (Karaoke & Lyrics) (2).mp4", + "title": "Take Me There" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Alanis Morissette", + "playlist_title": "Thank U", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "guid": "e071bcb7-aa58-7d6c-b4cd-bb25ae8b301c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Thank U - Alanis Morissette.mp4", + "title": "Thank U" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "One Week", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "ba139217-00c9-a399-35ec-eb3f80bbc048", + "path": "z://MP4\\Sing King Karaoke\\Barenaked Ladies - One Week (Karaoke Version).mp4", + "title": "One Week" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Angel", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "0d61bfb2-badd-3763-9b7e-5d90cc6857de", + "path": "z://MP4\\Sing King Karaoke\\Sarah McLachlan - Angel (Karaoke Version).mp4", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aaliyah", + "playlist_title": "Are You That Somebody?", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "ec224ec0-98a1-3700-0caf-3f3b751fd0e6", + "path": "z://CDG\\Various\\Aaliyah - Are You That Somebody.mp3", + "title": "Are You That Somebody" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Will Smith", + "playlist_title": "Miami", + "found_song": { + "artist": "Will Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a23071ca-826e-a09f-6245-94e32c53af7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Will Smith - Miami.mp4", + "title": "Miami" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "N Sync", + "playlist_title": "(God Must Have Spent) A Little More Time On You", + "found_song": { + "artist": "N Sync", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e60cf2e-f814-cbed-2695-54da47c9fd2d", + "path": "z://MP4\\KaraokeOnVEVO\\N Sync - (God Must Have Spent A Little More Time On You.mp4", + "title": "(God Must Have Spent) A Little More Time On You" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Monica", + "playlist_title": "Angel Of Mine", + "found_song": { + "artist": "Monica", + "disabled": false, + "favorite": false, + "guid": "88858625-6254-4917-fe88-d014db4882f2", + "path": "z://MP4\\KaraokeOnVEVO\\Monica - Angel Of Mine (Karaoke).mp4", + "title": "Angel Of Mine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "2Pac", + "playlist_title": "Changes", + "found_song": { + "artist": "2Pac", + "disabled": false, + "favorite": false, + "guid": "1260dca9-a170-7004-3cad-f825fac84cdf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Changes - 2Pac.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Terri Clark", + "playlist_title": "You re Easy On The Eyes", + "found_song": { + "artist": "Terri Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "faab8df3-8e8b-d2e6-7c07-4b2cb9fa5224", + "path": "z://MP4\\KaraokeOnVEVO\\Terri Clark - You re Easy On The Eyes.mp4", + "title": "You re Easy On The Eyes" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "844c5b08-db6e-c77d-7b1c-3fd21b9851d4", + "path": "z://MP4\\Stingray Karaoke\\I Don't Want To Miss A Thing in the Style of Mark Chesnutt karaoke lyrics (no lead vocal).mp4", + "title": "I Don't Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Brooks", + "playlist_title": "Husbands And Wives", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e11733b-64c4-a02d-2aa4-c9fbc8394e3b", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Husbands And Wives.mp4", + "title": "Husbands And Wives" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Alan Jackson", + "playlist_title": "Right On The Money", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8dcefc34-a180-e5f8-f301-4566c936fdf9", + "path": "z://MP4\\KaraokeOnVEVO\\Alan Jackson - Right On The Money.mp4", + "title": "Right On The Money" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "New Radicals", + "playlist_title": "You Get What You Give", + "found_song": { + "artist": "New Radicals", + "disabled": false, + "favorite": true, + "genre": "Karaoke", + "guid": "d05e862c-3999-8644-7ea5-626465938a2a", + "path": "z://MP4\\KaraokeOnVEVO\\New Radicals - You Get What You Give.mp4", + "title": "You Get What You Give" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Lenny Kravitz", + "playlist_title": "Fly Away", + "found_song": { + "artist": "Lenny Kravitz", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53099da4-bde7-30f5-bb8f-9438cf86d405", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lenny Kravitz - Fly Away.mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Whitney Houston", + "playlist_title": "When You Believe", + "found_song": { + "artist": "Whitney Houston ft. Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "49ce4e5b-b543-c54f-7530-132ed4c0c354", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston (With Mariah Carey) - When You Believe (Karaoke Version).mp4", + "title": "When You Believe" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Offspring", + "playlist_title": "Pretty Fly (For A White Guy)", + "found_song": { + "artist": "The Offspring", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "176c84a4-af34-6133-b5e6-293da9613b47", + "path": "z://MP4\\Sing King Karaoke\\Offspring - Pretty Fly For A White Guy.mp4", + "title": "Pretty Fly For A White Guy" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jo Dee Messina", + "playlist_title": "Stand Beside Me", + "found_song": { + "artist": "Jo Dee Messina", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10eab142-7cc0-e15c-bc8a-bee58dafa183", + "path": "z://MP4\\KaraokeOnVEVO\\Jo Dee Messina - Stand Beside Me.mp4", + "title": "Stand Beside Me" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Sara Evans", + "playlist_title": "No Place That Far", + "found_song": { + "artist": "Sara Evans", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e44e5ba-5484-ce74-3efa-b5836d40d7fa", + "path": "z://MP4\\KaraokeOnVEVO\\Sara Evans - No Place That Far.mp4", + "title": "No Place That Far" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Dixie Chicks", + "playlist_title": "Wide Open Spaces", + "found_song": { + "artist": "Dixie Chicks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e3cfbe2-6a5d-7628-9584-62688dd7b270", + "path": "z://MP4\\KaraokeOnVEVO\\Dixie Chicks - Wide Open Spaces.mp4", + "title": "Wide Open Spaces" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Hold On To Me", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be5888c0-2ec2-1732-55da-749a678bdc14", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Hold On To Me.mp4", + "title": "Hold On To Me" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "U2", + "playlist_title": "Sweetest Thing", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "fe17b14c-fe42-5962-03a2-4944c51b7e95", + "path": "z://MP4\\Let's Sing Karaoke\\U2 - Sweetest Thing (Karaoke & Lyrics).mp4", + "title": "Sweetest Thing" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Aerosmith", + "playlist_title": "I Don t Want To Miss A Thing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "47a352e5-8c45-b131-b8e6-8fffd7eab4a8", + "path": "z://MP4\\Sing King Karaoke\\Aerosmith - I Don t Want To Miss A Thing (Karaoke Version).mp4", + "title": "I Don t Want To Miss A Thing" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Diamond Rio", + "playlist_title": "Unbelievable", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36e30ff1-b1ad-f88b-c159-542046d86ada", + "path": "z://CDG\\Various\\Diamond Rio - Unbelievable.mp3", + "title": "Unbelievable" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Cher", + "playlist_title": "Believe", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "8ddf02e2-c623-0327-7f43-f1067b01590b", + "path": "z://MP4\\Sing King Karaoke\\Cher - Believe (Karaoke Version).mp4", + "title": "Believe" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Everclear", + "playlist_title": "Father Of Mine", + "found_song": { + "artist": "Everclear", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "326032b7-57f4-7a29-b440-7f04d52363bd", + "path": "z://MP4\\KaraokeOnVEVO\\Everclear - Father Of Mine.mp4", + "title": "Father Of Mine" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Everlast", + "playlist_title": "What It s Like", + "found_song": { + "artist": "Everlast", + "disabled": false, + "favorite": false, + "guid": "48c7dcb7-a8be-2aa1-e56a-a1307769bee1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What It s Like - Everlast.mp4", + "title": "What It s Like" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Fastball", + "playlist_title": "Fire Escape", + "found_song": { + "artist": "Fastball", + "disabled": false, + "favorite": false, + "guid": "8b2d0b2f-c2df-861f-e365-378e66e492d8", + "path": "z://MP4\\KaraokeOnVEVO\\Fastball - Fire Escape (Karaoke).mp4", + "title": "Fire Escape" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Tim McGraw", + "playlist_title": "Where The Green Grass Grows", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73500da-e5a8-ba29-bf25-ad01f663e2ce", + "path": "z://MP4\\KaraokeOnVEVO\\McGraw, Tim - Where The Green Grass Grows.mp4", + "title": "Where The Green Grass Grows" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Five", + "playlist_title": "It s The Things You Do", + "found_song": { + "artist": "Five", + "disabled": false, + "favorite": false, + "guid": "d08a7e1e-1202-533d-a5ea-b8a02a8a7341", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF134\\Five - It's The Things You Do - SF134 - 13.mp3", + "title": "It's The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Hole", + "playlist_title": "Celebrity Skin", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64acf3e6-765b-7105-5aee-91cc371006bc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Celebrity Skin.mp4", + "title": "Celebrity Skin" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Mark Wills", + "playlist_title": "Don t Laugh At Me", + "found_song": { + "artist": "Mark Wills", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc852146-ecd6-1433-9b36-93e5b49bd00e", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Wills - Don t Laugh At Me.mp4", + "title": "Don t Laugh At Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Brandy", + "playlist_title": "Have You Ever?", + "found_song": { + "artist": "Brandy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "594c475b-14cf-6581-8881-33967b0c1cee", + "path": "z://MP4\\KaraokeOnVEVO\\Brandy - Have You Ever.mp4", + "title": "Have You Ever?" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Shawn Mullins", + "playlist_title": "Lullaby", + "found_song": { + "artist": "Shawn Mullin", + "disabled": false, + "favorite": false, + "genre": "KARAOKE", + "guid": "85d0406b-4d32-3d4f-6876-abcc5f2cafb9", + "path": "z://CDG\\Various\\Shawn Mullin - Lullaby.mp3", + "title": "Lullaby" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Sheryl Crow", + "playlist_title": "My Favorite Mistake", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45fcf087-bdb6-2420-8145-d5bce3ca1442", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - My Favourite Mistake.mp4", + "title": "My Favourite Mistake" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Madonna", + "playlist_title": "The Power Of Good-Bye", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "243df586-3539-e85c-833a-ee350bee05bd", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF126\\Madonna - Power Of Goodbye - SF126 - 11.mp3", + "title": "Power Of Goodbye" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Barenaked Ladies", + "playlist_title": "It s All Been Done", + "found_song": { + "artist": "Barenaked Ladies", + "disabled": false, + "favorite": false, + "guid": "8b016b3d-74d9-6027-0526-1bca98ae3743", + "path": "z://CDG\\Various\\Barenaked Ladies - Its All Been Done.mp3", + "title": "Its All Been Done" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Divine", + "title": "Lately", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Faith Evans", + "title": "Love Like This", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Total Featuring Missy Elliott", + "title": "Trippin", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Jay-Z Featuring Amil (Of Major Coinz)", + "title": "Can I Get A...", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "112 Featuring Mase", + "title": "Love Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Dru Hill Featuring Redman", + "title": "How Deep Is Your Love", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Eve 6", + "title": "Inside Out", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Next", + "title": "Too Close", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Monifah", + "title": "Touch It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Jay-Z", + "title": "Hard Knock Life (Ghetto Anthem)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Dru Hill", + "title": "These Are The Times", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Clay Walker", + "title": "You re Beginning To Get To Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Collin Raye", + "title": "Someone You Used To Know", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ice Cube Featuring Mr. Short Khop", + "title": "Pushin Weight", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Brian McKnight Featuring Tone", + "title": "Hold Me", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Aaron Hall", + "title": "All The Places (I Will Kiss You)", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Mo Thugs Family Featuring Bone Thugs-N-Harmony", + "title": "Ghetto Cowboy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Blackhawk", + "title": "There You Have It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Martina McBride", + "title": "Wrong Again", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Aaron Tippin", + "title": "For You I Will", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Faith Hill", + "title": "Let Me Let Go", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Randy Travis", + "title": "Spirit Of A Boy, Wisdom Of A Man", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "OutKast", + "title": "Rosa Parks", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Tim McGraw", + "title": "For A Little While", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "TQ", + "title": "Westside", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Keith Sweat Featuring Snoop Dogg", + "title": "Come And Get With Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ty Herndon", + "title": "It Must Be Love", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "George Strait", + "title": "We Really Shouldn t Be Doing This", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "R. Kelly Featuring Keith Murray", + "title": "Home Alone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Voices Of Theory", + "title": "Wherever You Go", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Reba", + "title": "Wrong Night", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Wilkinsons", + "title": "Fly (The Angel Song)", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "R. Kelly", + "title": "When A Woman s Fed Up", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Cake", + "title": "Never There", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Brandy", + "title": "Angel In Disguise", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Shaggy Featuring Janet", + "title": "Luv Me, Luv Me", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Whitney Houston Feat. Faith Evans", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "matchbox 20", + "title": "Back 2 Good", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Case", + "title": "Faded Pictures", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Everything", + "title": "Hooch", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Xscape", + "title": "My Little Secret", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kirk Franklin Feat. Mary J. Blige, Bono, R. Kelly, Crystal Lewis", + "title": "Lean On Me", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Garth Brooks", + "title": "It s Your Song", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lee Ann Womack", + "title": "A Little Past Little Rock", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Willie Max Featuring Raphael Saadiq", + "title": "Can t Get Enough", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Alabama", + "title": "How Do You Fall In Love", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Timbaland Featuring Missy \"Misdemeanor\" Elliott", + "title": "Here We Come", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Travis Tritt", + "title": "If I Lost You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 5, + "missing_count": 48, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1997 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Martina McBride", + "playlist_title": "A Broken Wing", + "found_song": { + "artist": "Martina McBride", + "disabled": false, + "favorite": false, + "guid": "2da3ac67-df89-7d00-5890-f83404e28899", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Broken Wing - Martina McBride.mp4", + "title": "A Broken Wing" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Alan Jackson", + "playlist_title": "Between The Devil And Me", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b2dc9d5-4af9-999f-75bd-d956b0dabca1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Between The Devil And Me.mp4", + "title": "Between The Devil And Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Tim McGraw", + "playlist_title": "Just To See You Smile", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "a7e7074a-8c61-fb5e-75a3-f1b1665f0d55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just To See You Smile - Tim McGraw.mp4", + "title": "Just To See You Smile" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Diamond Rio", + "playlist_title": "Imagine That", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e79eca0a-dd37-c078-ec8b-a7b6eee7b5b6", + "path": "z://MP4\\KaraokeOnVEVO\\Diamond Rio - Imagine That.mp4", + "title": "Imagine That" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Ann Womack", + "playlist_title": "You've Got To Talk To Me", + "found_song": { + "artist": "Lee Ann Womack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ffb7642-a640-b09c-dfb0-91ec891cd76e", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Ann Womack - Youve Got To Talk To Me.mp4", + "title": "You've Got To Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Alabama", + "playlist_title": "Of Course I'm Alright", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ba66ed64-58d9-4329-58b1-b494c2b140db", + "path": "z://CDG\\Various\\Alabama - Of Course I'm Alright.mp3", + "title": "Of Course I'm Alright" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Kenny Chesney", + "playlist_title": "A Chance", + "found_song": { + "artist": "Kenny Chesney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11d4f381-243a-70f0-013e-d0a2c87baba6", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Chesney - A Chance.mp4", + "title": "A Chance" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Garth Brooks", + "title": "Longneck Bottle", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Michael Peterson", + "title": "From Here To Eternity", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Trace Adkins", + "title": "The Rest Of Mine", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Pam Tillis", + "title": "Land Of The Living", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "John Michael Montgomery", + "title": "Angel In My Eyes", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Brooks & Dunn", + "title": "He's Got You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "LeAnn Rimes", + "title": "On The Side Of Angels", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Lonestar", + "title": "You Walked In", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Patty Loveless", + "title": "You Don't Seem To Miss Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Ty Herndon", + "title": "I Have To Surrender", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Lila McCann", + "title": "I Wanna Fall In Love", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "George Strait", + "title": "Today My World Slipped Away", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Anita Cochran (Duet With Steve Wariner)", + "title": "What If I Said", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Clint Black", + "title": "Something That We Do", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 0, + "missing_count": 14, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1997 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "How Do I Live", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "12d23c44-3998-1567-f7b9-2ebd95261028", + "path": "z://MP4\\Sing King Karaoke\\LeAnn Rimes - How Do I Live (Karaoke Version).mp4", + "title": "How Do I Live" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Usher", + "playlist_title": "You Make Me Wanna...", + "found_song": { + "artist": "Usher", + "disabled": false, + "favorite": false, + "guid": "30ef8c11-d226-eeb8-7b7c-528b068d372e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Wanna - Usher.mp4", + "title": "You Make Me Wanna" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Robyn", + "playlist_title": "Show Me Love", + "found_song": { + "artist": "Robyn", + "disabled": false, + "favorite": false, + "guid": "f80b7421-8dfd-9175-0585-5def9010f6fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show Me Love - Robyn.mp4", + "title": "Show Me Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Savage Garden", + "playlist_title": "Truly Madly Deeply", + "found_song": { + "artist": "Savage Garden", + "disabled": false, + "favorite": false, + "guid": "27cc5736-483c-57a4-adfe-b86fe488dd6a", + "path": "z://MP4\\Sing King Karaoke\\Savage Garden - Truly Madly Deeply (Karaoke Version).mp4", + "title": "Truly Madly Deeply" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Chumbawamba", + "playlist_title": "Tubthumping", + "found_song": { + "artist": "Chumbawamba", + "disabled": false, + "favorite": false, + "guid": "1629101c-927d-4f89-bfcd-61bd5843744a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tubthumping - Chumbawamba.mp4", + "title": "Tubthumping" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Boyz II Men", + "playlist_title": "A Song For Mama", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "697090d4-7846-6aff-0b46-ab4bb2dffc43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Song For Mama - Boyz II Men.mp4", + "title": "A Song For Mama" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Hanson", + "playlist_title": "I Will Come To You", + "found_song": { + "artist": "Hanson", + "disabled": false, + "favorite": false, + "guid": "2dc9df59-d5ab-ef94-61cb-cb403a974b74", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF116\\Hanson - I Will Come To You - SF116 - 09.mp3", + "title": "I Will Come To You" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paula Cole", + "playlist_title": "I Don't Want To Wait", + "found_song": { + "artist": "Paula Cole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a487d985-c18a-0676-b831-be10c6f17c3a", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Cole - I Dont Want To Wait.mp4", + "title": "I Don't Want To Wait" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Spice Girls", + "playlist_title": "Spice Up Your Life", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "36d77336-8e65-027a-9cba-0d3b05fc8955", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spice Up Your Life - Spice Girls.mp4", + "title": "Spice Up Your Life" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Boyz II Men", + "playlist_title": "4 Seasons Of Loneliness", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71c322c6-23b6-6ea3-78d0-bdf5a5ae5893", + "path": "z://MP4\\KaraokeOnVEVO\\Boyz II Men - 4 Seasons Of Loneliness.mp4", + "title": "4 Seasons Of Loneliness" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Third Eye Blind", + "playlist_title": "Semi-Charmed Life", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "0144ba36-690c-9ef3-e041-1b22258d6ead", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - Semi-Charmed Life (Karaoke).mp4", + "title": "Semi-Charmed Life" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Backstreet Boys", + "playlist_title": "Quit Playing Games (With My Heart)", + "found_song": { + "artist": "Backstreet Boys", + "disabled": false, + "favorite": false, + "guid": "ba3a1065-3a20-d608-eb91-077f12abafe0", + "path": "z://CDG\\Sunfly Collection\\Sunfly 90s\\SF90-05\\SFD9015-03 - Backstreet Boys - Quit Playing Games With My Heart.mp3", + "title": "Quit Playing Games With My Heart" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Third Eye Blind", + "playlist_title": "How's It Going To Be", + "found_song": { + "artist": "Third Eye Blind", + "disabled": false, + "favorite": false, + "guid": "d4ac8b68-c270-54da-338c-5ac7221b69a5", + "path": "z://MP4\\KaraokeOnVEVO\\Third Eye Blind - How's It Going To Be (Karaoke).mp4", + "title": "How's It Going To Be" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Aqua", + "playlist_title": "Lollipop (Candyman)", + "found_song": { + "artist": "Aqua", + "disabled": false, + "favorite": false, + "guid": "b2e351ac-f412-7c71-31e0-897089184752", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lollipop (Candyman) - Aqua.mp4", + "title": "Lollipop (Candyman)" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Fiona Apple", + "playlist_title": "Criminal", + "found_song": { + "artist": "Fiona Apple", + "disabled": false, + "favorite": false, + "guid": "3f84897f-6a25-f7fc-2ecb-f4fe97e98382", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Criminal - Fiona Apple.mp4", + "title": "Criminal" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Sister Hazel", + "playlist_title": "All For You", + "found_song": { + "artist": "Sister Hazel", + "disabled": false, + "favorite": false, + "guid": "dd6dc0d4-af93-0ff4-a0e5-fac514a99149", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All For You - Sister Hazel.mp4", + "title": "All For You" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Destiny's Child", + "playlist_title": "No, No, No", + "found_song": { + "artist": "Destiny's Child & Wyclef Jean", + "disabled": false, + "favorite": false, + "guid": "4b2c3cb2-4bb4-d1dc-1cdf-335c96f639b3", + "path": "z://CDG\\Various\\Destiny's Child & Wyclef Jean - No, No, No.mp3", + "title": "No, No, No" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "Building A Mystery", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "df47fb01-ab02-be3d-1b84-d919304dcdce", + "path": "z://MP4\\KtvEntertainment\\Sarah McLachlan - Building A Mystery (Karaoke without Vocal).mp4", + "title": "Building A Mystery" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Mariah Carey", + "playlist_title": "Honey", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "0fbb398a-4556-2024-e433-798be7767306", + "path": "z://CDG\\Various\\Mariah Carey - Honey.mp3", + "title": "Honey" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "98 Degrees", + "playlist_title": "Invisible Man", + "found_song": { + "artist": "98 Degrees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "380e23f1-ee75-f60d-4f1c-6299b0c0fdf4", + "path": "z://MP4\\KaraokeOnVEVO\\98 Degrees - Invisible Man.mp4", + "title": "Invisible Man" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Spice Girls", + "playlist_title": "2 Become 1", + "found_song": { + "artist": "Spice Girls", + "disabled": false, + "favorite": false, + "guid": "7ce8bb9b-0ff9-2fda-b76d-2120c39b1868", + "path": "z://MP4\\Sing King Karaoke\\Spice Girls - 2 Become 1 (Karaoke Version).mp4", + "title": "2 Become 1" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Everything", + "found_song": { + "artist": "Mary J. Blige", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36bfd2b8-fd25-3be7-a5ec-e77b2e156f0e", + "path": "z://MP4\\KaraokeOnVEVO\\Mary J. Blige - Everything.mp4", + "title": "Everything" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Shania Twain", + "playlist_title": "Don't Be Stupid (You Know I Love You)", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "d4dddef1-7d8c-15d5-fed3-77e81e6ebe20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Be Stupid (You Know I Love You) - Shania Twain.mp4", + "title": "Don t Be Stupid (You Know I Love You)" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billie Myers", + "playlist_title": "Kiss The Rain", + "found_song": { + "artist": "Billie Myers", + "disabled": false, + "favorite": false, + "guid": "305f2989-f5cd-d8c1-05dc-5566f3860ca1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF120\\Billie Myers - Kiss The Rain - SF120 - 08.mp3", + "title": "Kiss The Rain" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Shania Twain", + "playlist_title": "Love Gets Me Every Time", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "428a0a18-1793-8be1-9996-8e1e2b5ce001", + "path": "z://CDG\\Various\\Shania Twain - Love Gets Me Every Time.mp3", + "title": "Love Gets Me Every Time" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "LeAnn Rimes", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "LeAnn Rimes", + "disabled": false, + "favorite": false, + "guid": "d3c68631-b543-14aa-10ce-320bec9d542f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Light Up My Life - LeAnn Rimes.mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Reba McEntire", + "playlist_title": "What If", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "70b78014-e839-779e-9e43-d0df767cb8bd", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What If.mp4", + "title": "What If" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "En Vogue", + "playlist_title": "Too Gone, Too Long", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ae06bb5-595b-2eb2-deb9-3c7f4b3ec6f2", + "path": "z://CDG\\Various\\En Vogue - Too Gone, Too Long.mp3", + "title": "Too Gone, Too Long" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Prodigy", + "playlist_title": "Smack My Bitch Up", + "found_song": { + "artist": "Prodigy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "49899d7d-4600-6229-8e09-5fcf56064a87", + "path": "z://CDG\\SBI\\SBI-01\\SB07120 - Prodigy - Smack My Bitch Up.mp3", + "title": "Smack My Bitch Up" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Deana Carter", + "playlist_title": "Did I Shave My Legs For This?", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c495cdfc-3e5c-6a4b-eeb8-2a17b5430480", + "path": "z://MP4\\VocalStarKaraoke\\Deana Carter - Did I Shave My Legs For This.mp4", + "title": "Did I Shave My Legs For This" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Love Of My Life", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "guid": "6d89c286-bb31-18a5-112a-83aceecbb377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Of My Life - Sammy Kershaw.mp4", + "title": "Love Of My Life" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Toby Keith With Sting", + "playlist_title": "I'm So Happy I Can't Stop Crying", + "found_song": { + "artist": "Toby Keith With Sting", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd58476-a6a3-7d74-eabf-1888dfb73256", + "path": "z://MP4\\KaraokeOnVEVO\\Toby Keith With Sting - Im So Happy I Cant Stop Crying.mp4", + "title": "I'm So Happy I Can't Stop Crying" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Janet", + "playlist_title": "Together Again", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "1ab0c72c-0d3b-843b-2497-e98484fab0e9", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Janet - Together Again (Karaoke & Lyrics) (2).mp4", + "title": "Together Again" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Mase", + "playlist_title": "Feel So Good", + "found_song": { + "artist": "Mel B", + "disabled": false, + "favorite": false, + "guid": "99c61fbc-f0ae-3283-37f9-c577f4262379", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF176\\Mel B - Feel So Good - SF176 - 08.mp3", + "title": "Feel So Good" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 64, + "playlist_artist": "Olive", + "playlist_title": "You're Not Alone", + "found_song": { + "artist": "Joe & Jake", + "disabled": false, + "favorite": false, + "genre": "karaoke", + "guid": "46229df1-b368-5dc0-55fd-e9740f4ca428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF363\\Joe & Jake - You're Not Alone - SF363 - 03.mp3", + "title": "You're Not Alone" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "David Bowie", + "playlist_title": "I'm Afraid Of Americans", + "found_song": { + "artist": "Bowie, David", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13670ac3-4535-f03d-26b6-64e133d67c57", + "path": "z://CDG\\SBI\\SBI-04\\SB15358 - David Bowie - I'm Afraid Of Americans.mp3", + "title": "I'm Afraid Of Americans" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 73, + "playlist_artist": "Playa", + "playlist_title": "Don't Stop The Music", + "found_song": { + "artist": "Rihanna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8be9d539-f39e-aa38-0c2d-51587b936171", + "path": "z://MP4\\KaraokeOnVEVO\\Rihanna - Don't Stop The Music.mp4", + "title": "Don't Stop The Music" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Daft Punk", + "playlist_title": "Around The World", + "found_song": { + "artist": "A T C", + "disabled": false, + "favorite": false, + "guid": "8c4245b2-a07f-50ae-df77-1827abb1c77d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF196\\A T C - Around The World - SF196 - 08.mp3", + "title": "Around The World" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "Ultra Nate", + "playlist_title": "Free", + "found_song": { + "artist": "Ultra Naté", + "disabled": false, + "favorite": false, + "guid": "bc380b81-faec-98df-773e-f2671ba370a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free - Ultra Naté.mp4", + "title": "Free" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Elton John", + "title": "Candle In The Wind 1997/Something About The Way You Look Tonight", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Puff Daddy & The Family (Feat. The Notorious B.I.G. & Mase)", + "title": "Been Around The World", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "LSG", + "title": "My Body", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Somethin' For The People Featuring Trina & Tamara", + "title": "My Love Is The Shhh!", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Aaliyah", + "title": "The One I Gave My Heart To", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Dru Hill", + "title": "We're Not Making Love No More", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Allure Featuring 112", + "title": "All Cried Out", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Next", + "title": "Butta Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Uncle Sam", + "title": "I Don't Ever Want To See You Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Missy \"Misdemeanor\" Elliott Featuring Da Brat", + "title": "Sock It 2 Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Jewel", + "title": "Foolish Games/You Were Meant For Me", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Lisa Loeb", + "title": "I Do", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Total", + "title": "What About Us", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Notorious B.I.G. Featuring Puff Daddy & Mase", + "title": "Mo Money Mo Problems", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "She Moves", + "title": "Breaking All The Rules", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nu Flavor", + "title": "Heaven", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Notorious B.I.G.", + "title": "Going Back To Cali", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "H-Town", + "title": "They Like It Slow", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Bone Thugs-N-Harmony", + "title": "If I Could Teach The World", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Puff Daddy & Faith Evans Featuring 112", + "title": "I'll Be Missing You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Los Umbrellos", + "title": "No Tengo Dinero", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Metallica", + "title": "The Memory Remains", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Shawn Colvin", + "title": "Sunny Came Home", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Milestone", + "title": "I Care 'Bout You", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gary Barlow", + "title": "So Help Me Girl", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Richard Marx & Donna Lewis", + "title": "At The Beginning", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Imani Coppola", + "title": "Legend Of A Cowgirl", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Master P Featuring Pimp C And The Shocker", + "title": "I Miss My Homies", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Alana Davis", + "title": "32 Flavors", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bee Gees", + "title": "Still Waters (Run Deep)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "WC From Westside Connection", + "title": "Just Clownin'", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Davina", + "title": "So Good", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mack 10", + "title": "Backyard Boogie", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Big Punisher", + "title": "I'm Not A Player", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Sting & The Police", + "title": "Roxanne `97 - Puff Daddy Remix", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Insane Clown Posse", + "title": "Santa's A Fat Bitch", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Kimberly Scott", + "title": "Tuck Me In", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brian McKnight Featuring Mase", + "title": "You Should Be Mine (Don't Waste Your Time)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "K-Ci & JoJo", + "title": "Last Night's Letter", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Diana King", + "title": "L-L-Lies", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Amber", + "title": "One More Night", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Martina McBride With Jim Brickman", + "title": "Valentine", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "LL Cool J Featuring Method Man, Redman, DMX, Canibus And Master P", + "title": "4, 3, 2, 1", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Clint Black", + "title": "Something That We Do", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Naughty By Nature", + "title": "Mourn You Til I Join You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "KAI", + "title": "Say You'll Stay", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "2Pac", + "title": "I Wonder If Heaven Got A Ghetto", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Lord Tariq & Peter Gunz", + "title": "Deja Vu [Uptown Baby]", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "BeBe Winans", + "title": "In Harm's Way", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Trace Adkins", + "title": "The Rest Of Mine", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "4.0", + "title": "Have A Little Mercy", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "K.P. & Envyi", + "title": "Swing My Way", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Changing Faces (Featuring Jay-Z)", + "title": "All Of My Days", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gang Starr", + "title": "You Know My Steez", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Queen Pen Featuring Teddy Riley", + "title": "Man Behind The Music", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "LL Cool J", + "title": "Phenomenon", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Le Click Featuring Kayo", + "title": "Don't Go", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Sublime", + "title": "Doin' Time", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Yvette Michele", + "title": "DJ Keep Playin' (Get Your Music On)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Billy Lawrence", + "title": "Up & Down", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Barenaked Ladies", + "title": "Brian Wilson", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 32, + "fuzzy_match_count": 7, + "missing_count": 61, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1996 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Kevin Sharp", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "Kevin Sharp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a565f7d1-cbe3-a14a-4cdc-fefe8e6f8954", + "path": "z://MP4\\KaraokeOnVEVO\\Kevin Sharp - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Gary Allan", + "playlist_title": "Her Man", + "found_song": { + "artist": "Gary Allan", + "disabled": false, + "favorite": false, + "guid": "3131e475-e422-d82f-4807-7e3d6bbfca61", + "path": "z://MP4\\KaraokeOnVEVO\\Gary Allan - Her Man (Karaoke).mp4", + "title": "Her Man" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Tracy Lawrence", + "playlist_title": "Is That A Tear", + "found_song": { + "artist": "Tracy Lawrence", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "541f880c-ac8b-c853-0820-fa9a9faa609a", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Lawrence - Is That A Tear.mp4", + "title": "Is That A Tear" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "It's A Little Too Late", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9ccb9b41-81e3-106f-7249-9984b7ff90ae", + "path": "z://CDG\\Various\\Mark Chesnutt - It's A Little Too Late.mp3", + "title": "It's A Little Too Late" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Vince Gill", + "playlist_title": "Pretty Little Adriana", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "1de9187e-28b2-908f-4c89-36c89b8ee5a2", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Pretty Little Adriana (Karaoke).mp4", + "title": "Pretty Little Adriana" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "David Kersh", + "playlist_title": "Goodnight Sweetheart", + "found_song": { + "artist": "David Kersh", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a7812d-fe47-6929-629e-7543b0e7619e", + "path": "z://MP4\\KaraokeOnVEVO\\David Kersh - Goodnight Sweetheart.mp4", + "title": "Goodnight Sweetheart" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Deana Carter", + "playlist_title": "Strawberry Wine", + "found_song": { + "artist": "Deana Carter", + "disabled": false, + "favorite": false, + "guid": "b52ed86c-e90e-ba60-67ba-a749a36526ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Strawberry Wine - Deana Carter.mp4", + "title": "Strawberry Wine" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Brooks & Dunn", + "playlist_title": "A Man This Lonely", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "7ee8f668-dcb0-5d07-2d77-c235e9d2bdc4", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks & Dunn - A Man This Lonely (Karaoke).mp4", + "title": "A Man This Lonely" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "LeAnn Rimes", + "title": "One Way Ticket (Because I Can)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Reba McEntire", + "title": "The Fear Of Being Alone", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Garth Brooks", + "title": "That Ol' Wind", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Tracy Byrd", + "title": "Big Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tim McGraw", + "title": "Maybe We Should Just Sleep On It", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Mary Chapin Carpenter", + "title": "Let Me Into Your Heart", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Trisha Yearwood", + "title": "Everybody Knows", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Faith Hill", + "title": "I Can't Do That Anymore", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Clint Black", + "title": "Half Way Up", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bryan White", + "title": "That's Another Song", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Rick Trevino", + "title": "Running Out Of Reasons To Run", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Daryle Singletary", + "title": "Amen Kind Of Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mindy McCready (Featuring Lonestar's Richie McDonald)", + "title": "Maybe He'll Notice Her Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Randy Travis", + "title": "Would I", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 1, + "missing_count": 14, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1996 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Toni Braxton", + "playlist_title": "Un-Break My Heart", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "b13cec29-c219-4437-ce8a-f767b3994ab0", + "path": "z://MP4\\Sing King Karaoke\\Toni Braxton - Un-Break My Heart (Karaoke Version).mp4", + "title": "Un-Break My Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Merril Bainbridge", + "playlist_title": "Mouth", + "found_song": { + "artist": "Merril Bainbridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e160e516-184c-0699-82b2-965052be65b6", + "path": "z://MP4\\KaraokeOnVEVO\\Merril Bainbridge - Mouth.mp4", + "title": "Mouth" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Celine Dion", + "playlist_title": "It's All Coming Back To Me Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "397029ef-df5d-a935-fe32-4ebdd887a356", + "path": "z://MP4\\Sing King Karaoke\\Celine Dion - It's All Coming Back To Me Now.mp4", + "title": "It's All Coming Back To Me Now" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Ginuwine", + "playlist_title": "Pony", + "found_song": { + "artist": "Ginuwine", + "disabled": false, + "favorite": false, + "guid": "1147893c-bc8e-798e-868b-ca57b06c1ee5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pony - Ginuwine.mp4", + "title": "Pony" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "No Mercy", + "playlist_title": "Where Do You Go", + "found_song": { + "artist": "No Mercy", + "disabled": false, + "favorite": false, + "guid": "3a8bd746-e6cd-c215-112f-521ba05036cd", + "path": "z://MP4\\Let's Sing Karaoke\\No Mercy - Where Do You Go (Karaoke & Lyrics).mp4", + "title": "Where Do You Go" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Sheryl Crow", + "playlist_title": "If It Makes You Happy", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "85378165-551d-659c-921f-b8514bdee5e5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - If It Makes You Happy.mp4", + "title": "If It Makes You Happy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Journey", + "playlist_title": "When You Love A Woman", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f083763-cf14-49fc-bd5e-8b8199f98bc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Journey - When You Love A Woman.mp4", + "title": "When You Love A Woman" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Donna Lewis", + "playlist_title": "I Love You Always Forever", + "found_song": { + "artist": "Donna Lewis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1df6787c-f598-4ba9-d89c-70f41bb42cc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Lewis - I Love You Always Forever.mp4", + "title": "I Love You Always Forever" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Dishwalla", + "playlist_title": "Counting Blue Cars", + "found_song": { + "artist": "Dishwalla", + "disabled": false, + "favorite": false, + "guid": "4317b5dd-4103-0a2e-b976-6fefadffc742", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Counting Blue Cars - Dishwalla.mp4", + "title": "Counting Blue Cars" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Gina G", + "playlist_title": "Ooh Aah... Just A Little Bit", + "found_song": { + "artist": "Gina G", + "disabled": false, + "favorite": false, + "guid": "912ef8d9-fc1c-d24f-452e-aa5ddd389760", + "path": "z://MP4\\Sing King Karaoke\\Gina G - Ooh Aah... Just A Little Bit (Karaoke Version).mp4", + "title": "Ooh Aah... Just A Little Bit" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "John Mellencamp", + "playlist_title": "Key West Intermezzo (I Saw You First)", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4807906f-7552-88ad-fd13-6d331eceb78a", + "path": "z://MP4\\KaraokeOnVEVO\\John Mellencamp - Key West Intermezzo (I Saw You First.mp4", + "title": "Key West Intermezzo (I Saw You First)" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Alanis Morissette", + "playlist_title": "You Learn/You Oughta Know", + "found_song": { + "artist": "Alanis Morissette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a538df5-f46f-d1b0-d0f8-b4331380a82f", + "path": "z://MP4\\Sing King Karaoke\\Alanis Morissette - You LearnYou Oughta Know.mp4", + "title": "You Learn/You Oughta Know" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bryan Adams", + "playlist_title": "Let's Make A Night To Remember", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "654b25c4-1c1c-2b06-4e74-82b8ec29dbc9", + "path": "z://CDG\\Various\\Bryan Adams - Let's Make A Night To Remember.mp3", + "title": "Let's Make A Night To Remember" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Give Me One Reason", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "eac4f7a3-b806-d448-d0c7-024b384eb490", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Give Me One Reason (Karaoke Version).mp4", + "title": "Give Me One Reason" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Alan Jackson", + "playlist_title": "Little Bitty", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "c79a2773-533a-c1b4-ddc2-c3f7fa84c0bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Little Bitty - Alan Jackson.mp4", + "title": "Little Bitty" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Duncan Sheik", + "playlist_title": "Barely Breathing", + "found_song": { + "artist": "Duncan Sheik", + "disabled": false, + "favorite": false, + "guid": "56ea11d4-ba6c-c4ef-3d76-8739f04bf24f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Barely Breathing - Duncan Sheik.mp4", + "title": "Barely Breathing" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Better Than Ezra", + "playlist_title": "Desperately Wanting", + "found_song": { + "artist": "Better Than Ezra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe915c16-71c1-6089-f77c-3ba4444f8862", + "path": "z://MP4\\KaraokeOnVEVO\\Better Than Ezra - Desperately Wanting.mp4", + "title": "Desperately Wanting" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Metallica", + "playlist_title": "Hero Of The Day", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "b723db9c-a417-3eb5-6834-1fdf9558ae8d", + "path": "z://CDG\\Various\\Metallica - Hero Of The Day.mp3", + "title": "Hero Of The Day" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Shania Twain", + "playlist_title": "God Bless The Child", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "20feffd6-307d-6775-1e67-2a415a9353a2", + "path": "z://CDG\\Various\\Shania Twain - God Bless The Child.mp3", + "title": "God Bless The Child" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Phil Collins", + "playlist_title": "Dance Into The Light", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b624256-73f5-e760-8d76-ca1dae51dd75", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Dance Into The Light.mp4", + "title": "Dance Into The Light" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Trace Adkins", + "playlist_title": "Every Light In The House", + "found_song": { + "artist": "Trace Adkins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "100051ad-5590-abce-29d2-7d3f05930d5e", + "path": "z://MP4\\KaraokeOnVEVO\\Trace Adkins - Every Light In The House.mp4", + "title": "Every Light In The House" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Friends", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c0f6c62a-ded3-af2e-b14b-b0002f6997f5", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Friends.mp4", + "title": "Friends" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Elton John", + "playlist_title": "You Can Make History (Young Again)", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf915e43-f651-a124-af45-24bdf24a632e", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - You Can Make History (Young Again.mp4", + "title": "You Can Make History (Young Again)" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Johnny Gill", + "playlist_title": "Let's Get The Mood Right", + "found_song": { + "artist": "Johnny Gill", + "disabled": false, + "favorite": false, + "guid": "b97f95df-e8f2-25ea-5734-e7185af4480e", + "path": "z://MP4\\Stingray Karaoke\\Let's Get The Mood Right in the style of Johnny Gill karaoke video.mp4", + "title": "Let's Get The Mood Right" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "R. Kelly", + "title": "I Believe I Can Fly (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "En Vogue", + "title": "Don't Let Go (Love) (From \"Set It Off\")", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "BLACKstreet (Featuring Dr. Dre)", + "title": "No Diggity", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Keith Sweat Featuring Athena Cage", + "title": "Nobody", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Whitney Houston", + "title": "I Believe In You And Me (From \"The Preacher's Wife\")", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "New Edition", + "title": "I'm Still In Love With You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Barbra Streisand & Bryan Adams", + "title": "I Finally Found Someone (From \"The Mirror Has Two Faces\")", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Los Del Rio", + "title": "Macarena (Bayside Boys Mix)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Az Yet", + "title": "Last Night (From \"The Nutty Professor\")", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Seal", + "title": "Fly Like An Eagle (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mint Condition", + "title": "What Kind Of Man Would I Be", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Lil' Kim Featuring Puff Daddy", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface Feat. LL Cool J, Howard Hewett, Jody Watley & Jef", + "title": "This Is For The Lover In You", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Montell Jordan", + "title": "Falling", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Keith Sweat", + "title": "Twisted", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Dru Hill", + "title": "Tell Me (From \"Eddie\")", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eric Clapton", + "title": "Change The World (From \"Phenomenon\")", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Amber", + "title": "This Is Your Night", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Nas", + "title": "Street Dreams", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Madonna", + "title": "You Must Love Me (From \"Evita\")", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "dc Talk", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Toni Braxton", + "title": "You're Makin' Me High/Let It Flow", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "MC Lyte", + "title": "Cold Rock A Party", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jewel", + "title": "Foolish Games/You Were Meant For Me", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "702", + "title": "Steelo", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Ghost Town DJ's", + "title": "My Boo", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "112", + "title": "Come See Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "OutKast", + "title": "ATLiens", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Nate Dogg Featuring Snoop Doggy Dogg", + "title": "Never Leave Me Alone", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "LL Cool J", + "title": "Loungin", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Cranberries", + "title": "When You're Gone/Free To Decide", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Westside Connection", + "title": "Bow Down", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Quad City DJ's", + "title": "C'mon N' Ride It (The Train)", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mack 10 & Tha Dogg Pound", + "title": "Nothin' But The Cavi Hit (From \"Rhyme & Reason\")", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Smashing Pumpkins", + "title": "Thirty-Three", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jocelyn Enriquez", + "title": "Do You Miss Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Donell Jones", + "title": "Knocks Me Off My Feet", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Donna Lewis", + "title": "Without Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Aaliyah", + "title": "If Your Girl Only Knew", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Brandy, Tamia, Gladys Knight & Chaka Khan", + "title": "Missing You (From \"Set It Off\")", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Rod Stewart", + "title": "If We Fall In Love Tonight", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Quad City DJ's", + "title": "Space Jam (From \"Space Jam\")", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Gloria Estefan", + "title": "I'm Not Giving You Up", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "K-Ci & JoJo", + "title": "How Could You (From \"Bulletproof\")", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Blackout Allstars", + "title": "I Like It", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Total", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Johnny Gill Featuring Roger Troutman", + "title": "It's Your Body", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Rockell", + "title": "I Fell In Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Los Del Rio", + "title": "Macarena Christmas", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Da Brat", + "title": "Sittin' On Top Of The World", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Braids", + "title": "Bohemian Rhapsody (From \"High School High\")", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Kenny G", + "title": "The Moment", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "R.E.M.", + "title": "Bittersweet Me", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Original", + "title": "I Luv U Baby", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Crush", + "title": "Jellyhead", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Richie Rich", + "title": "Let's Ride", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Isley Brothers Featuring Angela Winbush", + "title": "Floatin' On Your Love", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Le Click", + "title": "Tonight Is The Night", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Melissa Etheridge", + "title": "Nowhere To Go", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Goodfellaz", + "title": "Sugar Honey Ice Tea", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Luscious Jackson", + "title": "Naked Eye", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Wild Orchid", + "title": "At Night I Pray", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Susanna Hoffs", + "title": "All I Want", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Luther Vandross", + "title": "I Can Make It Better", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Wonders", + "title": "That Thing You Do! (From \"That Thing You Do!\")", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "New Edition", + "title": "Hit Me Off", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Robert Miles Featuring Maria Nayler", + "title": "One And One", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Warren G Featuring Adina Howard", + "title": "What's Love Got To Do With It (From \"Supercop\")", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Tony Rich Project", + "title": "Leavin'", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amanda Marshall", + "title": "Birmingham", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Redman Featuring K-Solo", + "title": "That's How It Is (It's Like That)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "dog's eye view", + "title": "Everything Falls Apart/Small Wonders", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "SWV", + "title": "Use Your Heart", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "LL Cool J", + "title": "Ain't Nobody (From \"Beavis And Butt-Head Do America\")", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Angelina", + "title": "I Don't Need Your Love", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lost Boyz", + "title": "Music Makes Me High", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 0, + "missing_count": 76, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1995 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Tim McGraw", + "playlist_title": "Can't Be Really Gone", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "guid": "c209f4b7-1664-74c1-0102-8e59cd1c1b3a", + "path": "z://MP4\\KaraokeOnVEVO\\Tim McGraw - Can't Be Really Gone (Karaoke).mp4", + "title": "Can't Be Really Gone" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Tall, Tall Trees", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "6ab964a1-0d02-ef42-e5cf-13e139baa428", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tall Tall Trees - Alan Jackson.mp4", + "title": "Tall Tall Trees" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "George Strait", + "playlist_title": "Check Yes Or No", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2fc3779e-a7a0-bb09-0023-b128a02d4eaf", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Check Yes Or No.mp4", + "title": "Check Yes Or No" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Cowboy Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6392670-92c1-dbac-5caf-65d6a23bd580", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Cowboy Love.mp4", + "title": "Cowboy Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Lee Roy Parnell", + "playlist_title": "When A Woman Loves A Man", + "found_song": { + "artist": "Lee Roy Parnell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c06013bf-436b-6e9f-9ad4-b8ecd289ed02", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Roy Parnell - When A Woman Loves A Man.mp4", + "title": "When A Woman Loves A Man" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "In Pictures", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "644ea82d-7aba-5c83-ff6b-8d76edc4b6f9", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - In Pictures (Karaoke).mp4", + "title": "In Pictures" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Nothing", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "c511b036-4654-c7b6-b3df-32be0eb9c383", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Nothing (Karaoke).mp4", + "title": "Nothing" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Collin Raye", + "playlist_title": "Not That Different", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7440bbb5-236a-6fbc-f077-ddc2524c4f6c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Collin Raye - Not That Different.mp4", + "title": "Not That Different" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Wade Hayes", + "playlist_title": "What I Meant To Say", + "found_song": { + "artist": "Wade Hayes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f72c0596-82a6-67b2-33e5-6d00da53ebb1", + "path": "z://MP4\\KaraokeOnVEVO\\Wade Hayes - What I Meant To Say.mp4", + "title": "What I Meant To Say" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Clay Walker", + "playlist_title": "Who Needs You Baby", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11fe398c-9d36-4000-319f-8af0b1621e95", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Who Needs You Baby.mp4", + "title": "Who Needs You Baby" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Aaron Tippin", + "title": "That's As Close As I'll Get To Loving You", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Bryan White", + "title": "Rebecca Lynn", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Clint Black", + "title": "Life Gets Away", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Jeff Carson", + "title": "The Car", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Pam Tillis", + "title": "Deep Down", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Tracy Byrd", + "title": "Love Lessons", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Terri Clark", + "title": "When Boy Meets Girl", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doug Stone", + "title": "Born In The Dark", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Reba McEntire", + "title": "Ring On Her Finger, Time On Her Hands", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Joe Diffie", + "title": "Bigger Than The Beatles", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Doug Supernaw", + "title": "Not Enough Hours In The Night", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Blackhawk", + "title": "Like There Ain't No Yesterday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "John Berry", + "title": "If I Had Any Pride Left At All", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 0, + "missing_count": 13, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1995 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 5, + "playlist_artist": "TLC", + "playlist_title": "Diggin' On You", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "9ba3ad2b-5c91-911b-70e0-a52859fef1ac", + "path": "z://CDG\\Various\\TLC - Diggin' On You.mp3", + "title": "Diggin' On You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Fantasy", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "863cb54f-defd-fb71-8123-bdeaf2ddd4c3", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Fantasy (Karaoke & Lyrics).mp4", + "title": "Fantasy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Deep Blue Something", + "playlist_title": "Breakfast At Tiffany's", + "found_song": { + "artist": "Deep Blue Something", + "disabled": false, + "favorite": false, + "guid": "6f00bfc8-0fff-2da6-3c9d-893cf11a76e6", + "path": "z://MP4\\Sing King Karaoke\\Deep Blue Something - Breakfast At Tiffany's (Karaoke Version).mp4", + "title": "Breakfast At Tiffany's" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Goo Goo Dolls", + "playlist_title": "Name", + "found_song": { + "artist": "Goo Goo Dolls", + "disabled": false, + "favorite": false, + "guid": "9309e091-e2de-0f8c-8706-87242a74b023", + "path": "z://MP4\\KaraokeOnVEVO\\Goo Goo Dolls - Name (Karaoke).mp4", + "title": "Name" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beatles", + "playlist_title": "Free As A Bird", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a79e30a7-e9fb-f23b-04dd-dca02ad67f46", + "path": "z://MP4\\KaraokeOnVEVO\\The Beatles - Free As A Bird (Karaoke).mp4", + "title": "Free As A Bird" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Madonna", + "playlist_title": "You'll See", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "c3583064-7769-bce4-b42a-437b435f9dc4", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Madonna - You'll See - SF041 - 13.mp3", + "title": "You'll See" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Everything But The Girl", + "playlist_title": "Missing", + "found_song": { + "artist": "Everything But The Girl", + "disabled": false, + "favorite": false, + "guid": "35a867ac-8ee3-b8aa-64f0-c37c44400008", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF041\\Everything But The Girl - Missing - SF041 - 09.mp3", + "title": "Missing" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Janet Jackson", + "playlist_title": "Runaway", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6feb492-bf75-7102-f5a7-f49df958b570", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Runaway.mp4", + "title": "Runaway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Joan Osborne", + "playlist_title": "One Of Us", + "found_song": { + "artist": "Joan Osborne", + "disabled": false, + "favorite": false, + "guid": "49f80660-2b05-1221-7e4e-0987ce381f81", + "path": "z://MP4\\Sing King Karaoke\\Joan Osborne - One Of Us (Karaoke Version).mp4", + "title": "One Of Us" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Ace Of Base", + "playlist_title": "Beautiful Life", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "044cb132-5730-773e-da90-405f45fd8903", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Beautiful Life - Ace Of Base.mp4", + "title": "Beautiful Life" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Take That", + "playlist_title": "Back For Good", + "found_song": { + "artist": "Take That", + "disabled": false, + "favorite": false, + "guid": "71f8e652-5027-da20-71f7-186f93fb0689", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Back For Good - Take That.mp4", + "title": "Back For Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "3T", + "playlist_title": "Anything", + "found_song": { + "artist": "3T", + "disabled": false, + "favorite": false, + "guid": "c2b097a8-1e6c-b03d-93f0-20969c2adf94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF049\\3t - Anything - SF049 - 02.mp3", + "title": "Anything" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Smashing Pumpkins", + "playlist_title": "Bullet With Butterfly Wings", + "found_song": { + "artist": "The Smashing Pumpkins", + "disabled": false, + "favorite": false, + "guid": "5cc6f681-ce9c-a035-4b69-4e4f1b0cfaee", + "path": "z://MP4\\KaraFun Karaoke\\Bullet with Butterfly Wings - The Smashing Pumpkins Karaoke Version KaraFun.mp4", + "title": "Bullet with Butterfly Wings" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Carnival", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "2e9a044d-9a41-0ab2-145a-641b9d6723a2", + "path": "z://MP4\\TheKARAOKEChannel\\Carnival in the Style of Natalie Merchant karaoke video with lyrics (no lead vocal).mp4", + "title": "Carnival" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Selena", + "playlist_title": "Dreaming Of You", + "found_song": { + "artist": "Selena", + "disabled": false, + "favorite": false, + "guid": "61b89b48-0f85-f916-254a-0c1af61e6683", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dreaming Of You - Selena.mp4", + "title": "Dreaming Of You" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Del Amitri", + "playlist_title": "Roll To Me", + "found_song": { + "artist": "Del Amitri", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "43e0c557-febd-c42e-02e3-f51b50496103", + "path": "z://MP4\\KaraokeOnVEVO\\Del Amitri - Roll To Me.mp4", + "title": "Roll To Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Coolio", + "playlist_title": "Too Hot", + "found_song": { + "artist": "Coolio", + "disabled": false, + "favorite": false, + "guid": "acc9f7ee-2c18-1fcb-67d5-4db2f94278ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Coolio - Too Hot - SF034 - 15.mp3", + "title": "Too Hot" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Blues Traveler", + "playlist_title": "Run-Around", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "guid": "6c954706-738f-f6ff-0685-b44d03377a93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run-around - Blues Traveler.mp4", + "title": "Run-around" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Lie For You (And That's The Truth)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "046e2639-6999-2b3e-6911-6b5ecf74a2ba", + "path": "z://MP4\\ZoomKaraokeOfficial\\Meat Loaf - Id Lie For You (And Thats The Truth).mp4", + "title": "I'd Lie For You (And That's The Truth)" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Elton John", + "playlist_title": "Blessed", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "007c8824-8fe9-4b1c-9ddb-1ec0ec430c02", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Blessed.mp4", + "title": "Blessed" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Blues Traveler", + "playlist_title": "Hook", + "found_song": { + "artist": "Blues Traveler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61ce564-03a5-c5e8-bb41-0040c328e352", + "path": "z://MP4\\KaraokeOnVEVO\\Blues Traveler - Hook.mp4", + "title": "Hook" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Collective Soul", + "playlist_title": "The World I Know", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "64832aca-7520-2495-ff9e-2f61276b34c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The World I Know - Collective Soul.mp4", + "title": "The World I Know" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Natalie Merchant", + "playlist_title": "Wonder", + "found_song": { + "artist": "Natalie Merchant", + "disabled": false, + "favorite": false, + "guid": "8266ef4f-e02c-7ea7-1f1a-5c410428bfdc", + "path": "z://CDG\\Sound Choice Karaoke\\SC2089\\SC2089-05 - Merchant, Natalie - Wonder.mp3", + "title": "Wonder" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "TLC", + "playlist_title": "Waterfalls", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cb73871-8df1-e8ae-f0a3-3b08dc26ff69", + "path": "z://MP4\\Sing King Karaoke\\TLC - Waterfalls.mp4", + "title": "Waterfalls" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Collective Soul", + "playlist_title": "December", + "found_song": { + "artist": "Collective Soul", + "disabled": false, + "favorite": false, + "guid": "52e81675-7392-f61f-abe9-fead7853a3d6", + "path": "z://MP4\\KaraFun Karaoke\\December - Collective Soul Karaoke Version KaraFun.mp4", + "title": "December" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "All-4-One", + "playlist_title": "I Can Love You Like That", + "found_song": { + "artist": "All-4-One", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d32e590-8cf2-9af5-d08f-254c3972dd49", + "path": "z://MP4\\KaraokeOnVEVO\\All-4-One - I Can Love You Like That.mp4", + "title": "I Can Love You Like That" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Tony Rich Project", + "playlist_title": "Nobody Knows", + "found_song": { + "artist": "The Tony Rich Project", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8ac69b78-f15a-3ede-66ed-ccad9cc046bc", + "path": "z://MP4\\KaraokeOnVEVO\\The Tony Rich Project - Nobody Knows.mp4", + "title": "Nobody Knows" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Michael Jackson", + "playlist_title": "You Are Not Alone", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "dc6447ff-39a6-5f29-93c9-10b1a01815b6", + "path": "z://MP4\\KaraFun Karaoke\\You Are Not Alone - Michael Jackson Karaoke Version KaraFun.mp4", + "title": "You Are Not Alone" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Bush", + "playlist_title": "Comedown", + "found_song": { + "artist": "Bush", + "disabled": false, + "favorite": false, + "guid": "cbe30b9a-279e-272a-c1f8-22c304538807", + "path": "z://MP4\\Let's Sing Karaoke\\Bush - Comedown (Karaoke & Lyrics).mp4", + "title": "Comedown" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Tim McGraw", + "playlist_title": "I Like It, I Love It", + "found_song": { + "artist": "Tim McGraw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdff30fc-19e9-6238-4541-c9ada3bf373c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tim McGraw - I Like It, I Love It.mp4", + "title": "I Like It, I Love It" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "No Doubt", + "playlist_title": "Just A Girl", + "found_song": { + "artist": "No Doubt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cf6eb26f-e3ab-0246-23fb-9cd8ad2cbff1", + "path": "z://MP4\\Sing King Karaoke\\No Doubt - Just A Girl.mp4", + "title": "Just A Girl" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "The Outhere Brothers", + "playlist_title": "Boom Boom Boom", + "found_song": { + "artist": "The Outhere Brothers", + "disabled": false, + "favorite": false, + "guid": "b4d5b49f-3eed-9c2e-5baa-3a735e848180", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF029\\The Outhere Brothers - Boom Boom Boom - SF029 - 07.mp3", + "title": "Boom Boom Boom" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Faith Hill", + "playlist_title": "It Matters To Me", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "guid": "6d871eb9-ac0a-d102-d599-101a30f61fcd", + "path": "z://MP4\\Let's Sing Karaoke\\Hill, Faith - It Matters To Me (Karaoke & Lyrics) (2).mp4", + "title": "It Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Edwin McCain", + "playlist_title": "Solitude", + "found_song": { + "artist": "Edwin McCain & Darius Ruckner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79d8166a-5ae3-a6fe-bfea-9ac880d2683b", + "path": "z://CDG\\Various\\Edwin McCain & Darius Ruckner - Solitude.mp3", + "title": "Solitude" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Prince", + "playlist_title": "Gold", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "4fc2f665-a7eb-d5e6-bd8f-8a186570de45", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF034\\Prince - Gold - SF034 - 01.mp3", + "title": "Gold" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 23, + "playlist_artist": "Hootie & The Blowfish", + "playlist_title": "Only Wanna Be With You", + "found_song": { + "artist": "Hootie And The Blowfish", + "disabled": false, + "favorite": false, + "guid": "c755e064-3d0c-6e01-c556-7ad2fb83abdb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Only Wanna Be With You - Hootie And The Blowfish.mp4", + "title": "Only Wanna Be With You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Def Leppard", + "playlist_title": "When Love & Hate Collide", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "cf8bedcb-2137-cdab-3bb9-18372f03a5a3", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - When Love And Hate Collide (Karaoke).mp4", + "title": "When Love And Hate Collide" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Sarah McLachlan", + "playlist_title": "I Will Remember You (Live)", + "found_song": { + "artist": "Sarah McLachlan", + "disabled": false, + "favorite": false, + "guid": "ad42eb37-891c-25e4-fa62-70345e0ebc4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Remember You - Sarah McLachlan.mp4", + "title": "I Will Remember You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 81, + "playlist_artist": "Shania Twain", + "playlist_title": "(If You're Not In It For Love) I'm Outta Here!/The Woman In Me", + "found_song": { + "artist": "Shania Twain", + "disabled": false, + "favorite": false, + "guid": "c5a755be-c446-3661-9941-fbc469e5cb6c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (If You re Not In It For Love) I m Outta Here! - Shania Twain.mp4", + "title": "(If You re Not In It For Love) I m Outta Here!" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Mariah Carey & Boyz II Men", + "title": "One Sweet Day", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Whitney Houston", + "title": "Exhale (Shoop Shoop) (From \"Waiting To Exhale\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "LL Cool J", + "title": "Hey Lover", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Coolio Featuring L.V.", + "title": "Gangsta's Paradise (From \"Dangerous Minds\")", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Monica", + "title": "Before You Walk Out Of My Life/Like This And Like That", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Pearl Jam", + "title": "I Got Id/Long Road", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "R. Kelly", + "title": "You Remind Me Of Something", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Groove Theory", + "title": "Tell Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sophie B. Hawkins", + "title": "As I Lay Me Down", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kris Kross", + "title": "Tonite's Tha Night", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Faith Evans", + "title": "Soon As I Get Home", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Seal", + "title": "Kiss From A Rose (From \"Batman Forever\")", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Hootie & The Blowfish", + "title": "Time", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Xscape", + "title": "Who Can I Run To", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "La Bouche", + "title": "Be My Lover", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Jodeci", + "title": "Love U 4 Life", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Planet Soul", + "title": "Set U Free", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Folk Implosion", + "title": "Natural One (From \"Kids\")", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Total", + "title": "No One Else", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brandy", + "title": "Sittin' Up In My Room (From \"Waiting To Exhale\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Eazy-E", + "title": "Just Tah Let U Know", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Big Mountain", + "title": "Get Together", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Goodie Mob.", + "title": "Cell Therapy", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jon B", + "title": "Pretty Girl", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "D'Angelo", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Blahzay Blahzay", + "title": "Danger", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Terry Ellis", + "title": "Where Ever You Are", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Boyz II Men", + "title": "I Remember", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Rembrandts", + "title": "I'll Be There For You/This House Is Not A Home", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "L.A.D.", + "title": "Ridin' Low", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Lisa Loeb & Nine Stories", + "title": "Do You Sleep?", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Brandy", + "title": "Brokenhearted", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Shai", + "title": "Come With Me", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Immature (Featuring Smooth)", + "title": "We Got It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Los Del Rio", + "title": "Macarena (Bayside Boys Mix)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Monifah", + "title": "I Miss You (Come Back Home) (From \"New York Undercover\")", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Max-A-Million", + "title": "Sexual Healing", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "L.V.", + "title": "Throw Your Hands Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Raekwon", + "title": "Incarcerated Scarfaces/Ice Cream", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Mighty Dub Katz", + "title": "Magic Carpet Ride", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Silk", + "title": "Hooked On You", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Pharcyde", + "title": "Runnin'", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Bone Thugs-N-Harmony", + "title": "East 1999", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Click", + "title": "Hurricane", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Better Than Ezra", + "title": "Rosealia", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Salt-N-Pepa", + "title": "Ain't Nuthin' But A She Thing", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Cypress Hill", + "title": "Throw Your Set In The Air", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Kool G Rap", + "title": "Fast Life", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Deborah Cox", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Real McCoy", + "title": "Automatic Lover (Call For Love)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Fugees", + "title": "Fu-Gee-La", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "L.B.C. Crew Feat. Tray D & South Sentrell", + "title": "Beware Of My Crew (From \"A Thin Line Between Love And Hate\")", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Artie The 1 Man Party", + "title": "A Mover La Colita", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Frost", + "title": "East Side Rendezvous", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Backstreet Boys", + "title": "We've Got It Goin' On", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Capleton", + "title": "Wings Of The Morning", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "P.M. Dawn", + "title": "Sometimes I Miss You So Much (Dedicated To The Christ Consciousness)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Bone Thugs-N-Harmony", + "title": "1st Of Tha Month", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Genius/GZA Featuring Inspektah Deck", + "title": "Cold World", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Quincy Jones Introducing Tamia", + "title": "You Put A Move On My Heart", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Method Man", + "title": "The Riddler (From \"Batman Forever\")", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 4, + "missing_count": 61, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1994 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Faith Hill", + "playlist_title": "Take Me As I Am", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6ae49e1-e23b-6e33-fa8c-995ce6ff883b", + "path": "z://CDG\\Various\\Faith Hill - Take Me As I Am.mp3", + "title": "Take Me As I Am" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Alan Jackson", + "playlist_title": "Gone Country", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "15b5049e-7abf-7b76-b4d5-d81a622f5223", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gone Country - Alan Jackson.mp4", + "title": "Gone Country" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Vince Gill", + "playlist_title": "When Love Finds You", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2875b408-db16-13b8-5d82-311b1a161461", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - When Love Finds You.mp4", + "title": "When Love Finds You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Brooks", + "playlist_title": "I ll Never Forgive My Heart", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "186b0bde-9db3-b7d6-26e1-d7f1e0a6afa3", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - I ll Never Forgive My Heart.mp4", + "title": "I ll Never Forgive My Heart" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Lari White", + "playlist_title": "Now I Know", + "found_song": { + "artist": "Lari White", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "42946017-83d9-97bf-2b3d-e9b3f361896c", + "path": "z://MP4\\KaraokeOnVEVO\\Lari White - Now I Know.mp4", + "title": "Now I Know" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Diamond Rio", + "playlist_title": "Night Is Fallin In My Heart", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed107d9f-298c-ad41-74a3-a2da094ca145", + "path": "z://CDG\\Various\\Diamond Rio - Night Is Fallin' In My Heart.mp3", + "title": "Night Is Fallin' In My Heart" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mark Collie", + "playlist_title": "Hard Lovin Woman", + "found_song": { + "artist": "Mark Collie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c55c6f8d-5d3f-54be-e7c3-a0b941c106e5", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Collie - Hard Lovin Woman.mp4", + "title": "Hard Lovin Woman" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Aaron Tippin", + "playlist_title": "I Got It Honest", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c16f9fe-fb3c-efeb-9038-c56e06a46fde", + "path": "z://CDG\\Various\\Aaron Tippin - I Got It Honest.mp3", + "title": "I Got It Honest" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "If You ve Got Love", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90a00931-ecb6-1a5c-8464-352fbcf22e05", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - If You ve Got Love.mp4", + "title": "If You ve Got Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tracy Byrd", + "playlist_title": "The First Step", + "found_song": { + "artist": "Tracy Byrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8e4fb70-63b1-0dee-727b-087933e9bef7", + "path": "z://MP4\\KaraokeOnVEVO\\Tracy Byrd - The First Step.mp4", + "title": "The First Step" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "David Ball", + "playlist_title": "When The Thought Of You Catches Up With Me", + "found_song": { + "artist": "David Ball", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "434bf91f-7c0c-4a75-cec1-4dcc16b6545d", + "path": "z://MP4\\KaraokeOnVEVO\\David Ball - When The Thought Of You Catches Up With Me.mp4", + "title": "When The Thought Of You Catches Up With Me" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Tim McGraw", + "title": "Not A Moment Too Soon", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Mark Chesnutt", + "title": "Goin Through The Big D", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Randy Travis", + "title": "This Is Me", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rick Trevino", + "title": "Doctor Time", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Pam Tillis", + "title": "Mi Vida Loca (My Crazy Life)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "John Berry", + "title": "You And Only You", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sawyer Brown", + "title": "This Time", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Doug Stone", + "title": "Little Houses", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Patty Loveless", + "title": "Here I Am", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clint Black", + "title": "Untanglin My Mind", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Collin Raye", + "title": "My Kind Of Girl", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "George Strait", + "title": "The Big One", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 0, + "missing_count": 12, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1994 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Boyz II Men", + "playlist_title": "On Bended Knee", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7ba0d35f-5238-84c4-4328-224e5a6849c3", + "path": "z://MP4\\Sing King Karaoke\\Boyz II Men - On Bended Knee.mp4", + "title": "On Bended Knee" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "TLC", + "playlist_title": "Creep", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "3dffe224-f27c-c83c-4d73-a7e91ba460ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Creep - TLC.mp4", + "title": "Creep" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bon Jovi", + "playlist_title": "Always", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "a286bebd-3044-a599-9d02-3dadfa146c49", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Always (Karaoke Version).mp4", + "title": "Always" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Boyz II Men", + "playlist_title": "I ll Make Love To You", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "4f9e88f5-b7d4-1bac-75dc-2f2beb5b14c0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Make Love To You - Boyz II Men.mp4", + "title": "I ll Make Love To You" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Melissa Etheridge", + "playlist_title": "I m The Only One", + "found_song": { + "artist": "Melissa Etheridge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d03b615-75d9-30f4-6315-695057c273fd", + "path": "z://MP4\\KaraokeOnVEVO\\Melissa Etheridge - I m The Only One.mp4", + "title": "I m The Only One" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Madonna", + "playlist_title": "Secret", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "89e709ea-4e51-1d14-6e0a-f878f5590714", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Madonna - Secret - SF010 - 04.mp3", + "title": "Secret" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Madonna", + "playlist_title": "Take A Bow", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "bf08a025-e454-99d1-30ee-b879d367f230", + "path": "z://CDG\\Various\\Madonna - Take A Bow.mp3", + "title": "Take A Bow" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Des ree", + "playlist_title": "You Gotta Be", + "found_song": { + "artist": "Des ree", + "disabled": false, + "favorite": false, + "guid": "d0b16be8-fa3a-ad29-f5af-a7542dfc0456", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Gotta Be - Des ree.mp4", + "title": "You Gotta Be" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Sheryl Crow", + "playlist_title": "All I Wanna Do", + "found_song": { + "artist": "Sheryl Crow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cadb5cfc-f6dc-2654-b00e-1b19b39a6565", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sheryl Crow - All I Wanna Do.mp4", + "title": "All I Wanna Do" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Barry White", + "playlist_title": "Practice What You Preach", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "c20cb197-f5bf-1215-80be-ba292a15bb42", + "path": "z://CDG\\Various\\Barry White - Practice What You Preach.mp3", + "title": "Practice What You Preach" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Corona", + "playlist_title": "The Rhythm Of The Night", + "found_song": { + "artist": "Corona", + "disabled": false, + "favorite": false, + "guid": "3c7d1650-a837-9e5f-469d-bd5c8bbc2893", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Rhythm Of The Night - Corona.mp4", + "title": "The Rhythm Of The Night" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tom Petty", + "playlist_title": "You Don t Know How It Feels", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "361101ae-273c-4141-e6d3-44a0aaf1874a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty - You Dont Know How It Feels.mp4", + "title": "You Don't Know How It Feels" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Hootie", + "playlist_title": "Hold My Hand", + "found_song": { + "artist": "Hootie & The Blowfish", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c09f384-448e-01f8-cbba-cd43bcae24e0", + "path": "z://MP4\\KaraokeOnVEVO\\Hootie & The Blowfish - Hold My Hand.mp4", + "title": "Hold My Hand" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Four Seasons", + "playlist_title": "December 1963 (Oh, What A Night)", + "found_song": { + "artist": "Four Seasons", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5e9a5618-f812-c245-e6c0-d8075f97b912", + "path": "z://CDG\\Various\\Four Seasons - December, 1963(Oh What A Night).mp3", + "title": "December, 1963(Oh What A Night)" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ace Of Base", + "playlist_title": "Living In Danger", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "b611f6a9-8191-95fe-c12d-3170d265dd58", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF010\\Ace Of Base - Living In Danger - SF010 - 12.mp3", + "title": "Living In Danger" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Immature", + "playlist_title": "Never Lie", + "found_song": { + "artist": "Immature", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f83d5cd8-77db-cea3-5d6f-c172273b4f55", + "path": "z://MP4\\KaraokeOnVEVO\\Immature - Never Lie.mp4", + "title": "Never Lie" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "R.E.M.", + "playlist_title": "What s The Frequency, Kenneth?", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c9b800e-bf5d-23d2-e20f-559df85632bd", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - What s The Frequency, Kenneth.mp4", + "title": "What s The Frequency, Kenneth?" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Mary J. Blige", + "playlist_title": "Be Happy", + "found_song": { + "artist": "Mary J Blige", + "disabled": false, + "favorite": false, + "guid": "cc49c3d0-68bb-7f99-3248-3b22962f928c", + "path": "z://MP4\\singsongsmusic\\Be Happy - Karaoke HD (In the style of Mary J Blige).mp4", + "title": "Be Happy" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Babyface", + "playlist_title": "When Can I See You", + "found_song": { + "artist": "Babyface", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "542be9a0-7da1-7821-2641-0b09c8d1eaea", + "path": "z://MP4\\KaraokeOnVEVO\\Babyface - When Can I See You.mp4", + "title": "When Can I See You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Changing Faces", + "playlist_title": "Foolin Around", + "found_song": { + "artist": "Changing Faces", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24791935-ee2b-8e10-656f-1d8970b78844", + "path": "z://MP4\\KaraokeOnVEVO\\Changing Faces - Foolin Around.mp4", + "title": "Foolin Around" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Hole", + "playlist_title": "Doll Parts", + "found_song": { + "artist": "Hole", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edac1075-5d4d-b008-386a-7ff6eb62de09", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hole - Doll Parts.mp4", + "title": "Doll Parts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "2 Unlimited", + "playlist_title": "Get Ready For This", + "found_song": { + "artist": "2 Unlimited", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90151a8b-b848-59d3-7ead-e3f248206380", + "path": "z://MP4\\ZoomKaraokeOfficial\\2 Unlimited - Get Ready For This.mp4", + "title": "Get Ready For This" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Aaliyah", + "playlist_title": "At Your Best (You Are Love)", + "found_song": { + "artist": "Aaliyah", + "disabled": false, + "favorite": false, + "guid": "b97270a1-224b-af25-09c4-5f8f2a8554e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At Your Best (You Are Love) - Aaliyah.mp4", + "title": "At Your Best (You Are Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Joe Diffie", + "playlist_title": "Pickup Man", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "efc4a085-c258-93df-44d4-925c2205622a", + "path": "z://MP4\\KaraFun Karaoke\\Pickup Man - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "Pickup Man" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eagles", + "playlist_title": "Get Over It", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "2749534c-664d-ac49-2c2f-b1bd0ae7e6ce", + "path": "z://CDG\\Various\\Eagles - Get Over It.mp3", + "title": "Get Over It" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Mazzy Star", + "playlist_title": "Fade Into You", + "found_song": { + "artist": "Mazzy Star", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "53f05a19-df00-438c-315d-6e95a415277d", + "path": "z://MP4\\Sing King Karaoke\\Mazzy Star - Fade Into You.mp4", + "title": "Fade Into You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Reba McEntire", + "playlist_title": "Till You Love Me", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "626f7027-cd8b-8743-d01b-7512891c471a", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Till You Love Me.mp4", + "title": "Till You Love Me" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "The Flaming Lips", + "playlist_title": "She Don t Use Jelly", + "found_song": { + "artist": "The Flaming Lips", + "disabled": false, + "favorite": false, + "guid": "52e8f269-8faa-c55e-9574-d0ce4bc1eaf5", + "path": "z://MP4\\TheKARAOKEChannel\\She Don t Use Jelly in the style of The Flaming Lips karaoke video.mp4", + "title": "She Don t Use Jelly" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "Pretenders", + "playlist_title": "I ll Stand By You", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6dc03a9-81b2-898d-1870-e6c7ef3d059f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Pretenders - Ill Stand By You.mp4", + "title": "I'll Stand By You" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Candlebox", + "playlist_title": "Far Behind", + "found_song": { + "artist": "Candlebox", + "disabled": false, + "favorite": false, + "guid": "e9448ae9-0a65-7e78-f4f3-b80807e67a78", + "path": "z://MP4\\Let's Sing Karaoke\\Candlebox - Far Behind (Karaoke & Lyrics).mp4", + "title": "Far Behind" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Luther Vandross", + "playlist_title": "Always And Forever", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33ca9964-abef-ce43-8d53-843140f5dd48", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Always And Forever.mp4", + "title": "Always And Forever" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Luther Vandross", + "playlist_title": "Endless Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "b02c69d8-cd5e-92fe-53b0-65987dad0079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Endless Love - Luther Vandross.mp4", + "title": "Endless Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 91, + "playlist_artist": "Jeff Foxworthy", + "playlist_title": "Redneck Stomp", + "found_song": { + "artist": "Jeff Foxworthy, Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "2f328f43-114b-5b7a-9f3f-3ef03cf435de", + "path": "z://MP4\\KaraokeOnVEVO\\Jeff Foxworthy, Alan Jackson - Redneck Games (Karaoke).mp4", + "title": "Redneck Games" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Ini Kamoze", + "title": "Here Comes The Hotstepper (From \"Ready To Wear\")", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Real McCoy", + "title": "Another Night", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Brandy", + "title": "I Wanna Be Down", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "BLACKstreet", + "title": "Before I Let You Go", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "69 Boyz", + "title": "Tootsee Roll", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Janet Jackson", + "title": "You Want This/70 s Love Groove", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "4PM", + "title": "Sukiyaki", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "20 Fingers Featuring Gillette", + "title": "Short Dick Man", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Gloria Estefan", + "title": "Turn The Beat Around (From \"The Specialist\")", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Crystal Waters", + "title": "100% Pure Love", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Vanessa Williams", + "title": "The Sweetest Days", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jade", + "title": "Every Day Of The Week", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Immature", + "title": "Constantly", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Deadeye Dick", + "title": "New Age Girl (From \"Dumb And Dumber\")", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Toni Braxton", + "title": "I Belong To You/How Many Ways", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Craig Mack", + "title": "Flava In Ya Ear", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "John Mellencamp With Me Shell Ndegeocello", + "title": "Wild Night", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Zhane", + "title": "Shame (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Bone Thugs-N-Harmony", + "title": "Thuggish Ruggish Bone", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Scarface", + "title": "I Never Seen A Man Cry (aka I Seen A Man Die)", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Brownstone", + "title": "If You Love Me", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Rappin 4-Tay", + "title": "Playaz Club", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Sting", + "title": "When We Dance", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "N II U", + "title": "I Miss You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Method Man", + "title": "Bring The Pain", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Jon Secada", + "title": "Mental Picture", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Aerosmith", + "title": "Blind Man", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.M.U. (Black Men United)", + "title": "U Will Know (From \"Jason s Lyric\")", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Warren G", + "title": "Do You See", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Da Brat", + "title": "Fa All Y all", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Keith Murray", + "title": "The Most Beautifullest Thing In This World", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "John Mellencamp", + "title": "Dance Naked", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Elton John", + "title": "Circle Of Life (From \"The Lion King\")", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Amy Grant With Vince Gill", + "title": "House Of Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Lucas", + "title": "Lucas With The Lid Off", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Toad The Wet Sprocket", + "title": "Something s Always Wrong", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Heavy D", + "title": "Black Coffee", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Guns N Roses", + "title": "Sympathy For The Devil (\"Interview With The Vampire\")", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Notorious B.I.G.", + "title": "Juicy/Unbelievable", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Andru Donalds", + "title": "Mishale", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "69 Boyz", + "title": "Kitty Kitty", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Urge Overkill", + "title": "Girl, You ll Be A Woman Soon (From \"Pulp Fiction\")", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Harry Connick, Jr.", + "title": "(I Could Only) Whisper Your Name", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Craig Mack", + "title": "Get Down", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Keith Sweat (Featuring Kut Klose)", + "title": "Get Up On It", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Martin Page", + "title": "In The House Of Stone And Light", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Silk", + "title": "I Can Go Deep (From \"A Low Down Dirty Shame\")", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Lords Of The Underground", + "title": "Tic Toc", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Rolling Stones", + "title": "Out Of Tears", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Sheryl Crow", + "title": "Strong Enough", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Steve Perry", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Huey Lewis", + "title": "But It s Alright", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Tevin Campbell", + "title": "Don t Say Goodbye Girl", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Shaquille O Neal", + "title": "Biological Didn t Bother", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Anita Baker", + "title": "I Apologize", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Joshua Kadison", + "title": "Picture Postcards From L.A.", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Nine", + "title": "Whutcha Want?", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Lil Suzy", + "title": "Promise Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Freedy Johnston", + "title": "Bad Reputation", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Dru Down", + "title": "Pimp Of The Year", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Murmurs", + "title": "You Suck", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Liz Phair", + "title": "Supernova", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Fu-Schnickens", + "title": "Breakdown", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Weezer", + "title": "Undone - The Sweater Song", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Tracy Lawrence", + "title": "I See It Now", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Anita Baker", + "title": "Body", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Doctor Dre", + "title": "Back Up Off Me!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 5, + "missing_count": 67, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1993 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Doug Supernaw", + "playlist_title": "I Don't Call Him Daddy", + "found_song": { + "artist": "Doug Supernaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af7017bd-c406-412d-ed4d-6dc4e470890e", + "path": "z://CDG\\Various\\Doug Supernaw - I Don't Call Him Daddy.mp3", + "title": "I Don't Call Him Daddy" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Soon", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "2b5327eb-c653-8408-7c95-5b822b42ea6b", + "path": "z://CDG\\Sound Choice Karaoke\\SC2088\\SC2088-05 - Tucker, Tanya - Soon.mp3", + "title": "Soon" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Faith Hill", + "playlist_title": "Wild One", + "found_song": { + "artist": "Faith Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab51c515-3b8b-3bd9-b421-ceb8ddb81305", + "path": "z://CDG\\Various\\Faith Hill - Wild One.mp3", + "title": "Wild One" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Clay Walker", + "playlist_title": "Live Until I Die", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "guid": "97eefbe7-88e3-9067-45f3-8af4db777893", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Live Until I Die (Karaoke).mp4", + "title": "Live Until I Die" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Clint Black", + "playlist_title": "State Of Mind", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "guid": "59cfb2d3-86ee-1fe6-54b8-bc9959e553ee", + "path": "z://MP4\\Let's Sing Karaoke\\Black, Clint - State Of Mind (Karaoke & Lyrics).mp4", + "title": "State Of Mind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Sammy Kershaw", + "playlist_title": "Queen Of My Double Wide Trailer", + "found_song": { + "artist": "Sammy Kershaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6d76d39-c906-ed72-5c14-0e4624ca3aec", + "path": "z://MP4\\KaraokeOnVEVO\\Sammy Kershaw - Queen Of My Double Wide Trailer.mp4", + "title": "Queen Of My Double Wide Trailer" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "I Swear", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "guid": "bef6414b-b7d7-83c2-5880-b4cebbb16943", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Swear - John Michael Montgomery.mp4", + "title": "I Swear" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Toby Keith", + "playlist_title": "A Little Less Talk And A Lot More Action", + "found_song": { + "artist": "Toby Keith", + "disabled": false, + "favorite": false, + "guid": "9aeb8ad1-149d-f895-d810-04dbb1abb08c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Less Talk And A Lot More Action - Toby Keith.mp4", + "title": "A Little Less Talk And A Lot More Action" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Patty Loveless", + "playlist_title": "You Will", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6bd1c4c-2e06-7c6a-d804-a1af9f59a7f0", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - You Will.mp4", + "title": "You Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Aaron Tippin", + "playlist_title": "The Call Of The Wild", + "found_song": { + "artist": "Aaron Tippin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a888093c-e51a-875b-e672-6ac39b2d5af8", + "path": "z://MP4\\KaraokeOnVEVO\\Aaron Tippin - The Call Of The Wild.mp4", + "title": "The Call Of The Wild" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Garth Brooks", + "playlist_title": "American Honky-Tonk Bar Association", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8474602c-c98f-0269-63e0-8bb7b9d94fc5", + "path": "z://CDG\\Various\\Garth Brooks - American Honky Tonk Bar Association.mp3", + "title": "American Honky Tonk Bar Association" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Hal Ketchum", + "playlist_title": "Someplace Far Away (Careful What You're Dreaming)", + "found_song": { + "artist": "Hal Ketchum", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f9af088-b0eb-c39e-a8aa-bd0b77d829a7", + "path": "z://MP4\\KaraokeOnVEVO\\Hal Ketchum - Someplace Far Away (Careful What Youre Dreaming.mp4", + "title": "Someplace Far Away (Careful What You're Dreaming)" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Billy Dean", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Billy Dean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f09b8573-7c1b-15a8-4fb0-09344eaafa17", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Dean - We Just Disagree.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 11, + "playlist_artist": "Shenandoah", + "playlist_title": "I Want To Be Loved Like That", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a702f33-63a0-913a-400b-dabd2ecbec41", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - I Want To Be Loved Like That.mp4", + "title": "I Want To Be Loved Like That" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Sawyer Brown", + "title": "The Boys & Me", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Doug Stone", + "title": "I Never Knew Love", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Wynonna", + "title": "Is It Over Yet", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Billy Ray Cyrus", + "title": "Somebody New", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Boy Howdy", + "title": "She'd Give Anything", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Tracy Lawrence", + "title": "My Second Home", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "John Berry", + "title": "Kiss Me In The Car", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 1, + "missing_count": 7, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1993 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Mariah Carey", + "playlist_title": "Hero", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "35a35f1e-0236-0acf-7d19-ea42dab2a184", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hero - Mariah Carey.mp4", + "title": "Hero" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Ace Of Base", + "playlist_title": "All That She Wants", + "found_song": { + "artist": "Ace Of Base", + "disabled": false, + "favorite": false, + "guid": "4fa40070-bff8-fc15-3c72-6ab80ba29fa5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All That She Wants - Ace Of Base.mp4", + "title": "All That She Wants" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Meat Loaf", + "playlist_title": "I'd Do Anything For Love (But I Won't Do That)", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "guid": "c3416262-ed2d-2713-d64d-5e847085dd6f", + "path": "z://MP4\\Stingray Karaoke\\I'd Do Anything For Love (But I Won't Do That) in the Style of Meat Loaf karaoke video.mp4", + "title": "I'd Do Anything For Love (But I Won't Do That)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Shoop", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "0cb8dbb1-927b-81bd-1265-5d67fb39dff7", + "path": "z://MP4\\KtvEntertainment\\Salt' N' Pepa - Shoop Karaoke Lyrics.mp4", + "title": "Shoop" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Toni Braxton", + "playlist_title": "Breathe Again", + "found_song": { + "artist": "Toni Braxton", + "disabled": false, + "favorite": false, + "guid": "ecf15ec8-d421-9f09-715d-e6e3e89dc922", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Toni Braxton - Breathe Again - SF006 - 02.mp3", + "title": "Breathe Again" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Michael Bolton", + "playlist_title": "Said I Loved You...But I Lied", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9698de5a-022e-b3f2-25b3-9a92c3eef12e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Bolton - Said I Loved You But I Lied.mp4", + "title": "Said I Loved You But I Lied" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bryan Adams", + "playlist_title": "Please Forgive Me", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "96d46c2e-6ad0-eff2-9c87-47fdb734ff68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Forgive Me - Bryan Adams.mp4", + "title": "Please Forgive Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Tevin Campbell", + "playlist_title": "Can We Talk", + "found_song": { + "artist": "Tevin Campbell", + "disabled": false, + "favorite": false, + "guid": "fa3aba80-3f42-6616-456a-dbf5d988c622", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Can We Talk - Tevin Campbell.mp4", + "title": "Can We Talk" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Tag Team", + "playlist_title": "Whoomp! (There It Is)", + "found_song": { + "artist": "Tag Team", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8128085-68a8-b2ac-0f15-f40fa3e91eb2", + "path": "z://MP4\\Stingray Karaoke\\Tag Team - Whoomp! (There It Is).mp4", + "title": "Whoomp! (There It Is)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Cranberries", + "playlist_title": "Linger", + "found_song": { + "artist": "The Cranberries", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d4c447f8-fbd8-0d04-8857-e8d398f036ba", + "path": "z://MP4\\Sing King Karaoke\\The Cranberries - Linger (Karaoke Version).mp4", + "title": "Linger" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Domino", + "playlist_title": "Getto Jam", + "found_song": { + "artist": "Domino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a277a16a-b945-283a-83de-859c22af6c2e", + "path": "z://CDG\\SBI\\SBI-01\\SB02780 - Domino - Getto Jam.mp3", + "title": "Getto Jam" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Culture Beat", + "playlist_title": "Mr. Vain", + "found_song": { + "artist": "Culture Beat", + "disabled": false, + "favorite": false, + "guid": "bb474262-40a9-20f4-a438-5defac2758e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Vain - Culture Beat.mp4", + "title": "Mr. Vain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Haddaway", + "playlist_title": "What Is Love", + "found_song": { + "artist": "Haddaway", + "disabled": false, + "favorite": false, + "guid": "071f0c48-2e88-63ea-734f-5db828f709c5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What Is Love - Haddaway.mp4", + "title": "What Is Love" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "K7", + "playlist_title": "Come Baby Come", + "found_song": { + "artist": "K7", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "76aa2da4-62b4-a628-d9a3-b592bf48c179", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\K7 - Come Baby Come - SFMW 854 -02.mp3", + "title": "Come Baby Come" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Mariah Carey", + "playlist_title": "Dreamlover", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "92fd0f83-b571-c065-4a41-7f68858c2460", + "path": "z://MP4\\Let's Sing Karaoke\\Carey, Mariah - Dreamlover (Karaoke & Lyrics) (2).mp4", + "title": "Dreamlover" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Celine Dion", + "playlist_title": "The Power Of Love", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "1efc2e2c-b142-7e19-d5db-a4e36194510c", + "path": "z://MP4\\KtvEntertainment\\Celine Dion - The Power of Love (Karaoke without Vocal).mp4", + "title": "The Power of Love" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Billy Joel", + "playlist_title": "All About Soul", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e0de3e-ecd4-5c73-0f02-6040e3831f00", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - All About Soul.mp4", + "title": "All About Soul" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Gabrielle", + "playlist_title": "Dreams", + "found_song": { + "artist": "Gabrielle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b5a76a9b-9d66-7036-4326-aa6431314f6f", + "path": "z://MP4\\Sing King Karaoke\\Gabrielle - Dreams.mp4", + "title": "Dreams" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Joshua Kadison", + "playlist_title": "Jessie", + "found_song": { + "artist": "Joshua Kadison", + "disabled": false, + "favorite": false, + "guid": "690ac53e-7bde-775d-4f2d-80525edc880a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jessie - Joshua Kadison.mp4", + "title": "Jessie" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Queen Latifah", + "playlist_title": "U.N.I.T.Y.", + "found_song": { + "artist": "Queen Latifah", + "disabled": false, + "favorite": false, + "guid": "5d5125a0-9131-81bf-c241-b339a2e39fc5", + "path": "z://CDG\\Various\\Queen Latifah - U.N.I.T.Y..mp3", + "title": "U.N.I.T.Y." + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Aerosmith", + "playlist_title": "Cryin'", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "72032a97-a206-0127-c7be-9891bbad26c8", + "path": "z://MP4\\Karaoke Sing Sing\\Aerosmith - Cryin' (Karaoke Version).mp4", + "title": "Cryin'" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Phil Collins", + "playlist_title": "Both Sides Of The Story", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba6cd9e-3406-105c-bccb-f2192620ee94", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Both Sides Of The Story.mp4", + "title": "Both Sides Of The Story" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Billy Joel", + "playlist_title": "The River Of Dreams", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c982c83d-4029-bf35-1d15-fbc2d5de8b30", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - The River Of Dreams.mp4", + "title": "The River Of Dreams" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Inner Circle", + "playlist_title": "Sweat (A La La La La Long)", + "found_song": { + "artist": "Inner Circle", + "disabled": false, + "favorite": false, + "guid": "4b16ddc0-a2cf-c2e8-7c41-1196f1f2e657", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweat (A La La La La Long) - Inner Circle.mp4", + "title": "Sweat (A La La La La Long)" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Blind Melon", + "playlist_title": "No Rain", + "found_song": { + "artist": "Blind Melon", + "disabled": false, + "favorite": false, + "guid": "b24fd06e-622c-612f-8690-3feda0220c6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No Rain - Blind Melon.mp4", + "title": "No Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Aerosmith", + "playlist_title": "Amazing", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef20b54c-d18c-ba76-48be-ee0062e69259", + "path": "z://CDG\\Various\\Aerosmith - Amazing.mp3", + "title": "Amazing" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Mr. Big", + "playlist_title": "Wild World", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "3c351510-eae3-7f45-5102-ecc096a10844", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Mr. Big.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "UB40", + "playlist_title": "Higher Ground", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4d5027d-9a49-f087-2345-c95cff40ad82", + "path": "z://MP4\\KaraokeOnVEVO\\UB40 - Higher Ground.mp4", + "title": "Higher Ground" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Rod Stewart", + "playlist_title": "Reason To Believe", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "52ef2d34-5230-7ad1-1871-886a0ca906a2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Reason To Believe - Rod Stewart.mp4", + "title": "Reason To Believe" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "R.E.M.", + "playlist_title": "Everybody Hurts", + "found_song": { + "artist": "R.E.M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "740d9b90-ae9e-82f9-555f-f5b9594bf31e", + "path": "z://MP4\\Sing King Karaoke\\R.E.M - Everybody Hurts (2.mp4", + "title": "Everybody Hurts" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Little Texas", + "playlist_title": "God Blessed Texas", + "found_song": { + "artist": "Little Texas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c581fa4d-7162-ee64-2f4f-af903fb3dd13", + "path": "z://MP4\\KaraokeOnVEVO\\Little Texas - God Blessed Texas.mp4", + "title": "God Blessed Texas" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Fast As You", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5521088e-b9fd-f981-d117-a8ac61984d31", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - Fast As You.mp4", + "title": "Fast As You" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "The Song Remembers When", + "found_song": { + "artist": "Trisha Yearwood", + "disabled": false, + "favorite": false, + "guid": "923b291e-67f5-0c9e-70c4-5e5fdaae2e4b", + "path": "z://MP4\\KaraokeOnVEVO\\Trisha Yearwood - The Song Remembers When (Karaoke).mp4", + "title": "The Song Remembers When" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Mary Jane's Last Dance", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df6c15b0-6927-abba-f651-826b404f2a9a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Petty And The Heartbreakers - Mary Janes Last Dance.mp4", + "title": "Mary Jane's Last Dance" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Heart", + "playlist_title": "Will You Be There (In The Morning)", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "99fa898a-430e-0561-abb8-45c2c822fe21", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF026\\Heart - Will You Be There In The Morning - SF026 - 11.mp3", + "title": "Will You Be There In The Morning" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Joe Diffie", + "playlist_title": "John Deere Green", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "guid": "244730e9-8183-661a-d4ab-68d9d39cd3b0", + "path": "z://MP4\\KaraFun Karaoke\\John Deere Green - Joe Diffie Karaoke Version KaraFun.mp4", + "title": "John Deere Green" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Nightcrawlers", + "playlist_title": "Push The Feeling On", + "found_song": { + "artist": "Nightcrawlers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a9a33746-926b-d4bf-2a57-57d6dd55f034", + "path": "z://CDG\\SBI\\SBI-01\\SB04073 - Nightcrawlers - Push The Feeling On.mp3", + "title": "Push The Feeling On" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Clay Walker", + "playlist_title": "What's It To You", + "found_song": { + "artist": "Clay Walker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03c9c587-dfb0-89ea-45b4-3acca3b8687f", + "path": "z://MP4\\KaraokeOnVEVO\\Clay Walker - Whats It To You.mp4", + "title": "What's It To You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 9, + "playlist_artist": "Snoop Dogg", + "playlist_title": "What's My Name?", + "found_song": { + "artist": "Snoop Doggy Dog", + "disabled": false, + "favorite": false, + "guid": "c235395b-c30e-4879-20dd-629e82fbb42c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Snoop Doggy Dog - What's My Name - SF050 - 04.mp3", + "title": "What's My Name" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "10,000 Maniacs", + "playlist_title": "Because The Night", + "found_song": { + "artist": "10000 Maniacs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f566c0ed-2ff7-cb13-e35c-afbe6c411ffb", + "path": "z://CDG\\Various\\10000 Maniacs - Because The Night.mp3", + "title": "Because The Night" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "The Breeders", + "playlist_title": "Cannonball", + "found_song": { + "artist": "Breeders", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79fd0035-ec18-5a26-ddbd-46568e7c6a5a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 868\\Breeders - Cannonball - SFMW 868 -01.mp3", + "title": "Cannonball" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Janet Jackson", + "title": "Again", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Bryan Adams/Rod Stewart/Sting", + "title": "All For Love", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "DRS", + "title": "Gangsta Lean", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Xscape", + "title": "Just Kickin' It", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "2Pac", + "title": "Keep Ya Head Up", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Zhane", + "title": "Hey Mr. D.J.", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Babyface", + "title": "Never Keeping Secrets", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Jodeci", + "title": "Cry For You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jimmy Cliff", + "title": "I Can See Clearly Now (From \"Cool Runnings\")", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "R. Kelly", + "title": "Sex Me (Parts I & II)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hi-Five", + "title": "Never Should've Let You Go (From \"Sister Act 2\")", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Color Me Badd", + "title": "Time And Chance", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Tony Toni Tone", + "title": "Anniversary", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Shaquille O'Neal", + "title": "(I Know I Got) Skillz", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Xscape", + "title": "Understanding", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Janet Jackson", + "title": "If", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Zapp & Roger", + "title": "Slow And Easy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Gin Blossoms", + "title": "Found Out About You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Toni Braxton", + "title": "Another Sad Love Song", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Eazy-E", + "title": "Real Muthaphuckkin G's", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Def Leppard", + "title": "Two Steps Behind (From \"Last Action Hero\")", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Boyz II Men", + "title": "Let It Snow", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "US 3", + "title": "Cantaloop (Flip Fantasia)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "A Tribe Called Quest", + "title": "Award Tour", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Elton John & Kiki Dee", + "title": "True Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Intro", + "title": "Come Inside", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Lisette Melendez", + "title": "Goody Goody", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Def Leppard", + "title": "Miss You In A Heartbeat", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Collage", + "title": "I'll Be Loving You", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Red Hot Chili Peppers", + "title": "Soul To Squeeze (From \"Coneheads\")", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Rick Astley", + "title": "Hopelessly", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Das EFX", + "title": "Freakit", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "U2", + "title": "Stay (Faraway, So Close!)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The Lemonheads", + "title": "Into Your Arms", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Expose", + "title": "As Long As I Can Dream", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Shai", + "title": "Yours", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Goodmen", + "title": "Give It Up", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Kenny G", + "title": "Sentimental", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Mista Grimm", + "title": "Indo Smoke (From \"Poetic Justice\")", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Ice Cube", + "title": "Really Doe", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Wu-Tang Clan", + "title": "Method Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jade", + "title": "Looking For Mr. Do Right", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Taylor Dayne", + "title": "Send Me A Lover", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Dr. Dre", + "title": "Let Me Ride", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Lisa Keith", + "title": "Better Than You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Souls Of Mischief", + "title": "93 'Til Infinity", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jazzy Jeff & The Fresh Prince", + "title": "I'm Looking For The One (To Be With Me)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Haddaway", + "title": "Life (Everybody Needs Somebody To Love)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Chantay Savage", + "title": "Betcha'll Never Find", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kate Bush", + "title": "Rubberband Girl", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rozalla", + "title": "I Love Music (From \"Carlito's Way\")", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Robin S.", + "title": "Love For Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kris Kross", + "title": "I'm Real", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Reality", + "title": "Yolanda", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "RAab", + "title": "Foreplay", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bell Biv Devoe", + "title": "Something In Your Eyes", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Lords Of The Underground", + "title": "Here Come The Lords", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Inner Circle", + "title": "Rock With You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "MC Ren", + "title": "Same Ol' Shit", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 3, + "missing_count": 59, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1992 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Vince Gill", + "playlist_title": "Don t Let Our Love Start Slippin Away", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "5a3b90f6-5ae6-ae29-81f4-dc3c76ce1656", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Don't Let Our Love Start Slippin' Away (Karaoke).mp4", + "title": "Don't Let Our Love Start Slippin' Away" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Alan Jackson", + "playlist_title": "She s Got The Rhythm (And I Got The Blues)", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a98fe2-b794-3063-dede-77911d9ade7a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alan Jackson - Shes Got The Rhythm And I Got The Blues.mp4", + "title": "She's Got The Rhythm And I Got The Blues" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Garth Brooks", + "playlist_title": "Somewhere Other Than The Night", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "ea66fbea-054d-a2b0-9655-3906f7c07f3f", + "path": "z://MP4\\Let's Sing Karaoke\\Brooks, Garth - Somewhere Other Than The Night (Karaoke & Lyrics).mp4", + "title": "Somewhere Other Than The Night" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "George Strait", + "playlist_title": "I Cross My Heart", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "56918e08-f952-8c5d-9e6b-0b7c923dcf74", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Cross My Heart - George Strait.mp4", + "title": "I Cross My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Trisha Yearwood", + "playlist_title": "Walkaway Joe", + "found_song": { + "artist": "Trisha Yearwood & Don Henley", + "disabled": false, + "favorite": false, + "guid": "7bdb89a8-5b46-4d29-e494-9da26072cb7c", + "path": "z://MP4\\Let's Sing Karaoke\\Yearwood, Trisha & Don Henley - Walkaway Joe (Karaoke & Lyrics).mp4", + "title": "Walkaway Joe" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Brooks", + "playlist_title": "Lost And Found", + "found_song": { + "artist": "Brooks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3730cfdb-a689-62a5-f965-ccacba93ad0d", + "path": "z://MP4\\KaraokeOnVEVO\\Brooks - Lost And Found.mp4", + "title": "Lost And Found" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Take It Back", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "438b0561-c140-6807-3dd4-22739af40f01", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Take It Back.mp4", + "title": "Take It Back" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "John Michael Montgomery", + "playlist_title": "Life s A Dance", + "found_song": { + "artist": "John Michael Montgomery", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ec716a7-58de-806d-5df9-2cf590de74c8", + "path": "z://MP4\\KaraokeOnVEVO\\John Michael Montgomery - Life s A Dance.mp4", + "title": "Life s A Dance" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Tanya Tucker", + "playlist_title": "Two Sparrows In A Hurricane", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "guid": "98f385e7-131d-e0e8-9c82-dcb53ccfb990", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Sparrows in a Hurricane - Tanya Tucker.mp4", + "title": "Two Sparrows in a Hurricane" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Alabama", + "playlist_title": "I m In A Hurry (And Don t Know Why)", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "56f5d759-8696-2ec2-ed15-d386cfe31a6e", + "path": "z://CDG\\Various\\Alabama - I'm In A Hurry And Don't Know Why.mp3", + "title": "I'm In A Hurry And Don't Know Why" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Diamond Rio", + "playlist_title": "In A Week Or Two", + "found_song": { + "artist": "Diamond Rio", + "disabled": false, + "favorite": false, + "guid": "16427e48-79da-fa21-4209-e7d598d8608c", + "path": "z://MP4\\Let's Sing Karaoke\\Diamond Rio - In A Week Or Two (Karaoke & Lyrics).mp4", + "title": "In A Week Or Two" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 4, + "artist": "Hal Ketchum", + "title": "Sure Love", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Clint Black", + "title": "Burn One Down", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Tracy Lawrence", + "title": "Somebody Paints The Wall", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Randy Travis", + "title": "Look Heart, No Hands", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Lee Roy Parnell", + "title": "Love Without Mercy", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Sammy Kershaw", + "title": "Anywhere But Here", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Ricky Van Shelton", + "title": "Wild Man", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Doug Stone", + "title": "Too Busy Being In Love", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Little Texas", + "title": "What Were You Thinkin", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Travis Tritt", + "title": "Can I Trust You With My Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chris LeDoux", + "title": "Cadillac Ranch", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Anderson", + "title": "Let Go Of The Stone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Wynonna", + "title": "My Strongest Weakness", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 12, + "fuzzy_match_count": 0, + "missing_count": 13, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1992 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Wreckx-N-Effect", + "playlist_title": "Rump Shaker", + "found_song": { + "artist": "Wreckx 'N Effect", + "disabled": false, + "favorite": false, + "guid": "88c2d602-ad49-9320-8e32-4dd61ed159d1", + "path": "z://MP4\\Let's Sing Karaoke\\Wreckx 'N Effect - Rump Shaker (Karaoke & Lyrics).mp4", + "title": "Rump Shaker" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Snap", + "playlist_title": "Rhythm Is A Dancer", + "found_song": { + "artist": "Snap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "facc8ac1-2ea9-b145-817c-42c6a450df35", + "path": "z://MP4\\VocalStarKaraoke\\Snap - Rhythm Is A Dancer.mp4", + "title": "Rhythm Is A Dancer" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "TLC", + "playlist_title": "What About Your Friends", + "found_song": { + "artist": "TLC", + "disabled": false, + "favorite": false, + "guid": "592e06e2-d164-63f8-d462-e81f30616bf2", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - TLC - What About Your Friends.mp3", + "title": "What About Your Friends" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Michael Bolton", + "playlist_title": "To Love Somebody", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "4d3909dc-b7d9-e60c-2a80-10f1cfadbfeb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Love Somebody - Michael Bolton.mp4", + "title": "To Love Somebody" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Madonna", + "playlist_title": "Deeper And Deeper", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "41be10f5-5f83-d11b-558f-af95055b3bfc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD010 - Madonna\\Madonna - Deeper And Deeper - SFG010 - 09.mp3", + "title": "Deeper And Deeper" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eric Clapton", + "playlist_title": "Layla", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb205888-a385-590a-f60f-963df1ea89ce", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eric Clapton - Layla.mp4", + "title": "Layla" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Spin Doctors", + "playlist_title": "Little Miss Can t Be Wrong", + "found_song": { + "artist": "Spin Doctors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b7de7ab-36ac-1f9d-1c2d-3e00e4640468", + "path": "z://MP4\\KaraokeOnVEVO\\Spin Doctors - Little Miss Can t Be Wrong.mp4", + "title": "Little Miss Can t Be Wrong" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Restless Heart", + "playlist_title": "When She Cries", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0d54b18f-8b12-9992-d649-5541aaf7ddbe", + "path": "z://MP4\\Sing King Karaoke\\Restless Heart - When She Cries.mp4", + "title": "When She Cries" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Go West", + "playlist_title": "Faithful", + "found_song": { + "artist": "Go West", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b323a1ed-74e5-f3e7-33ce-7d5480c88348", + "path": "z://MP4\\ZoomKaraokeOfficial\\Go West - Faithful.mp4", + "title": "Faithful" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Annie Lennox", + "playlist_title": "Walking On Broken Glass", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "b771529e-8c8a-c87b-dc0d-3f91be0efcf1", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Annie Lennox - Walking On Broken Glass - SF006 - 06.mp3", + "title": "Walking On Broken Glass" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Charles", + "playlist_title": "Would I Lie To You?", + "found_song": { + "artist": "Charles & Eddie", + "disabled": false, + "favorite": false, + "guid": "4c1c7663-2a8e-04d1-31d0-1bbc5498e2bf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Would I Lie To You - Charles & Eddie.mp4", + "title": "Would I Lie To You" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "R.E.M.", + "playlist_title": "Drive", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d78e6fb1-7221-6de6-ea92-626842f26161", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - Drive.mp4", + "title": "Drive" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Patty Smyth", + "playlist_title": "Sometimes Love Just Ain t Enough", + "found_song": { + "artist": "Patty Smyth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "822e2cf1-ef7f-bb99-44fc-164dba5c3636", + "path": "z://MP4\\Sing King Karaoke\\Patty Smyth - Sometimes Love Just Ain t Enough.mp4", + "title": "Sometimes Love Just Ain t Enough" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "House Of Pain", + "playlist_title": "Jump Around", + "found_song": { + "artist": "House Of Pain", + "disabled": false, + "favorite": false, + "guid": "b6871e6b-8f0b-c950-9da2-9eb673e3acd9", + "path": "z://MP4\\Let's Sing Karaoke\\House Of Pain - Jump Around (Karaoke & Lyrics).mp4", + "title": "Jump Around" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "U2", + "playlist_title": "Who s Gonna Ride Your Wild Horses", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "bd80dcfd-cb58-1144-173b-15c2486bea3f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - Who's Gonna Ride Your Wild Horses - SFG009 - 13.mp3", + "title": "Who's Gonna Ride Your Wild Horses" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Arrested Development", + "playlist_title": "People Everyday", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f319549-3ac0-6df6-4110-84aef54fdedf", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 865\\Arrested Development - People Everyday - SFMW 865 -08.mp3", + "title": "People Everyday" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Bon Jovi", + "playlist_title": "Keep The Faith", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "c4be7397-fa85-673a-b9d8-ca334b0310be", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF004\\Bon Jovi - Keep The Faith - SF004 - 04.mp3", + "title": "Keep The Faith" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "En Vogue", + "playlist_title": "Free Your Mind", + "found_song": { + "artist": "En Vogue", + "disabled": false, + "favorite": false, + "guid": "1e5522c2-5c11-7a52-11ea-bea006cbd1fa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Free Your Mind - En Vogue.mp4", + "title": "Free Your Mind" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Jon Secada", + "playlist_title": "Just Another Day", + "found_song": { + "artist": "Jon Secada", + "disabled": false, + "favorite": false, + "guid": "e95b7c10-ee2b-8e78-bff0-109d7f4d4078", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Another Day - Jon Secada.mp4", + "title": "Just Another Day" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Celine Dion", + "playlist_title": "Love Can Move Mountains", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c16b7c48-e093-4398-20f8-fd85a95bd4e7", + "path": "z://MP4\\KaraokeOnVEVO\\Celine Dion - Love Can Move Mountains.mp4", + "title": "Love Can Move Mountains" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Def Leppard", + "playlist_title": "Have You Ever Needed Someone So Bad", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "290ea997-7f18-0121-3f89-e5a828b4d833", + "path": "z://CDG\\SBI\\SBI-04\\SB18222 - Def Leppard - Have You Ever Needed Someone So Bad.mp3", + "title": "Have You Ever Needed Someone So Bad" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Dan Baird", + "playlist_title": "I Love You Period", + "found_song": { + "artist": "Dan Baird", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bfe16e5-27d8-834d-f55d-c2cc2000016a", + "path": "z://MP4\\KaraokeOnVEVO\\Dan Baird - I Love You Period.mp4", + "title": "I Love You Period" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Michael Jackson", + "playlist_title": "Heal The World", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "83afff40-1864-22b7-505d-d8e85258467e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heal The World - Michael Jackson.mp4", + "title": "Heal The World" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Madonna", + "playlist_title": "Erotica", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6e50d12-54c1-fccb-0a86-932e62437a94", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 824\\Madonna - Erotica - SFMW 824 -01.mp3", + "title": "Erotica" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Def Leppard", + "playlist_title": "Stand Up (Kick Love Into Motion)", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5384dce-1efb-8b24-728c-e84bae3cc4d2", + "path": "z://CDG\\SBI\\SBI-01\\SB02159 - Def Leppard - Stand Up (Kick Love Into Motion).mp3", + "title": "Stand Up (Kick Love Into Motion)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Steam", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "193171f8-b557-3b62-30ce-b869c9b98bea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steam - Peter Gabriel.mp4", + "title": "Steam" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Positive K", + "playlist_title": "I Got A Man", + "found_song": { + "artist": "Positive K", + "disabled": false, + "favorite": false, + "guid": "2cc07c50-4c69-b0ad-9a3e-091595c760ec", + "path": "z://CDG\\Various\\Positive K - I Got A Man.mp3", + "title": "I Got A Man" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Jade", + "playlist_title": "Don t Walk Away", + "found_song": { + "artist": "Jade", + "disabled": false, + "favorite": false, + "guid": "11daf9a4-ea95-edff-7853-928a72a507e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Walk Away - Jade.mp4", + "title": "Don t Walk Away" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Megadeth", + "playlist_title": "Symphony Of Destruction", + "found_song": { + "artist": "Megadeth", + "disabled": false, + "favorite": false, + "guid": "384942e0-36ac-a861-414a-0a156a5fe6c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Symphony Of Destruction - Megadeth.mp4", + "title": "Symphony Of Destruction" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Guns N Roses", + "playlist_title": "Yesterdays", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "22ebe8a2-e7f6-130c-7216-18c7b1c4d97c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yesterdays - Guns N Roses.mp4", + "title": "Yesterdays" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Whitney Houston", + "playlist_title": "I Will Always Love You (From \"The Bodyguard\")", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "f3ac1990-dfb0-c529-038a-776ed280d1df", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will Always Love You (The Bodyguard) - Whitney Houston.mp4", + "title": "I Will Always Love You (The Bodyguard)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "N2Deep", + "playlist_title": "Back To The Hotel", + "found_song": { + "artist": "N2 Deep", + "disabled": false, + "favorite": false, + "guid": "da1f52a5-420e-e31d-80f5-a0a65bd6f102", + "path": "z://CDG\\Various\\N2 Deep - Back To The Hotel.mp3", + "title": "Back To The Hotel" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "Arrested Development", + "playlist_title": "Mr. Wendal", + "found_song": { + "artist": "Arrested Development", + "disabled": false, + "favorite": false, + "guid": "28e5bf97-d22b-57c0-3ea7-2c501bc96e12", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF050\\Arrested Development - Mr. Wendel - SF050 - 13.mp3", + "title": "Mr. Wendel" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Chante Moore", + "playlist_title": "Love s Taken Over", + "found_song": { + "artist": "Chanté Moore", + "disabled": false, + "favorite": false, + "guid": "efa0c4a4-f3b4-1106-3e5b-c313f38e4a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love s Taken Over - Chanté Moore.mp4", + "title": "Love s Taken Over" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Shai", + "title": "If I Ever Fall In Love", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Boyz II Men", + "title": "In The Still Of The Nite (From \"The Jacksons\")", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "P.M. Dawn", + "title": "I d Die Without You (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Bobby Brown", + "title": "Good Enough", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Shanice", + "title": "Saving Forever For You (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Heights", + "title": "How Do You Talk To An Angel", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Mary J. Blige", + "title": "Real Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Saigon Kick", + "title": "Love Is On The Way", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Jon Secada", + "title": "Do You Believe In Us", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Boyz II Men", + "title": "End Of The Road (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mad Cobra", + "title": "Flex", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Damn Yankees", + "title": "Where You Goin Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Genesis", + "title": "Never A Time", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Elton John", + "title": "The Last Song", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Prince And The New Power Generation", + "title": "7", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Portrait", + "title": "Here We Go Again!", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Expose", + "title": "I Wish The Phone Would Ring", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Toad The Wet Sprocket", + "title": "Walk On The Ocean", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "En Vogue", + "title": "Give It Up, Turn It Loose", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lo-Key?", + "title": "I Got A Thang 4 Ya!", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Bell Biv Devoe", + "title": "Gangsta", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Peabo Bryson", + "title": "A Whole New World (Aladdin s Theme)", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The S.O.U.L. S.Y.S.T.E.M.", + "title": "It s Gonna Be A Lovely Day", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "TLC", + "title": "Baby-Baby-Baby", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Shabba Ranks (Featuring Johnny Gill)", + "title": "Slow And Sexy", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Toni Braxton", + "title": "Love Shoulda Brought You Home (From \"Boomerang\")", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Trey Lorenz", + "title": "Someone To Hold", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sade", + "title": "No Ordinary Love", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "After 7", + "title": "Baby I m For Real/Natural High", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Hi-Five", + "title": "Quality Time", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mary J. Blige", + "title": "Reminisce", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Shakespear s Sister", + "title": "I Don t Care", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Father M.C.", + "title": "Everything s Gonna Be Alright", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Paperboy", + "title": "Ditty", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Michael W. Smith", + "title": "I Will Be Here For You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Color Me Badd", + "title": "Forever Love (From \"Mo Money\")", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "10,000 Maniacs", + "title": "These Are Days", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "House Of Pain", + "title": "Shamrocks And Shenanigans (Boom Shalock Lock Boom)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lighter Shade Of Brown", + "title": "Homies", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Soup Dragons", + "title": "Pleasure", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Chuckii Booker", + "title": "Games", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Firehouse", + "title": "When I Look Into Your Eyes", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "George LaMond", + "title": "Baby, I Believe In You", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Goddess", + "title": "Sexual", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Classic Example", + "title": "It s Alright (From \"South Central\")", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Richard Marx", + "title": "Chains Around My Heart", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Al B. Sure!", + "title": "Right Now", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Jeremy Jordan", + "title": "The Right Kind Of Love (From \"Beverly Hills, 90210\")", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Kenny G", + "title": "Forever In Love", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kris Kross", + "title": "I Missed The Bus", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Ice Cube", + "title": "Wicked", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Smart E s", + "title": "Sesame s Treet", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Wynonna", + "title": "No One Else On Earth", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bad Company", + "title": "This Could Be The One", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Sound Factory", + "title": "Understand This Groove", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Billy Ray Cyrus", + "title": "Could ve Been Me", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Home Team", + "title": "Pick It Up", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Cathy Dennis", + "title": "Irresistible", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patty Smyth", + "title": "No Mistakes", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Firehouse", + "title": "Sleeping With You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "R. Kelly", + "title": "Slow Dance (Hey Mr. DJ)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Grand Puba", + "title": "360 Degrees (What Goes Around)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "CeCe Peniston", + "title": "Crazy Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "AB Logic", + "title": "Get Up (Move Boy Move)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Arrested Development", + "title": "Revolution (From \"Malcolm X\")", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Tevin Campbell", + "title": "Alone With You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 4, + "missing_count": 66, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1991 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Brooks", + "playlist_title": "My Next Broken Heart", + "found_song": { + "artist": "Brooks & Dunn", + "disabled": false, + "favorite": false, + "guid": "4a6d02af-1cd1-8d0d-32ab-83b56de7f264", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Next Broken Heart - Brooks & Dunn.mp4", + "title": "My Next Broken Heart" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Collin Raye", + "playlist_title": "Love, Me", + "found_song": { + "artist": "Collin Raye", + "disabled": false, + "favorite": false, + "guid": "c70bc872-45e9-c64c-b5cf-b472bc1a8fa3", + "path": "z://CDG\\Various\\Collin Raye - Love Me.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Restless Heart", + "playlist_title": "You Can Depend On Me", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "guid": "8a378155-4c63-4fc8-bd25-3f4a0a0c3f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - You Can Depend On Me (Karaoke).mp4", + "title": "You Can Depend On Me" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Vince Gill", + "playlist_title": "Look At Us", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "guid": "e81fad00-71d2-2b2c-e444-4e79c40a9e84", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Look At Us (Karaoke).mp4", + "title": "Look At Us" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "(Without You) What Do I Do With Me", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d36f5a79-c851-a9e1-df13-068cf988efe4", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - (Without You What Do I Do With Me.mp4", + "title": "(Without You) What Do I Do With Me" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Garth Brooks", + "playlist_title": "Shameless", + "found_song": { + "artist": "Garth Brooks", + "disabled": false, + "favorite": false, + "guid": "979533e8-fc8b-422f-a3b6-962ee6f397db", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shameless - Garth Brooks.mp4", + "title": "Shameless" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Alabama", + "playlist_title": "Then Again", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "cdab64af-a1ca-0b47-b9c8-3dee782bac4e", + "path": "z://CDG\\Various\\Alabama - Then Again.mp3", + "title": "Then Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Travis Tritt", + "playlist_title": "Anymore", + "found_song": { + "artist": "Travis Tritt", + "disabled": false, + "favorite": false, + "guid": "8fad3c15-e706-e2c4-3f08-b3be156e9a6d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Anymore - Travis Tritt.mp4", + "title": "Anymore" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "George Strait", + "playlist_title": "The Chill Of An Early Fall", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "0f761362-7a83-18b5-c06a-0b080f9a1dc7", + "path": "z://CDG\\Various\\George Strait - Chill Of An Early Fall.mp3", + "title": "Chill Of An Early Fall" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Randy Travis", + "playlist_title": "Forever Together", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "guid": "fe19bbe6-bf82-59f9-d08a-9ee5d3dbcb0f", + "path": "z://CDG\\Various\\Randy Travis - Forever Together.mp3", + "title": "Forever Together" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Reba McEntire", + "title": "For My Broken Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Steve Wariner", + "title": "Leave Him Out Of This", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Billy Dean", + "title": "You Don t Count The Cost", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Tracy Lawrence", + "title": "Sticks And Stones", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Sammy Kershaw", + "title": "Cadillac Style", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Little Texas", + "title": "Some Guys Have All The Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Remingtons", + "title": "A Long Time Ago", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Doug Stone", + "title": "A Jukebox With A Country Song", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mary Chapin Carpenter", + "title": "Going Out Tonight", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Hal Ketchum", + "title": "I Know Where Love Lives", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Sawyer Brown", + "title": "The Dirt Road", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Suzy Bogguss", + "title": "Someday Soon", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Mark Chesnutt", + "title": "Broken Promise Land", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Travis Tritt With Marty Stuart", + "title": "The Whiskey Ain t Workin", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rob Crosby", + "title": "Still Burnin For You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 2, + "missing_count": 15, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1991 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Michael Jackson", + "playlist_title": "Black Or White", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "4e301e2b-81ed-c936-5f9d-cd6432a451e7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Or White - Michael Jackson.mp4", + "title": "Black Or White" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Boyz II Men", + "playlist_title": "It s So Hard To Say Goodbye To Yesterday", + "found_song": { + "artist": "Boyz II Men", + "disabled": false, + "favorite": false, + "guid": "b3b65daf-f7cb-7ac6-2297-f3368992b7c5", + "path": "z://MP4\\KaraFun Karaoke\\It's So Hard To Say Goodbye To Yesterday - Boyz II Men Karaoke Version KaraFun.mp4", + "title": "It's So Hard To Say Goodbye To Yesterday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Michael Bolton", + "playlist_title": "When A Man Loves A Woman", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "6b24303a-3ec2-bff5-e565-c5229a53c661", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When A Man Loves A Woman - Michael Bolton.mp4", + "title": "When A Man Loves A Woman" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Mariah Carey", + "playlist_title": "Can t Let Go", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "f8b2222d-9f7a-fd8f-54df-43d07d5ad022", + "path": "z://CDG\\Various\\Mariah Carey - Can't Let Go.mp3", + "title": "Can't Let Go" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Paula Abdul", + "playlist_title": "Blowing Kisses In The Wind", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09f25902-a9ed-f29f-2a8a-0994c2b475ec", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Blowing Kisses In The Wind.mp4", + "title": "Blowing Kisses In The Wind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "CeCe Peniston", + "playlist_title": "Finally", + "found_song": { + "artist": "CeCe Peniston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67a82eed-0009-8ffc-bce6-052fc3bcc71d", + "path": "z://MP4\\KaraokeOnVEVO\\CeCe Peniston - Finally.mp4", + "title": "Finally" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Richard Marx", + "playlist_title": "Keep Coming Back", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "guid": "6604820d-42a6-d56d-d7e5-a49b8425e7d0", + "path": "z://CDG\\Various\\Richard Marx - Keep Coming Back.mp3", + "title": "Keep Coming Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "No Son Of Mine", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "531f696c-bebe-ae1d-b81a-cd9a67adbaf3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - No Son Of Mine.mp4", + "title": "No Son Of Mine" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Naughty By Nature", + "playlist_title": "O.P.P.", + "found_song": { + "artist": "Naughty By Nature", + "disabled": false, + "favorite": false, + "guid": "85c4be82-9d0f-b08f-a38d-245b80b85d8b", + "path": "z://MP4\\Let's Sing Karaoke\\Naughty By Nature - O.P.P (Karaoke & Lyrics).mp4", + "title": "O.P.P" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Let s Talk About Sex", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87f50625-5f4b-3b08-58bc-685816430d31", + "path": "z://MP4\\ZoomKaraokeOfficial\\Salt n Pepa - Lets Talk About Sex.mp4", + "title": "Let's Talk About Sex" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Nirvana", + "playlist_title": "Smells Like Teen Spirit", + "found_song": { + "artist": "Nirvana", + "disabled": false, + "favorite": false, + "guid": "acc840f4-07cb-8e99-9f54-c922c493d6d3", + "path": "z://MP4\\Sing King Karaoke\\Nirvana - Smells Like Teen Spirit (Karaoke Version).mp4", + "title": "Smells Like Teen Spirit" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Guns N Roses", + "playlist_title": "Don t Cry", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "87c6dfee-f4a6-f9c2-e5f0-cc606fdce00c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Cry - Guns N Roses.mp4", + "title": "Don t Cry" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bryan Adams", + "playlist_title": "Can t Stop This Thing We Started", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "686df297-f16c-7f93-fded-adfbe4a0429f", + "path": "z://MP4\\KaraokeOnVEVO\\Bryan Adams - Can't Stop This Thing We Started (Karaoke).mp4", + "title": "Can't Stop This Thing We Started" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Shanice", + "playlist_title": "I Love Your Smile", + "found_song": { + "artist": "Shanice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "27c630b2-9cd5-da86-05eb-d9d224885750", + "path": "z://MP4\\ZoomKaraokeOfficial\\Shanice - I Love Your Smile.mp4", + "title": "I Love Your Smile" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "U2", + "playlist_title": "Mysterious Ways", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a6ba09d-dce4-12e6-1e87-65ccae7cc08c", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Mysterious Ways.mp4", + "title": "Mysterious Ways" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Jodeci", + "playlist_title": "Forever My Lady", + "found_song": { + "artist": "Jodeci", + "disabled": false, + "favorite": false, + "guid": "c26ea9f7-ba97-107b-f50a-a5cadd49aac4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Forever My Lady - Jodeci.mp4", + "title": "Forever My Lady" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Lisa Stansfield", + "playlist_title": "Change", + "found_song": { + "artist": "Lisa Stansfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "329f88d1-0583-05fe-eafc-2f3b3a38e516", + "path": "z://MP4\\KaraokeOnVEVO\\Lisa Stansfield - Change.mp4", + "title": "Change" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Roxette", + "playlist_title": "Spending My Time", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "guid": "a189317a-b84c-c848-3a99-674164acc76a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spending My Time - Roxette.mp4", + "title": "Spending My Time" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Mariah Carey", + "playlist_title": "Emotions", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "ff6aed0f-7ec2-01d5-e520-c272cb5ff280", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Emotions - Mariah Carey.mp4", + "title": "Emotions" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Keith Sweat", + "playlist_title": "Keep It Comin", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "0e9cf55f-32c0-3eb2-0b7c-8796e0c650bf", + "path": "z://MP4\\Let's Sing Karaoke\\Sweat, Keith - Keep It Comin' (Karaoke & Lyrics).mp4", + "title": "Keep It Comin'" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Motley Crue", + "playlist_title": "Home Sweet Home", + "found_song": { + "artist": "Motley Crue", + "disabled": false, + "favorite": false, + "guid": "61b1d137-e467-e8e2-a419-a5494db61450", + "path": "z://MP4\\KtvEntertainment\\Motley Crue - Home Sweet Home Karaoke Lyrics.mp4", + "title": "Home Sweet Home" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Curtis Stigers", + "playlist_title": "I Wonder Why", + "found_song": { + "artist": "Curtis Stigers", + "disabled": false, + "favorite": false, + "guid": "e5347889-a083-bee8-c176-0c9b398703cf", + "path": "z://MP4\\KaraFun Karaoke\\I Wonder Why - Curtis Stigers Karaoke Version KaraFun.mp4", + "title": "I Wonder Why" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Metallica", + "playlist_title": "Enter Sandman", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "97a2ae64-b529-b42f-47fc-8de58b7d4932", + "path": "z://MP4\\Sing King Karaoke\\Metallica - Enter Sandman (Karaoke Version).mp4", + "title": "Enter Sandman" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Kym Sims", + "playlist_title": "Too Blind To See It", + "found_song": { + "artist": "Kym Sims", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e890ba5b-cd1c-c186-3cda-1a72f8b19d1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 837\\Kym Sims - Too Blind To See It - SFMW 837 -02.mp3", + "title": "Too Blind To See It" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Metallica", + "playlist_title": "The Unforgiven", + "found_song": { + "artist": "Metallica", + "disabled": false, + "favorite": false, + "guid": "7eb0cde4-545c-1166-86d1-60905de6d2dc", + "path": "z://MP4\\KaraFun Karaoke\\The Unforgiven - Metallica Karaoke Version KaraFun.mp4", + "title": "The Unforgiven" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bonnie Raitt", + "playlist_title": "I Can t Make You Love Me", + "found_song": { + "artist": "Bonnie Raitt", + "disabled": false, + "favorite": false, + "guid": "2ee5f490-acc2-4ff1-fdd3-cf735b03f2a7", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Raitt - I Can't Make You Love Me (Karaoke Version).mp4", + "title": "I Can't Make You Love Me" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Right Said Fred", + "playlist_title": "I m Too Sexy", + "found_song": { + "artist": "Right Said Fred", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edafdc0d-d957-025e-4a62-0332a79d4eef", + "path": "z://MP4\\KaraokeOnVEVO\\Right Said Fred - I m Too Sexy.mp4", + "title": "I m Too Sexy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Mr. Big", + "playlist_title": "To Be With You", + "found_song": { + "artist": "Mr. Big", + "disabled": false, + "favorite": false, + "guid": "7239c35f-70f0-47ec-892a-839d36dccea5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be With You - Mr. Big.mp4", + "title": "To Be With You" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Jesus Jones", + "playlist_title": "Real Real Real", + "found_song": { + "artist": "Jesus Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a868484-036b-1f4b-549c-939d0211163f", + "path": "z://MP4\\KaraokeOnVEVO\\Jesus Jones - Real Real Real.mp4", + "title": "Real Real Real" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Red Hot Chili Peppers", + "playlist_title": "Give It Away", + "found_song": { + "artist": "Red Hot Chili Peppers", + "disabled": false, + "favorite": false, + "guid": "e49b0343-7cb3-283b-9e13-9721a1ccb37c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Away - Red Hot Chili Peppers.mp4", + "title": "Give It Away" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "UB40", + "playlist_title": "Groovin", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "496543d8-c2b4-89bc-4739-ff1311ec7a74", + "path": "z://MP4\\ZoomKaraokeOfficial\\UB40 - Groovin.mp4", + "title": "Groovin'" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "P.M. Dawn", + "playlist_title": "Set Adrift On Memory Bliss", + "found_song": { + "artist": "PM Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ea2f5cd0-8c61-f722-db78-d96006cb10e3", + "path": "z://MP4\\ZoomKaraokeOfficial\\PM Dawn - Set Adrift On Memory Bliss.mp4", + "title": "Set Adrift On Memory Bliss" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 19, + "playlist_artist": "George Michael/Elton John", + "playlist_title": "Don t Let The Sun Go Down On Me", + "found_song": { + "artist": "George Michael & Elton John", + "disabled": false, + "favorite": false, + "guid": "15a17820-f6f0-d83b-e542-c52a84305191", + "path": "z://CDG\\Various\\George Michael & Elton John - Don't Let The Sun Go Down On Me.mp3", + "title": "Don't Let The Sun Go Down On Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 20, + "playlist_artist": "M.C. Hammer", + "playlist_title": "Addams Groove", + "found_song": { + "artist": "MC Hammer", + "disabled": false, + "favorite": false, + "guid": "ab0352d1-15e0-a630-8fc8-3459c5a33487", + "path": "z://MP4\\KaraFun Karaoke\\Addams Groove - MC Hammer Karaoke Version KaraFun.mp4", + "title": "Addams Groove" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Scorpions", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "The Scorpions", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3bc15e6-8168-0504-beb1-4bdfc4b62cc5", + "path": "z://MP4\\KaraokeOnVEVO\\Scorpions - Send Me An Angel.mp4", + "title": "Send Me An Angel" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Color Me Badd", + "title": "All 4 Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "M.C. Hammer", + "title": "2 Legit 2 Quit", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Marky Mark", + "title": "Wildside", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Amy Grant", + "title": "That s What Love Is For", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Prince And The N.P.G.", + "title": "Cream", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gloria Estefan", + "title": "Live For Loving You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Roberta Flack With Maxi Priest", + "title": "Set The Night To Music", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rod Stewart", + "title": "Broken Arrow", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Natural Selection", + "title": "Do Anything", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Karyn White", + "title": "Romantic", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Prince And The N.P.G.", + "title": "Diamonds And Pearls", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tevin Campbell", + "title": "Tell Me What You Want Me To Do", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Nia Peeples", + "title": "Street Of Dreams", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Karyn White", + "title": "The Way I Feel About You", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stacy Earl", + "title": "Love Me All Up", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Angelica", + "title": "Angel Baby", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Geto Boys", + "title": "Mind Playing Tricks On Me", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Cher", + "title": "Save Up All Your Tears", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Tracie Spencer", + "title": "Tender Kisses", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Vanessa Williams", + "title": "Running Back To You", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Storm", + "title": "I ve Got A Lot To Learn About Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Van Halen", + "title": "Top Of The World", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Shabba Ranks/Maxi Priest", + "title": "Housecall", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Heavy D", + "title": "Is It Good To You", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "D.J. Jazzy Jeff", + "title": "Ring My Bell", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Lita Ford", + "title": "Shot Of Poison", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Party", + "title": "In My Dreams", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Public Enemy", + "title": "Can t Truss It", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Natural Selection", + "title": "Hearts Don t Think (They Feel)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Firehouse", + "title": "All She Wrote", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Icy Blu", + "title": "I Wanna Be Your Girl", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kid N Play", + "title": "Ain t Gonna Hurt Nobody", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Lighter Shade Of Brown", + "title": "On A Sunday Afternoon", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Digital Underground", + "title": "Kiss You Back", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "C+C Music Factory Presents Zelma Davis", + "title": "Just A Touch Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The Farm", + "title": "Groovy Train", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lisette Melendez", + "title": "A Day In My Life (Without You)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "M.C. Breed", + "title": "Ain t No Future In Yo Fronting", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Vanessa Williams", + "title": "The Comfort Zone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jody Watley", + "title": "I Want You", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The 2 Live Crew", + "title": "Pop That Coochie", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Ozzy Osbourne", + "title": "No More Tears", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Corina", + "title": "Whispers", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Atlantic Starr", + "title": "Love Crazy", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Laissez Faire", + "title": "In Paradise", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Voyce", + "title": "Within My Heart", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Boyz II Men", + "title": "Uhh Ahh", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "John Mellencamp", + "title": "Get A Leg Up", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tone-Loc", + "title": "All Through The Night", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Kenny Loggins", + "title": "Conviction Of The Heart", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Big Audio", + "title": "Rush", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Eddie Money", + "title": "I ll Get By", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bette Midler", + "title": "Every Road Leads Back To You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Bryan Adams", + "title": "There Will Never Be Another Tonight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Prince And The N.P.G.", + "title": "Insatiable", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Shamen", + "title": "Move Any Mountain", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Damian Dame", + "title": "Right Down To It", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "U2", + "title": "The Fly", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The KLF", + "title": "What Time Is Love?", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Simply Red", + "title": "Something Got Me Started", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Guns N Roses", + "title": "Live And Let Die", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Cathy Dennis", + "title": "Everybody Move", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Hi-Five", + "title": "Just Another Girlfriend", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "EMF", + "title": "Lies", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Blue Train", + "title": "All I Need Is You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 4, + "missing_count": 65, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1990 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Strait", + "playlist_title": "I ve Come To Expect It From You", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7171ebad-890c-1e5c-ac25-6b3a83c8bedc", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - I ve Come To Expect It From You.mp4", + "title": "I ve Come To Expect It From You" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Garth Brooks", + "playlist_title": "Unanswered Prayers", + "found_song": { + "artist": "Garth-Brooks", + "disabled": false, + "favorite": false, + "guid": "85d9afa3-4463-457c-5ed2-f71602529edb", + "path": "z://MP4\\Garth-Brooks - Unanswered Prayers.mp4", + "title": "Unanswered Prayers" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Vince Gill", + "playlist_title": "Never Knew Lonely", + "found_song": { + "artist": "Vince Gill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7338b4f0-b537-ab01-3640-f93d79798e5f", + "path": "z://MP4\\KaraokeOnVEVO\\Vince Gill - Never Knew Lonely.mp4", + "title": "Never Knew Lonely" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Alan Jackson", + "playlist_title": "Chasin That Neon Rainbow", + "found_song": { + "artist": "Alan Jackson", + "disabled": false, + "favorite": false, + "guid": "1f4d757b-ec54-88fd-f03d-41da67d548bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Chasin That Neon Rainbow - Alan Jackson.mp4", + "title": "Chasin That Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Clint Black", + "playlist_title": "Put Yourself In My Shoes", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b54e0f62-c936-0492-0916-1d70204dcf07", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Put Yourself In My Shoes.mp4", + "title": "Put Yourself In My Shoes" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Alabama", + "playlist_title": "Forever s As Far As I ll Go", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7331ad34-7684-60cc-0cc7-4be3d96dc6a8", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Forever s As Far As I ll Go.mp4", + "title": "Forever s As Far As I ll Go" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "Crazy In Love", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23aaeedd-5628-5f88-240d-a284024ff0eb", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Crazy In Love.mp4", + "title": "Crazy In Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Carlene Carter", + "playlist_title": "Come On Back", + "found_song": { + "artist": "Carlene Carter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de1c080a-408e-eb85-3eaf-5927177c2791", + "path": "z://MP4\\KaraokeOnVEVO\\Carlene Carter - Come On Back.mp4", + "title": "Come On Back" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Reba McEntire", + "playlist_title": "Rumor Has It", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67ef65ba-e1f1-d297-283a-2d1a4d551b84", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Rumor Has It.mp4", + "title": "Rumor Has It" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Paul Overstreet", + "playlist_title": "Daddy s Come Around", + "found_song": { + "artist": "Paul Overstreet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ffff8c62-b0b5-3c0d-a159-33c03eedc4e1", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Overstreet - Daddy s Come Around.mp4", + "title": "Daddy s Come Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Kathy Mattea", + "playlist_title": "A Few Good Things Remain", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "efc0c893-ac6b-c34d-42a6-48f5036867a5", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - A Few Good Things Remain.mp4", + "title": "A Few Good Things Remain" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "Turn It On, Turn It Up, Turn Me Loose", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "guid": "da1650dd-17cd-c70a-693d-77c02a9eea3d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turn It On, Turn It Up, Turn Me Loose - Dwight Yoakam.mp4", + "title": "Turn It On, Turn It Up, Turn Me Loose" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Mary Chapin Carpenter", + "playlist_title": "You Win Again", + "found_song": { + "artist": "Mary Chapin Carpenter", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de29ae80-7768-60c6-2281-43c68f98af22", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Chapin Carpenter - You Win Again.mp4", + "title": "You Win Again" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mark Chesnutt", + "playlist_title": "Brother Jukebox", + "found_song": { + "artist": "Mark Chesnutt", + "disabled": false, + "favorite": false, + "guid": "9a38dce4-0a1a-8410-aa38-089a4cfedc98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Brother Jukebox - Mark Chesnutt.mp4", + "title": "Brother Jukebox" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Joe Diffie", + "playlist_title": "Home", + "found_song": { + "artist": "Joe Diffie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16b97bca-38eb-c147-549e-5c60fab53c52", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Diffie - Home.mp4", + "title": "Home" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Doug Stone", + "playlist_title": "These Lips Don t Know How To Say Goodbye", + "found_song": { + "artist": "Doug Stone", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b6f266d-8466-8d58-43ce-bf013b52aad7", + "path": "z://MP4\\KaraokeOnVEVO\\Doug Stone - These Lips Don t Know How To Say Goodbye.mp4", + "title": "These Lips Don t Know How To Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Lee Greenwood", + "playlist_title": "We ve Got It Made", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "40750c64-ccfe-efa6-bbbf-f9bf4d03faa3", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - We ve Got It Made.mp4", + "title": "We ve Got It Made" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 5, + "artist": "Shenandoah", + "title": "Ghost In This House", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ricky Van Shelton", + "title": "Life s Little Ups And Downs", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "K.T. Oslin", + "title": "Come Next Monday", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Tanya Tucker", + "title": "It Won t Be Me", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Don Williams", + "title": "Back In My Younger Days", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Holly Dunn", + "title": "You Really Had Me Going", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Rodney Crowell", + "title": "Now That We re Alone", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Highway 101", + "title": "Someone Else s Trouble Now", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 17, + "fuzzy_match_count": 0, + "missing_count": 8, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1990 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Madonna", + "playlist_title": "Justify My Love", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "027a9080-c23c-4af1-49fd-ebdf02ca6a1d", + "path": "z://CDG\\Various\\Madonna - Justify My Love.mp3", + "title": "Justify My Love" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Bette Midler", + "playlist_title": "From A Distance", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "971de806-b070-b373-30ce-fc3defc13194", + "path": "z://MP4\\Sing King Karaoke\\Bette Midler - From A Distance.mp4", + "title": "From A Distance" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Damn Yankees", + "playlist_title": "High Enough", + "found_song": { + "artist": "Damn Yankees", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1fea1177-67b3-0780-245e-d14ab7ab9d6d", + "path": "z://MP4\\KaraokeOnVEVO\\Damn Yankees - High Enough.mp4", + "title": "High Enough" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Whitney Houston", + "playlist_title": "I m Your Baby Tonight", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "969aea33-8b24-da72-42ca-b042d429c1a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Your Baby Tonight - Whitney Houston.mp4", + "title": "I m Your Baby Tonight" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "George Michael", + "playlist_title": "Freedom", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "a2751f93-c22f-3774-7f92-07fca42db542", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Freedom! (Karaoke Version).mp4", + "title": "Freedom!" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "UB40", + "playlist_title": "The Way You Do The Things You Do", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "f97c55d2-758f-ae52-5eb7-e12f0c13b8a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way You Do The Things You Do - UB40.mp4", + "title": "The Way You Do The Things You Do" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Janet Jackson", + "playlist_title": "Love Will Never Do (Without You)", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "251b34a9-44d2-8773-8553-047b7e1da66f", + "path": "z://MP4\\TheKARAOKEChannel\\Love Will Never Do (Without You) in the Style of Janet Jackson with lyrics (no lead vocal).mp4", + "title": "Love Will Never Do (Without You)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Poison", + "playlist_title": "Something To Believe In", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78fefc5e-1ce9-20df-e7ec-70b3fc95b711", + "path": "z://MP4\\KaraokeOnVEVO\\Poison - Something To Believe In.mp4", + "title": "Something To Believe In" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Mariah Carey", + "playlist_title": "Love Takes Time", + "found_song": { + "artist": "Mariah Carey", + "disabled": false, + "favorite": false, + "guid": "351212cb-054f-e1be-c23d-e2a93c6df695", + "path": "z://CDG\\Various\\Mariah Carey - Love Takes Time.mp3", + "title": "Love Takes Time" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Deee-Lite", + "playlist_title": "Groove Is In The Heart", + "found_song": { + "artist": "Deee-Lite", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c9947fed-be89-b209-24bb-e15de90d1150", + "path": "z://MP4\\ZoomKaraokeOfficial\\Deee-Lite - Groove Is In The Heart.mp4", + "title": "Groove Is In The Heart" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Winger", + "playlist_title": "Miles Away", + "found_song": { + "artist": "Winger", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b0b8442-d996-b273-6e79-3a2ab336ca71", + "path": "z://MP4\\KaraokeOnVEVO\\Winger - Miles Away.mp4", + "title": "Miles Away" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "C+C Music Factory", + "playlist_title": "Gonna Make You Sweat", + "found_song": { + "artist": "C+C Music Factory", + "disabled": false, + "favorite": false, + "guid": "98203f13-37df-0c6a-9023-ac84ea2a1f67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gonna Make You Sweat - C+C Music Factory.mp4", + "title": "Gonna Make You Sweat" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Tony Toni Tone", + "playlist_title": "Feels Good", + "found_song": { + "artist": "Tony! Toni! Tone!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fc77353-14b6-c1e1-a746-6547cdbbceed", + "path": "z://MP4\\KaraokeOnVEVO\\Tony Toni Tone - Feels Good.mp4", + "title": "Feels Good" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Cathy Dennis", + "playlist_title": "Just Another Dream", + "found_song": { + "artist": "Cathy Dennis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c73a19ec-d659-e99f-f1be-2b2e290ffa6e", + "path": "z://MP4\\KaraokeOnVEVO\\Cathy Dennis - Just Another Dream.mp4", + "title": "Just Another Dream" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Heart", + "playlist_title": "Stranded", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "a4f68878-b6b2-04f4-82c9-6c86c3848781", + "path": "z://CDG\\Various\\Heart - Stranded.mp3", + "title": "Stranded" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Vanilla Ice", + "playlist_title": "Ice Ice Baby", + "found_song": { + "artist": "Vanilla Ice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13790e7e-e1df-0c18-73b9-ab8afb3f33cc", + "path": "z://MP4\\Sing King Karaoke\\Vanilla Ice - Ice Ice Baby.mp4", + "title": "Ice Ice Baby" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Keith Sweat", + "playlist_title": "I ll Give All My Love To You", + "found_song": { + "artist": "Keith Sweat", + "disabled": false, + "favorite": false, + "guid": "838309b4-f814-6852-5aec-cf023efac09e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I ll Give All My Love To You - Keith Sweat.mp4", + "title": "I ll Give All My Love To You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "INXS", + "playlist_title": "Disappear", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "0e411e68-daed-393b-6afd-8e8b75fa7289", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Disappear - INXS.mp4", + "title": "Disappear" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Don Henley", + "playlist_title": "New York Minute", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e26ca3ad-9f89-fdbe-c0ba-d299cbedc74b", + "path": "z://CDG\\Various\\Don Henley - New York Minute.mp3", + "title": "New York Minute" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Cher", + "playlist_title": "The Shoop Shoop Song (It s In His Kiss)", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ae96369d-b0cf-a310-0795-673f8a6dd273", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Shoop Shoop Song (It s In His Kiss) - Cher.mp4", + "title": "The Shoop Shoop Song (It s In His Kiss)" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Black Crowes", + "playlist_title": "Hard To Handle", + "found_song": { + "artist": "The Black Crowes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af840a87-8f6d-ebb2-f103-53532ea5e605", + "path": "z://MP4\\KaraokeOnVEVO\\The Black Crowes - Hard To Handle.mp4", + "title": "Hard To Handle" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Celine Dion", + "playlist_title": "Where Does My Heart Beat Now", + "found_song": { + "artist": "Celine Dion", + "disabled": false, + "favorite": false, + "guid": "0b2bf51a-d9a8-5d69-47d9-7401c1133a01", + "path": "z://CDG\\Various\\Celine Dion - Where Does My Heart Beat Now.mp3", + "title": "Where Does My Heart Beat Now" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Depeche Mode", + "playlist_title": "World In My Eyes", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71d9f2ad-d5e7-16c8-fe95-b62ed71e0ea2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 851\\Depeche Mode - World In My Eyes - SFMW 851-09.mp3", + "title": "World In My Eyes" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Whitney Houston", + "playlist_title": "All The Man That I Need", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "2f74e069-a0e7-4c1c-c9e5-1c8d22d89cbc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All The Man That I Need - Whitney Houston.mp4", + "title": "All The Man That I Need" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Pebbles", + "playlist_title": "Love Makes Things Happen", + "found_song": { + "artist": "Pebbles & Babyface", + "disabled": false, + "favorite": false, + "guid": "05597459-80e6-33e2-09e0-0896d77372c5", + "path": "z://MP4\\Let's Sing Karaoke\\Pebbles & Babyface - Love Makes Things Happen (Karaoke & Lyrics).mp4", + "title": "Love Makes Things Happen" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "James Ingram", + "playlist_title": "I Don t Have The Heart", + "found_song": { + "artist": "James Ingram", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e5a6ef5-164c-33b6-449a-349ad4d43237", + "path": "z://MP4\\Sing King Karaoke\\James Ingram - I Don t Have The Heart.mp4", + "title": "I Don t Have The Heart" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Iggy Pop With Kate Pierson", + "playlist_title": "Candy", + "found_song": { + "artist": "Iggy Pop With Kate Pierson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f87f199e-20f7-9a3f-fd64-c6f48ae05422", + "path": "z://MP4\\KaraokeOnVEVO\\Iggy Pop With Kate Pierson - Candy.mp4", + "title": "Candy" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Chris Isaak", + "playlist_title": "Wicked Game", + "found_song": { + "artist": "Chris Isaak", + "disabled": false, + "favorite": false, + "guid": "8f5ca710-d98d-e0da-db14-012c7c7297ea", + "path": "z://MP4\\KtvEntertainment\\Chris Isaak - Wicked Game (Karaoke without Vocal).mp4", + "title": "Wicked Game" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Trixter", + "playlist_title": "Give It To Me Good", + "found_song": { + "artist": "Trixter", + "disabled": false, + "favorite": false, + "guid": "9079e6bb-ae71-9036-c044-886ceac3ff1f", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - Trixter - Give It To Me Good (Karaoke).mp4", + "title": "Give It To Me Good" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Styx", + "playlist_title": "Show Me The Way", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "76b5e4bf-8b57-e722-bf19-18649764966a", + "path": "z://CDG\\Various\\Styx - Show Me The Way.mp3", + "title": "Show Me The Way" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Maxi Priest", + "playlist_title": "Just A Little Bit Longer", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc070b88-692a-92a0-1e40-3351ef55c415", + "path": "z://MP4\\ZoomKaraokeOfficial\\Maxi Priest - Just A Little Bit Longer.mp4", + "title": "Just A Little Bit Longer" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Oleta Adams", + "playlist_title": "Get Here", + "found_song": { + "artist": "Oleta Adams", + "disabled": false, + "favorite": false, + "guid": "091c8094-150b-91f9-50d7-61b3fe788e46", + "path": "z://MP4\\Sing King Karaoke\\Oleta Adams - Get Here (Karaoke Version).mp4", + "title": "Get Here" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Billy Joel", + "playlist_title": "And So It Goes", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89e13044-84d2-deb1-eff3-2ad65f2efb29", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - And So It Goes.mp4", + "title": "And So It Goes" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Warrant", + "playlist_title": "Cherry Pie", + "found_song": { + "artist": "Warrant", + "disabled": false, + "favorite": false, + "guid": "4a14271c-2e7b-a663-7e26-09713db0fa4f", + "path": "z://MP4\\Sing King Karaoke\\Warrant - Cherry Pie (Karaoke Version).mp4", + "title": "Cherry Pie" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Righteous Brothers", + "playlist_title": "Unchained Melody", + "found_song": { + "artist": "Righteous Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3308a366-802e-a7fb-7a40-10733fa4c273", + "path": "z://MP4\\Sing King Karaoke\\Righteous Brothers - Unchained Melody.mp4", + "title": "Unchained Melody" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Janet Jackson", + "playlist_title": "Black Cat", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "22d3eb8a-8dee-5998-9c56-8d925e0777ec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 833\\Janet Jackson - Black Cat - SFMW 833 -03.mp3", + "title": "Black Cat" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Phil Collins", + "playlist_title": "Something Happened On The Way To Heaven", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46580e8c-6842-1216-71ca-9375e5626e65", + "path": "z://MP4\\KaraokeOnVEVO\\Phil Collins - Something Happened On The Way To Heaven.mp4", + "title": "Something Happened On The Way To Heaven" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 54, + "playlist_artist": "Soho", + "playlist_title": "Hippychick", + "found_song": { + "artist": "Soho", + "disabled": false, + "favorite": false, + "guid": "51749412-32a6-3304-0897-736eadbb7d50", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 877\\Soho - Hippy Chick - SFMW877 - 06.mp3", + "title": "Hippy Chick" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "AC/DC", + "playlist_title": "Moneytalks", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "d9e7b6cd-416d-a36b-38ea-c3f76291586c", + "path": "z://MP4\\Let's Sing Karaoke\\Ac-Dc - Moneytalks (Karaoke & Lyrics).mp4", + "title": "Moneytalks" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 93, + "playlist_artist": "Paul Simon", + "playlist_title": "The Obvious Child", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "8a5a1cad-2c8f-e8c7-3c56-cdda2599601b", + "path": "z://CDG\\Various\\Paul Simon - Obvious Child.mp3", + "title": "Obvious Child" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "Nelson", + "playlist_title": "(Can t Live Without Your) Love And Affection", + "found_song": { + "artist": "Nelson", + "disabled": false, + "favorite": false, + "guid": "2174d830-407e-e804-6600-31cf763d656b", + "path": "z://CDG\\Various\\Nelson - Can T Live Without Your Love An.mp3", + "title": "Can T Live Without Your Love An" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Stevie B", + "title": "Because I Love You (The Postman Song)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Wilson Phillips", + "title": "Impulsive", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "DNA Featuring Suzanne Vega", + "title": "Tom s Diner", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Ralph Tresvant", + "title": "Sensitivity", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jon Bon Jovi", + "title": "Miracle (From \"Young Guns II\")", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Surface", + "title": "The First Time", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Steve Winwood", + "title": "One And Only Man", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "2 In A Room", + "title": "Wiggle It", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Nelson", + "title": "After The Rain", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Vanilla Ice", + "title": "Play That Funky Music", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Will To Power", + "title": "I m Not In Love", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Outfield", + "title": "For You", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Phil Collins", + "title": "Hang In Long Enough", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Alias", + "title": "More Than Words Can Say", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Elisa Fiorillo", + "title": "On The Way Up", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Gill", + "title": "Fairweather Friend", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Debbie Gibson", + "title": "Anything Is Possible", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Robert Palmer", + "title": "You re Amazing", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Dino", + "title": "Gentle", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Donny Osmond", + "title": "My Love Is A Fire", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Candyman", + "title": "Knockin Boots", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "LL Cool J", + "title": "Around The Way Girl", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Daryl Hall John Oates", + "title": "So Close", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Breathe Featuring David Glasper", + "title": "Does She Love That Man?", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Too Short", + "title": "The Ghetto", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Elton John", + "title": "You Gotta Love Someone", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Warrant", + "title": "I Saw Red", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "M.C. Hammer", + "title": "Pray", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bad Company", + "title": "If You Needed Somebody", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bell Biv Devoe", + "title": "B.B.D. (I Thought It Was Me)?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "George LaMond (Duet With Brenda K. Starr)", + "title": "No Matter What", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "After 7", + "title": "Heat Of The Moment", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Maxi Priest", + "title": "Close To You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Guy", + "title": "I Wanna Get With U", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tony Toni Tone", + "title": "It Never Rains (In Southern California)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Cinderella", + "title": "Shelter Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Black Box", + "title": "I Don t Know Anybody Else", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "After 7", + "title": "Can t Stop", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Joey B. Ellis", + "title": "Go For It! (Heart And Fire)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Jude Cole", + "title": "House Full Of Reasons", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Information Society", + "title": "Think", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Tevin Campbell", + "title": "Round And Round", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Pebbles", + "title": "Giving You The Benefit", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Urban Dance Squad", + "title": "Deeper Shade Of Soul", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "TKA Featuring Michelle Visage", + "title": "Crash (Have Some Fun)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Concrete Blonde", + "title": "Joey", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Pat", + "title": "Use It Up And Wear It Out", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Candyman", + "title": "Melt In Your Mouth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "2nu", + "title": "This Is Ponderous", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "David Cassidy", + "title": "Lyin To Myself", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Al B. Sure!", + "title": "Missunderstanding", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Tracie Spencer", + "title": "This House", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Notorious", + "title": "The Swalk", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Party", + "title": "I Found Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Timmy T.", + "title": "One More Try", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Cheap Trick", + "title": "Wherever Would I Be", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Slaughter", + "title": "Spend My Life", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Special Generation", + "title": "Love Me Just For Me", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 38, + "fuzzy_match_count": 4, + "missing_count": 58, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1989 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Highway 101", + "playlist_title": "Who s Lonely Now", + "found_song": { + "artist": "Highway 101", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d063d77-8486-1553-0917-d32b286d8eae", + "path": "z://MP4\\KaraokeOnVEVO\\Highway 101 - Who s Lonely Now.mp4", + "title": "Who s Lonely Now" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Lorrie Morgan", + "playlist_title": "Out Of Your Shoes", + "found_song": { + "artist": "Lorrie Morgan", + "disabled": false, + "favorite": false, + "guid": "86630e60-6858-3f31-7ee1-5e7f9e5b20ef", + "path": "z://MP4\\KaraokeOnVEVO\\Lorrie Morgan - Out Of Your Shoes (Karaoke).mp4", + "title": "Out Of Your Shoes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Keith Whitley", + "playlist_title": "It Ain t Nothin", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "463ab131-3c82-65b6-1fd3-849e6246d0a1", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - It Ain t Nothin.mp4", + "title": "It Ain t Nothin" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Tanya Tucker", + "playlist_title": "My Arms Stay Open All Night", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8971e0d-81db-a24e-2a2a-0000b7a78136", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - My Arms Stay Open All Night.mp4", + "title": "My Arms Stay Open All Night" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Clint Black", + "playlist_title": "Nobody s Home", + "found_song": { + "artist": "Clint Black", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04e7d09c-155b-490b-3b48-b602609a0381", + "path": "z://MP4\\KaraokeOnVEVO\\Clint Black - Nobody s Home.mp4", + "title": "Nobody s Home" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "A Woman In Love", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9c0f048-2710-8ecc-c088-f50ba68e4d81", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - A Woman In Love.mp4", + "title": "A Woman In Love" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Judds", + "playlist_title": "One Man Woman", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "54853e74-6b41-552a-63cd-80af084d17c8", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - One Man Woman (Karaoke).mp4", + "title": "One Man Woman" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kathy Mattea", + "playlist_title": "Where ve You Been", + "found_song": { + "artist": "Kathy Mattea", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "534dd446-c533-362c-5e75-26e3a873dd80", + "path": "z://MP4\\KaraokeOnVEVO\\Kathy Mattea - Where ve You Been.mp4", + "title": "Where ve You Been" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Alabama", + "playlist_title": "Southern Star", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce2a832e-dc0d-f144-0aac-e073dfd2a840", + "path": "z://MP4\\KaraokeOnVEVO\\Alabama - Southern Star.mp4", + "title": "Southern Star" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Holly Dunn", + "playlist_title": "There Goes My Heart Again", + "found_song": { + "artist": "Holly Dunn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab97c128-e58d-c8eb-7efb-c26891ce2ac5", + "path": "z://MP4\\KaraokeOnVEVO\\Holly Dunn - There Goes My Heart Again.mp4", + "title": "There Goes My Heart Again" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "George Strait", + "playlist_title": "Overnight Success", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "24cd4634-1252-4f6c-a97d-a9154c2a1c1e", + "path": "z://MP4\\KaraokeOnVEVO\\George Strait - Overnight Success.mp4", + "title": "Overnight Success" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "The Charlie Daniels Band", + "playlist_title": "Simple Man", + "found_song": { + "artist": "The Charlie Daniels Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f59da77-18d5-d21a-018f-928cd5679075", + "path": "z://MP4\\KaraokeOnVEVO\\The Charlie Daniels Band - Simple Man.mp4", + "title": "Simple Man" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Shenandoah", + "playlist_title": "Two Dozen Roses", + "found_song": { + "artist": "Shenandoah", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "93afc720-61d0-98b3-76dc-171b538f5865", + "path": "z://MP4\\KaraokeOnVEVO\\Shenandoah - Two Dozen Roses.mp4", + "title": "Two Dozen Roses" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Billy Joe Royal", + "title": "Till I Can t Take It Anymore", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rodney Crowell", + "title": "Many A Long", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Glen Campbell", + "title": "She s Gone, Gone, Gone", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Vern Gosdin", + "title": "That Just About Does It", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Skip Ewing", + "title": "It s You Again", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Willie Nelson", + "title": "There You Are", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Nitty Gritty Dirt Band", + "title": "When It s Gone", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Steve Wariner", + "title": "When I Could Come Home To You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Lionel Cartwright", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "Start All Over Again", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ricky Van Shelton", + "title": "Statue Of A Fool", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Baillie And The Boys", + "title": "I Can t Turn The Tide", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 11, + "fuzzy_match_count": 2, + "missing_count": 12, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1989 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Phil Collins", + "playlist_title": "Another Day In Paradise", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a5d9f17-9d7c-072c-7a96-aa6ab601a7f7", + "path": "z://MP4\\Sing King Karaoke\\Phil Collins - Another Day In Paradise.mp4", + "title": "Another Day In Paradise" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Janet Jackson", + "playlist_title": "Rhythm Nation", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "guid": "f794088a-ebfe-c50d-7d12-4fbd81ff9ba1", + "path": "z://CDG\\Various\\Janet Jackson - Rhythm Nation.mp3", + "title": "Rhythm Nation" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Linda Ronstadt (Featuring Aaron Neville)", + "playlist_title": "Don t Know Much", + "found_song": { + "artist": "Linda Ronstadt (Featuring Aaron Neville)", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "47442c4b-2450-3837-7dbd-e08a9e7f370f", + "path": "z://MP4\\Sing King Karaoke\\Linda Ronstadt (Featuring Aaron Neville) - Don t Know Much.mp4", + "title": "Don t Know Much" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Technotronic", + "playlist_title": "Pump Up The Jam", + "found_song": { + "artist": "Technotronic", + "disabled": false, + "favorite": false, + "guid": "c79f887c-7f69-3a38-eee0-91594df9cc2b", + "path": "z://MP4\\TheKARAOKEChannel\\Technotronic - Pump Up The Jam (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Pump Up The Jam" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Michael Bolton", + "playlist_title": "How Am I Supposed To Live Without You", + "found_song": { + "artist": "Michael Bolton", + "disabled": false, + "favorite": false, + "guid": "fc93b3a0-c1f3-7592-65ca-47c27e8dc00a", + "path": "z://MP4\\Sing King Karaoke\\Michael Bolton - How Am I Supposed To Live Without You (Karaoke Version).mp4", + "title": "How Am I Supposed To Live Without You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Cher", + "playlist_title": "Just Like Jesse James", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "d50c21b2-2272-88f8-c110-036cac8975d4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Jesse James - Cher.mp4", + "title": "Just Like Jesse James" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Billy Joel", + "playlist_title": "We Didn t Start The Fire", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "c43446fe-12a8-0a44-d231-ca4a11416b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Didn t Start the Fire - Billy Joel.mp4", + "title": "We Didn t Start the Fire" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Tom Petty", + "playlist_title": "Free Fallin", + "found_song": { + "artist": "Tom Petty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d79efc4f-76b4-e4b6-4e0d-3ce1d3d36bbd", + "path": "z://MP4\\Sing King Karaoke\\Tom Petty - Free Fallin.mp4", + "title": "Free Fallin" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Tesla", + "playlist_title": "Love Song", + "found_song": { + "artist": "Tesla", + "disabled": false, + "favorite": false, + "guid": "c9ee3818-5bf8-5ff1-60d5-3dc410b49fee", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Tesla - Love Song (Karaoke).mp4", + "title": "Love Song" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rod Stewart", + "playlist_title": "Downtown Train", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dd06a362-8001-5e1c-c853-98efe87f09d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Downtown Train.mp4", + "title": "Downtown Train" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Joe Cocker", + "playlist_title": "When The Night Comes", + "found_song": { + "artist": "Joe Cocker", + "disabled": false, + "favorite": false, + "guid": "26939ee7-7eca-d86a-bc1e-d025e2f83b02", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Night Comes - Joe Cocker.mp4", + "title": "When The Night Comes" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Madonna", + "playlist_title": "Oh Father", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "1e2c4b5e-3fa8-d885-7323-9bd89565d61b", + "path": "z://CDG\\Various\\Madonna - Oh Father.mp3", + "title": "Oh Father" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Milli Vanilli", + "playlist_title": "Blame It On The Rain", + "found_song": { + "artist": "Milli Vanilli", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dd1a04d-fabc-1e4e-cfb0-ffd7855d488c", + "path": "z://MP4\\Sing King Karaoke\\Milli Vanilli - Blame It On The Rain.mp4", + "title": "Blame It On The Rain" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Skid Row", + "playlist_title": "I Remember You", + "found_song": { + "artist": "Skid Row", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c1e41936-39c2-d9a5-e8b6-3e7defb9d60b", + "path": "z://MP4\\KaraokeOnVEVO\\Skid Row - I Remember You.mp4", + "title": "I Remember You" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Aerosmith", + "playlist_title": "Janie s Got A Gun", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "fa2499e1-8f53-eade-5920-2c1d324a18d5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Janie s Got A Gun - Aerosmith.mp4", + "title": "Janie s Got A Gun" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The B-52s", + "playlist_title": "Love Shack", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "bb93d732-a643-63ad-884b-c6d04f56440f", + "path": "z://MP4\\Sing King Karaoke\\The B-52s - Love Shack (Karaoke Version).mp4", + "title": "Love Shack" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Paula Abdul", + "playlist_title": "(It s Just) The Way That You Love Me", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5d7e884e-0b33-dd56-4eda-a6ebf3384852", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - (It s Just) The Way That You Love Me.mp4", + "title": "(It s Just) The Way That You Love Me" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Young MC", + "playlist_title": "Bust A Move", + "found_song": { + "artist": "Young MC", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d444fdc-75f3-1b6a-7544-4f5a1e8973ad", + "path": "z://MP4\\VocalStarKaraoke\\Young MC - Bust A Move.mp4", + "title": "Bust A Move" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bad English", + "playlist_title": "When I See You Smile", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "guid": "b3453c49-94a5-2b17-e340-108f36fa9df1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When I See You Smile - Bad English.mp4", + "title": "When I See You Smile" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Tina Turner", + "playlist_title": "Steamy Windows", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "b4f795f3-3605-bb63-ad7c-5b0ed84fb138", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Steamy Windows - Tina Turner.mp4", + "title": "Steamy Windows" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Roxette", + "playlist_title": "Dangerous", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc1c30a3-9c3d-1f51-8720-d48b1424b885", + "path": "z://MP4\\KaraokeOnVEVO\\Roxette - Dangerous.mp4", + "title": "Dangerous" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Here We Are", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "0f088501-ac14-5ab6-ff4c-0c35813fe135", + "path": "z://MP4\\KaraFun Karaoke\\Here We Are - Gloria Estefan Karaoke Version KaraFun.mp4", + "title": "Here We Are" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Whitesnake", + "playlist_title": "Fool For Your Loving", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef3033ee-c51f-7be1-05c9-432a1a196962", + "path": "z://MP4\\ZoomKaraokeOfficial\\Whitesnake - Fool For Your Loving.mp4", + "title": "Fool For Your Loving" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Richard Marx", + "playlist_title": "Angelia", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7634f49d-0455-731a-a341-4926eab4863c", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Angelia.mp4", + "title": "Angelia" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bad English", + "playlist_title": "Price Of Love", + "found_song": { + "artist": "Bad English", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e60f89e-545c-d4b2-f7c6-ffdce48eff96", + "path": "z://CDG\\SBI\\SBI-03\\SB22764 - Bad English - Price Of Love.mp3", + "title": "Price Of Love" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Tears For Fears", + "playlist_title": "Woman In Chains", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "guid": "8eba7e55-dd32-a261-578f-37ce32d324b6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Woman In Chains - Tears For Fears.mp4", + "title": "Woman In Chains" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Leave A Light On", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "331b436f-b84b-8bf6-3b66-775bbb94096b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leave a Light On - Belinda Carlisle.mp4", + "title": "Leave a Light On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Alice Cooper", + "playlist_title": "Poison", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "guid": "2f86e80a-138e-bd93-a717-17841597cd90", + "path": "z://MP4\\Sing King Karaoke\\Alice Cooper - Poison (Karaoke Version).mp4", + "title": "Poison" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Bonham", + "playlist_title": "Wait For You", + "found_song": { + "artist": "Bonham", + "disabled": false, + "favorite": false, + "guid": "7ae7401b-6477-faa6-8b9e-ad531e7263bb", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Bonham - Wait For You (Karaoke).mp4", + "title": "Wait For You" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Marcia Griffiths", + "playlist_title": "Electric Boogie", + "found_song": { + "artist": "Marcia Griffiths", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0646d863-4b62-0e8f-0daf-a9585b70aba9", + "path": "z://MP4\\KaraokeOnVEVO\\Marcia Griffiths - Electric Boogie.mp4", + "title": "Electric Boogie" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Depeche Mode", + "playlist_title": "Personal Jesus", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "211cd52f-1037-568e-718d-f87ba33e7e0f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Personal Jesus - Depeche Mode.mp4", + "title": "Personal Jesus" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Eric Clapton", + "playlist_title": "Pretending", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "480e9413-17fb-26e6-2d5a-a15bd3f5dd7a", + "path": "z://MP4\\KaraokeOnVEVO\\Eric Clapton - Pretending.mp4", + "title": "Pretending" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Roxette", + "playlist_title": "Listen To Your Heart", + "found_song": { + "artist": "Roxette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5081228e-459a-d3d2-06bb-83638ee05409", + "path": "z://MP4\\Sing King Karaoke\\Roxette - Listen To Your Heart.mp4", + "title": "Listen To Your Heart" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Smithereens", + "playlist_title": "A Girl Like You", + "found_song": { + "artist": "The Smithereens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c47f095f-0d19-cef8-799c-1197323fd0a6", + "path": "z://MP4\\KaraokeOnVEVO\\The Smithereens - A Girl Like You.mp4", + "title": "A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Gloria Estefan", + "playlist_title": "Get On Your Feet", + "found_song": { + "artist": "Gloria Estefan", + "disabled": false, + "favorite": false, + "guid": "f3a0c8df-3108-e1b2-006f-071f07ea2623", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Get On Your Feet - Gloria Estefan.mp4", + "title": "Get On Your Feet" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "The Cure", + "playlist_title": "Lullaby", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "6701acd1-d76a-7a37-c8b9-bfb6157baf8a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lullaby - The Cure.mp4", + "title": "Lullaby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Alannah Myles", + "playlist_title": "Black Velvet", + "found_song": { + "artist": "Alannah Myles", + "disabled": false, + "favorite": false, + "guid": "d5f74be8-234e-fa25-98a0-4054502366fd", + "path": "z://MP4\\Sing King Karaoke\\Alannah Myles - Black Velvet (Karaoke Version).mp4", + "title": "Black Velvet" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Janet Jackson", + "playlist_title": "Miss You Much", + "found_song": { + "artist": "Janet Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5dbbfe97-3881-a1c8-445d-ae3e149b7af1", + "path": "z://MP4\\KaraokeOnVEVO\\Janet Jackson - Miss You Much.mp4", + "title": "Miss You Much" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Cover Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "060143be-3b5e-38b7-4356-e6ac621c2b42", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - Cover Girl.mp4", + "title": "Cover Girl" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 19, + "playlist_artist": "Bon Jovi", + "playlist_title": "Living In Sin", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "cd295148-5c41-0ba3-8dfa-eb16dffb1142", + "path": "z://CDG\\Various\\Bon Jovi - Living In The Sun.mp3", + "title": "Living In The Sun" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "The 2 Live Crew", + "playlist_title": "Me So Horny", + "found_song": { + "artist": "2 Live Crew", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4b11a2-6ec2-45da-6e74-7e4db71e8aff", + "path": "z://CDG\\Various\\2 Live Crew - Me So Horny.mp3", + "title": "Me So Horny" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Luther Vandross", + "playlist_title": "Here And Now", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "56e48185-07a1-b089-19b3-0ccfafde3224", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here and Now - Luther Vandross.mp4", + "title": "Here and Now" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "The B-52 s", + "playlist_title": "Roam", + "found_song": { + "artist": "The B-52s", + "disabled": false, + "favorite": false, + "guid": "9fa5cf7d-07c5-2a74-05d3-b45859af788c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Roam - The B-52 s.mp4", + "title": "Roam" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 5, + "artist": "Taylor Dayne", + "title": "With Every Beat Of My Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "New Kids On The Block", + "title": "This One s For The Children", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Jody Watley", + "title": "Everything", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Soul II Soul", + "title": "Back To Life", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Jive Bunny", + "title": "Swing The Mood", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lou Gramm", + "title": "Just Between You And Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Seduction", + "title": "Two To Make It Right", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Rolling Stones", + "title": "Rock And A Hard Place", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Quincy Jones Featuring Ray Charles", + "title": "I ll Be Good To You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Babyface", + "title": "Tender Lover", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Eddie Money", + "title": "Peace In Our Time", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chicago", + "title": "What Kind Of Man Would I Be?", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Kix", + "title": "Don t Close Your Eyes", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Expose", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Paula Abdul (Duet With The Wild Pair)", + "title": "Opposites Attract", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Michael Damian", + "title": "Was It Nothing At All", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Young MC", + "title": "Principal s Office", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Motley Crue", + "title": "Kickstart My Heart", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Shana", + "title": "I Want You", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Sybil", + "title": "Don t Make Me Over", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Poco", + "title": "Nothin To Hide", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Cover Girls", + "title": "We Can t Go Wrong", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Don Henley", + "title": "The Last Worthless Evening", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Michel le", + "title": "No More Lies", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Milli Vanilli", + "title": "All Or Nothing", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jaya", + "title": "If You Leave Me Now", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Fiona (Duet With Kip Winger)", + "title": "Everything You Do (You re Sexing Me)", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Paul Carrack", + "title": "I Live By The Groove", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "D-Mob With Cathy Dennis", + "title": "C Mon And Get My Love", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "SaFire", + "title": "I Will Survive (From \"She-Devil\")", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Prince (With Sheena Easton)", + "title": "The Arms Of Orion", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jermaine Jackson", + "title": "Don t Take It Personal", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Kevin Paige", + "title": "Don t Shut Me Out", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Great White", + "title": "The Angel Song", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Pajama Party", + "title": "Over And Over", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Kenny G", + "title": "Going Home", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Neneh Cherry", + "title": "Heart", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dino", + "title": "Never 2 Much Of U", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Christopher Max", + "title": "Serious Kinda Girl", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "New Kids On The Block", + "title": "Didn t I (Blow Your Mind)", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Brown", + "title": "Rock Wit cha", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Warrant", + "title": "Sometimes She Cries", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kiss", + "title": "Hide Your Heart", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Loverboy", + "title": "Too Hot", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Michael Penn", + "title": "No Myth", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Diving For Pearls", + "title": "Gimme Your Good Lovin", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lil Louis", + "title": "French Kiss", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Abstrac", + "title": "Right And Hype", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Michael Morales", + "title": "I Don t Know", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Stevie B", + "title": "Girl I Am Searching For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Starship", + "title": "I Didn t Mean To Stay All Night", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Sharon Bryant", + "title": "Foolish Heart", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Christopher Williams", + "title": "Talk To Myself", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "After 7", + "title": "Heat Of The Moment", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Hooters", + "title": "500 Miles", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Saraya", + "title": "Back To The Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chunky A", + "title": "Owwww!", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 4, + "missing_count": 57, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1988 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Keith Whitley", + "playlist_title": "When You Say Nothing At All", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3cce4a7-dc68-ff72-deb2-70e2a7dad4e4", + "path": "z://MP4\\KaraokeOnVEVO\\Keith Whitley - When You Say Nothing At All.mp4", + "title": "When You Say Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Hold Me", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07c9069a-e436-f589-f863-663ce2ef2dc6", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Hold Me.mp4", + "title": "Hold Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Judds", + "playlist_title": "Change Of Heart", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ac5b018-10b8-6ad6-254e-ad2e13d8c878", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Change Of Heart.mp4", + "title": "Change Of Heart" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Patty Loveless", + "playlist_title": "Blue Side Of Town", + "found_song": { + "artist": "Patty Loveless", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "abe31cb1-f020-7473-4ae0-45348990ab77", + "path": "z://MP4\\KaraokeOnVEVO\\Patty Loveless - Blue Side Of Town.mp4", + "title": "Blue Side Of Town" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Alabama", + "playlist_title": "Song Of The South", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1040781-3136-7881-173b-9b0caa59848c", + "path": "z://CDG\\Various\\Alabama - Song Of The South.mp3", + "title": "Song Of The South" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Dwight Yoakam", + "playlist_title": "I Sang Dixie", + "found_song": { + "artist": "Dwight Yoakam", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7fb88921-88ab-22d1-7a41-ccd3e5740b69", + "path": "z://MP4\\KaraokeOnVEVO\\Dwight Yoakam - I Sang Dixie.mp4", + "title": "I Sang Dixie" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Randy Travis", + "playlist_title": "Deeper Than The Holler", + "found_song": { + "artist": "Randy Travis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f1f007dc-512c-3795-a116-b6cb206c07a6", + "path": "z://MP4\\KaraokeOnVEVO\\Randy Travis - Deeper Than The Holler.mp4", + "title": "Deeper Than The Holler" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Paul Overstreet", + "title": "Love Helps Those", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Shenandoah", + "title": "Mama Knows", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Rodney Crowell", + "title": "She s Crazy For Leaving", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Eddie Rabbitt", + "title": "We Must Be Doin Somethin Right", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Baillie And The Boys", + "title": "Long Shot", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Restless Heart", + "title": "A Tender Lie", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Highway 101", + "title": "All The Reasons Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Steve Wariner", + "title": "Hold On (A Little Longer)", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Statler Brothers", + "title": "Let s Get Started If We re Gonna Break My Heart", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Skip Ewing", + "title": "Burnin A Hole In My Heart", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Earl Thomas Conley", + "title": "What I d Say", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Hank Williams Jr.", + "title": "Early In The Morning And Late At Night", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Dan Seals", + "title": "Big Wheels In The Moonlight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Kathy Mattea", + "title": "Life As We Knew It", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Shooters", + "title": "Borderline", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Forester Sisters", + "title": "Sincerely", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Holly Dunn", + "title": "(It s Always Gonna Be) Someday", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gene Watson", + "title": "Don t Waste It On The Blues", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 1, + "missing_count": 18, + "needs_manual_review": 1 + } + }, + { + "playlist_title": "1988 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Poison", + "playlist_title": "Every Rose Has Its Thorn", + "found_song": { + "artist": "Poison", + "disabled": false, + "favorite": false, + "guid": "843a019e-53b2-390a-1bd1-5ee451844337", + "path": "z://MP4\\Sing King Karaoke\\Poison - Every Rose Has Its Thorn (Karaoke Version).mp4", + "title": "Every Rose Has Its Thorn" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Brown", + "playlist_title": "My Prerogative", + "found_song": { + "artist": "Bobby Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48d083f6-39cd-484f-9108-7b78209ce0ca", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Brown - My Prerogative.mp4", + "title": "My Prerogative" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chicago", + "playlist_title": "Look Away", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "7966ad8e-9750-e67f-9ebd-badaeb3483fc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Look Away - Chicago.mp4", + "title": "Look Away" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Anita Baker", + "playlist_title": "Giving You The Best That I Got", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "f19d0c5f-df99-5be9-7715-58fa5120f3ee", + "path": "z://MP4\\Let's Sing Karaoke\\Baker, Anita - Giving You The Best That I Got (Karaoke & Lyrics).mp4", + "title": "Giving You The Best That I Got" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boy Meets Girl", + "playlist_title": "Waiting For A Star To Fall", + "found_song": { + "artist": "Boy Meets Girl", + "disabled": false, + "favorite": false, + "guid": "49f214c9-ab7d-5374-1979-a81b53015074", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting for a Star to Fall - Boy Meets Girl.mp4", + "title": "Waiting for a Star to Fall" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Phil Collins", + "playlist_title": "Two Hearts", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74ec3fcc-9629-d8e7-c7d1-413c98138f08", + "path": "z://MP4\\ZoomKaraokeOfficial\\Phil Collins - Two Hearts.mp4", + "title": "Two Hearts" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Guns N Roses", + "playlist_title": "Welcome To The Jungle", + "found_song": { + "artist": "Guns N' Roses", + "disabled": false, + "favorite": false, + "guid": "3be4e2af-c5c5-8662-730f-7ffecc5f7b09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Welcome To The Jungle - Guns N Roses.mp4", + "title": "Welcome To The Jungle" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Eddie Money", + "playlist_title": "Walk On Water", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "guid": "4028b71e-9ecb-b390-ba33-50747506db39", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On Water - Eddie Money.mp4", + "title": "Walk On Water" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Don t Rush Me", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c8bc07eb-7cc4-cf82-4d40-77981fa572bb", + "path": "z://MP4\\KaraokeOnVEVO\\Taylor Dayne - Don t Rush Me.mp4", + "title": "Don t Rush Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Michael Jackson", + "playlist_title": "Smooth Criminal", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "1588a558-9582-4b5f-b8d3-fb21cfb12e43", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smooth Criminal - Michael Jackson.mp4", + "title": "Smooth Criminal" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Duran Duran", + "playlist_title": "I Don t Want Your Love", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "5384c5fb-67fe-4599-40f6-89f0f6a1cae6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - I Don't Want Your Love - SFG004 - 15.mp3", + "title": "I Don't Want Your Love" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Breathe", + "playlist_title": "How Can I Fall?", + "found_song": { + "artist": "Breathe", + "disabled": false, + "favorite": false, + "guid": "d4680b88-5c46-9f72-27a3-5b6bdd54b584", + "path": "z://MP4\\Let's Sing Karaoke\\Breathe - How Can I Fall (Karaoke & Lyrics).mp4", + "title": "How Can I Fall" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "When In Rome", + "playlist_title": "The Promise", + "found_song": { + "artist": "When In Rome", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06e11ff9-101e-e7aa-160d-93da5dbae664", + "path": "z://MP4\\KaraokeOnVEVO\\When In Rome - The Promise.mp4", + "title": "The Promise" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Annie Lennox", + "playlist_title": "Put A Little Love In Your Heart", + "found_song": { + "artist": "Annie Lennox", + "disabled": false, + "favorite": false, + "guid": "2ed6cc1d-82b9-ace3-3e38-8f7262a194d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Put A Little Love In Your Heart - Annie Lennox.mp4", + "title": "Put A Little Love In Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Robert Palmer", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb8983aa-e05c-2da8-30de-023f32314b6e", + "path": "z://MP4\\KaraokeOnVEVO\\Robert Palmer - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Tiffany", + "playlist_title": "All This Time", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "350e6960-7760-7411-54e8-de5b965eb0c5", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - All This Time (Karaoke Version).mp4", + "title": "All This Time" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "White Lion", + "playlist_title": "When The Children Cry", + "found_song": { + "artist": "White Lion", + "disabled": false, + "favorite": false, + "guid": "13d46af3-ff8a-5a08-7786-a5c8f85f0929", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke When The Children Cry - White Lion.mp4", + "title": "When The Children Cry" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bon Jovi", + "playlist_title": "Born To Be My Baby", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "d652d0f8-35dd-c6b1-e949-7f3e5ccbfdfe", + "path": "z://CDG\\Various\\Bon Jovi - Born To Be My Baby.mp3", + "title": "Born To Be My Baby" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Steve Winwood", + "playlist_title": "Holding On", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "guid": "69598642-9d7d-79d9-a1d8-b9ce3fcc1ccf", + "path": "z://MP4\\KaraokeOnVEVO\\Steve Winwood - Holding On (Karaoke).mp4", + "title": "Holding On" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Maxi Priest", + "playlist_title": "Wild World", + "found_song": { + "artist": "Maxi Priest", + "disabled": false, + "favorite": false, + "guid": "2292f122-a7ae-f988-cd82-3870eeba2871", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wild World - Maxi Priest.mp4", + "title": "Wild World" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Samantha Fox", + "playlist_title": "I Wanna Have Some Fun", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "guid": "cf73cf9a-69fa-1898-3486-42800b78a79b", + "path": "z://CDG\\Various\\Samantha Fox - I Wanna Have Some Fun.mp3", + "title": "I Wanna Have Some Fun" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Paula Abdul", + "playlist_title": "Straight Up", + "found_song": { + "artist": "Paula Abdul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99bdbaff-639d-96c3-3d9f-b9fb67a4fe4b", + "path": "z://MP4\\KaraokeOnVEVO\\Paula Abdul - Straight Up.mp4", + "title": "Straight Up" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "U2", + "playlist_title": "Desire", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cdac18f-d5e4-bdc1-7ccc-40d0834fe1c7", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Desire.mp4", + "title": "Desire" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Tone-Loc", + "playlist_title": "Wild Thing", + "found_song": { + "artist": "Tone Loc", + "disabled": false, + "favorite": false, + "guid": "44bbe03b-643b-ed9b-c5d2-c56ed259e20b", + "path": "z://MP4\\Let's Sing Karaoke\\Tone Loc - Wild Thing (Karaoke & Lyrics).mp4", + "title": "Wild Thing" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Bon Jovi", + "playlist_title": "Bad Medicine", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "732b4b3f-b868-a553-c4e3-17b10ecee80c", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Bad Medicine (Karaoke Version).mp4", + "title": "Bad Medicine" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Rick Astley", + "playlist_title": "She Wants To Dance With Me", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf93a099-30de-dc5a-e96c-5b9ccda23ef6", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Astley - She Wants To Dance With Me.mp4", + "title": "She Wants To Dance With Me" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Edie Brickell", + "playlist_title": "What I Am", + "found_song": { + "artist": "Edie Brickell", + "disabled": false, + "favorite": false, + "guid": "013bd844-ef0e-d927-7fd1-b348fb6e4c57", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What I Am - Edie Brickell.mp4", + "title": "What I Am" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "New Kids On The Block", + "playlist_title": "You Got It (The Right Stuff)", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17b2d73f-f93b-2c12-4bf2-a069122ac1c3", + "path": "z://MP4\\KaraokeOnVEVO\\New Kids On The Block - You Got It (The Right Stuff.mp4", + "title": "You Got It (The Right Stuff)" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Tracy Chapman", + "playlist_title": "Baby Can I Hold You", + "found_song": { + "artist": "Tracy Chapman", + "disabled": false, + "favorite": false, + "guid": "f6d684e6-c96d-0cd9-2bb8-21c4fe1fabf0", + "path": "z://MP4\\Sing King Karaoke\\Tracy Chapman - Baby Can I Hold You (Karaoke Version).mp4", + "title": "Baby Can I Hold You" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Kylie Minogue", + "playlist_title": "The Loco-Motion", + "found_song": { + "artist": "Kylie Minogue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed27ee4a-1f84-0a6b-612f-bc4173100836", + "path": "z://MP4\\Sing King Karaoke\\Kylie Minogue - The Loco Motion.mp4", + "title": "The Loco Motion" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "U2", + "playlist_title": "Angel Of Harlem", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3ef9260e-8305-8fdb-c94e-321a3d1a49c4", + "path": "z://MP4\\VocalStarKaraoke\\U2 - Angel Of Harlem.mp4", + "title": "Angel Of Harlem" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Erasure", + "playlist_title": "A Little Respect", + "found_song": { + "artist": "Erasure", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8034434b-38d9-0f24-b237-bf8945c4a573", + "path": "z://CDG\\Various\\Erasure - A Little Respect.mp3", + "title": "A Little Respect" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Phil Collins", + "playlist_title": "Groovy Kind Of Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "99763a6a-8799-5364-6750-c3ac0737ff48", + "path": "z://MP4\\Let's Sing Karaoke\\Collins, Phil - Groovy Kind Of Love (Karaoke & Lyrics).mp4", + "title": "Groovy Kind Of Love" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "As Long As You Follow", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41f38a9e-247b-f36c-8e1a-de8a0131c183", + "path": "z://MP4\\KaraokeOnVEVO\\Fleetwood Mac - As Long As You Follow.mp4", + "title": "As Long As You Follow" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "George Michael", + "playlist_title": "Kissing A Fool", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "d570b4d7-77c3-f106-0825-d52d22dbd874", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kissing a Fool - George Michael.mp4", + "title": "Kissing a Fool" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rod Stewart", + "playlist_title": "My Heart Can t Tell You No", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5a0ddb9-f89e-0d5d-4e80-a40aae620105", + "path": "z://MP4\\KaraokeOnVEVO\\Rod Stewart - My Heart Can t Tell You No.mp4", + "title": "My Heart Can t Tell You No" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Alphaville", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c37bf32-76ae-e13a-3691-8e5732002f2c", + "path": "z://MP4\\Sing King Karaoke\\Alphaville - Forever Young.mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "UB40", + "playlist_title": "Red Red Wine", + "found_song": { + "artist": "UB40", + "disabled": false, + "favorite": false, + "guid": "25c549fb-8a28-8530-4142-8f6479539bb6", + "path": "z://MP4\\Sing King Karaoke\\UB40 - Red Red Wine (Karaoke Version) (2).mp4", + "title": "Red Red Wine" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Rod Stewart", + "playlist_title": "Forever Young", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "aa97b8b4-2f2f-030c-1611-e35cd9f34d7d", + "path": "z://MP4\\Stingray Karaoke\\Rod Stewart - Forever Young (Karaoke Version).mp4", + "title": "Forever Young" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Mike", + "playlist_title": "Nobody s Perfect", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ccab1e2-09fa-6510-54b4-7d005afb09b3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Nobodys Perfect.mp4", + "title": "Nobody's Perfect" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "INXS", + "playlist_title": "Never Tear Us Apart", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "4a8eaec9-5ec2-22ef-cc5d-b3658fcf2300", + "path": "z://MP4\\Sing King Karaoke\\INXS - Never Tear Us Apart (Karaoke Version).mp4", + "title": "Never Tear Us Apart" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Duran Duran", + "playlist_title": "All She Wants Is", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "2864f66e-fb8f-3f3c-c6c2-714e2d5d4408", + "path": "z://MP4\\KaraokeOnVEVO\\Duran Duran - All She Wants Is (Karaoke).mp4", + "title": "All She Wants Is" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Fairground Attraction", + "playlist_title": "Perfect", + "found_song": { + "artist": "Fairground Attraction", + "disabled": false, + "favorite": false, + "guid": "06772cdc-41e0-bb6d-6367-104651cfef0e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Perfect - Fairground Attraction.mp4", + "title": "Perfect" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Def Leppard", + "playlist_title": "Love Bites", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6ab8aed-74ab-b82a-042f-f583966a2d67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Def Leppard - Love Bites.mp4", + "title": "Love Bites" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "New Kids On The Block", + "playlist_title": "Please Don t Go Girl", + "found_song": { + "artist": "New Kids on the Block", + "disabled": false, + "favorite": false, + "guid": "c87d7bb4-a751-7ead-98fb-7a4aa0ae26a6", + "path": "z://MP4\\TheKARAOKEChannel\\Please Don t Go Girl in the Style of New Kids on the Block with lyrics (no lead vocal).mp4", + "title": "Please Don t Go Girl" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "L Trimm", + "playlist_title": "Cars With The Boom", + "found_song": { + "artist": "L'Trimm", + "disabled": false, + "favorite": false, + "guid": "1cafd931-7216-c491-af44-9d98477b9eda", + "path": "z://CDG\\Various\\L'Trimm - Cars With The Boom.mp3", + "title": "Cars With The Boom" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Whitney Houston", + "playlist_title": "One Moment In Time", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "d3b1affb-7cab-f284-c2d7-650f854f2892", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - One Moment In Time (Karaoke Version).mp4", + "title": "One Moment In Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Bangles", + "playlist_title": "In Your Room", + "found_song": { + "artist": "The Bangles", + "disabled": false, + "favorite": false, + "guid": "90aa7021-8320-a4b9-cd02-82a810603d8d", + "path": "z://MP4\\Let's Sing Karaoke\\Bangles, The - In Your Room (Karaoke & Lyrics).mp4", + "title": "In Your Room" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "Will To Power", + "playlist_title": "Baby, I Love Your Way/Freebird Medley", + "found_song": { + "artist": "Will To Power", + "disabled": false, + "favorite": false, + "guid": "02401d3b-f5c0-a23c-0cbd-428d56dfa273", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF006\\Will To Power - Baby I Love Your Wayfreebird Medl - SF006 - 13.mp3", + "title": "Baby I Love Your Wayfreebird Medl" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Traveling Wilburys", + "playlist_title": "Handle With Care", + "found_song": { + "artist": "Travelling Wilburys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28a99278-b83d-51b6-4eaf-40748a5e6dae", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Travelling Wilburys - Handle With Care - SFMW 876 -14.mp3", + "title": "Handle With Care" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Till I Loved You", + "found_song": { + "artist": "Barbra Streisand ft. Don Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af2f90d5-ca04-6a37-1c7b-d8c0df35f753", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barbra Streisand feat Don Johnson - Till I Loved You.mp4", + "title": "Till I Loved You" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 12, + "artist": "Def Leppard", + "title": "Armageddon It", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Boys Club", + "title": "I Remember Holding You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kenny G", + "title": "Silhouette", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Van Halen", + "title": "Finish What Ya Started", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Was (Not Was)", + "title": "Spy In The House Of Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Karyn White", + "title": "The Way You Love Me", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sheriff", + "title": "When I m With You", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Joan Jett And The Blackhearts", + "title": "Little Liar", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Cheryl \"Pepsii\" Riley", + "title": "Thanks For My Child", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Cheap Trick", + "title": "Ghost Town", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sheena Easton", + "title": "The Lover In Me", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Beach Boys", + "title": "Kokomo (From The \"Cocktail\" Soundtrack)", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Escape Club", + "title": "Wild, Wild West", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Art Of Noise Featuring Tom Jones", + "title": "Kiss", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Information Society", + "title": "Walking Away", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Robbie Nevil", + "title": "Back On Holiday", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Boys", + "title": "Dial My Heart", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ivan Neville", + "title": "Not Just Another Girl", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Judson Spence", + "title": "Yeah, Yeah, Yeah", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Cinderella", + "title": "Don t Know What You Got (Till It s Gone)", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Escape Club", + "title": "Shake For The Sheik", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Eighth Wonder", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kylie Minogue", + "title": "It s No Secret", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Siouxsie and The Banshees", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Georgia Satellites", + "title": "Hippy Hippy Shake (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tracie Spencer", + "title": "Symptoms Of True Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Basia", + "title": "New Day For You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "D.J. Jazzy Jeff", + "title": "Girls Ain t Nothing But Trouble", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Pet Shop Boys", + "title": "Domino Dancing", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Vixen", + "title": "Edge Of A Broken Heart", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bobby McFerrin", + "title": "Don t Worry, Be Happy (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Randy Newman", + "title": "It s Money That Matters", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Giant Steps", + "title": "Another Lover", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Michelle Shocked", + "title": "Anchorage", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Conwell And The Young Rumblers", + "title": "If We Never Meet Again", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Ann Wilson", + "title": "Surrender To Me (From \"Tequila Sunrise\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Starship", + "title": "Wild Again (From \"Cocktail\")", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Al B. Sure!", + "title": "Killing Me Softly", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Timelords", + "title": "Doctorin The Tardis", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Kon Kan", + "title": "I Beg Your Pardon", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bobby Brown", + "title": "Don t Be Cruel", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "SaFire", + "title": "Boy, I ve Been Told", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Martika", + "title": "More Than You Know", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "J.J. Fad", + "title": "Is It Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Taylor Dayne", + "title": "I ll Always Love You", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Sir Mix-A-Lot", + "title": "Posse On Broadway", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Luther Vandross", + "title": "Any Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Camouflage", + "title": "The Great Commandment", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Information Society", + "title": "What s On Your Mind (Pure Energy)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 47, + "fuzzy_match_count": 4, + "missing_count": 49, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1987 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Kenny Rogers", + "playlist_title": "I Prefer The Moonlight", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "3a29e174-a6d5-46ac-cd31-4e83595fa1f5", + "path": "z://MP4\\Stingray Karaoke\\I Prefer The Moonlight Kenny Rogers Karaoke with Lyrics.mp4", + "title": "I Prefer The Moonlight" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dan Seals", + "playlist_title": "One Friend", + "found_song": { + "artist": "Dan Seals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86b2c164-6056-c31a-be29-f1d090ce2cd2", + "path": "z://MP4\\Sing King Karaoke\\Dan Seals - One Friend.mp4", + "title": "One Friend" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "K.T. Oslin", + "playlist_title": "Do Ya'", + "found_song": { + "artist": "K.T. Oslin", + "disabled": false, + "favorite": false, + "guid": "1140d2e7-9623-4a69-4de6-c46ff8683344", + "path": "z://MP4\\KaraokeOnVEVO\\K.T. Oslin - Do Ya (Karaoke).mp4", + "title": "Do Ya" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Restless Heart", + "playlist_title": "Wheels", + "found_song": { + "artist": "Restless Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9727a829-9531-aee9-5360-85593796f1b7", + "path": "z://MP4\\KaraokeOnVEVO\\Restless Heart - Wheels.mp4", + "title": "Wheels" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Rosanne Cash", + "playlist_title": "Tennessee Flat Top Box", + "found_song": { + "artist": "Rosanne Cash", + "disabled": false, + "favorite": false, + "guid": "529b5b5c-b547-8afe-a1a5-e6fd27856ac9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Tennessee Flat Top Box - Rosanne Cash.mp4", + "title": "Tennessee Flat Top Box" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Merle Haggard", + "playlist_title": "Twinkle, Twinkle Lucky Star", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f4a3ad-4ec1-43d9-6345-6a14e83f39a5", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Twinkle, Twinkle Lucky Star.mp4", + "title": "Twinkle, Twinkle Lucky Star" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Highway 101", + "title": "Somewhere Tonight", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Exile", + "title": "I Can't Get Close Enough", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Hank Williams Jr.", + "title": "Heaven Can't Be Found", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Ronnie Milsap", + "title": "Where Do The Nights Go", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Kathy Mattea", + "title": "Goin' Gone", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Glen Campbell", + "title": "Still Within The Sound Of My Voice", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Michael Johnson", + "title": "Crying Shame", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The O'Kanes", + "title": "Just Lovin' You", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Lyle Lovett", + "title": "Give Back My Heart", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Joe Royal", + "title": "I'll Pin A Note On Your Pillow", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle", + "title": "Only Love Can Save Me Now", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Don Williams", + "title": "I Wouldn't Be A Man", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Desert Rose Band", + "title": "One Step Forward", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ricky Skaggs", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Forester Sisters", + "title": "Lyin' In His Arms Again", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "T.G. Sheppard", + "title": "One For The Money", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Waylon Jennings", + "title": "Rough And Rowdy Days", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Foster & Lloyd", + "title": "Sure Thing", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dwight Yoakam", + "title": "Please Please Baby", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1987 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "George Michael", + "playlist_title": "Faith", + "found_song": { + "artist": "George Michael", + "disabled": false, + "favorite": false, + "guid": "42a06cdd-53a7-bfb6-2d83-be4381fd6c0a", + "path": "z://MP4\\Sing King Karaoke\\George Michael - Faith (Karaoke Version).mp4", + "title": "Faith" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Whitney Houston", + "playlist_title": "So Emotional", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "446228c5-28be-4b1d-6c04-d584b722a52d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke So Emotional - Whitney Houston.mp4", + "title": "So Emotional" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Whitesnake", + "playlist_title": "Is This Love", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "a31763aa-607c-1e58-0472-b399d372e48f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Is This Love - Whitesnake.mp4", + "title": "Is This Love" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Harrison", + "playlist_title": "Got My Mind Set On You", + "found_song": { + "artist": "George Harrison", + "disabled": false, + "favorite": false, + "guid": "872b0858-3437-3351-aaf3-e6709c16244a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Got My Mind Set On You - George Harrison.mp4", + "title": "Got My Mind Set On You" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Debbie Gibson", + "playlist_title": "Shake Your Love", + "found_song": { + "artist": "Debbie Gibson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8263e56c-9328-b627-d8ce-7f608ff5d046", + "path": "z://MP4\\KaraokeOnVEVO\\Debbie Gibson - Shake Your Love.mp4", + "title": "Shake Your Love" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Jody Watley", + "playlist_title": "Don't You Want Me", + "found_song": { + "artist": "Jody Watley", + "disabled": false, + "favorite": false, + "guid": "603e1140-4f15-0b09-5cef-6d4bd9727d82", + "path": "z://CDG\\Various\\Jody Watley - Don't You Want Me.mp3", + "title": "Don't You Want Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Michael Jackson", + "playlist_title": "The Way You Make Me Feel", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "d2aaf344-5359-7b0a-5bdc-e972a01bd0ca", + "path": "z://MP4\\Sing King Karaoke\\Michael Jackson - The Way You Make Me Feel (Karaoke Version).mp4", + "title": "The Way You Make Me Feel" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "John Mellencamp", + "playlist_title": "Cherry Bomb", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "ea00035f-fa54-4434-b237-e30f08e6fded", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cherry Bomb - John Mellencamp.mp4", + "title": "Cherry Bomb" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "INXS", + "playlist_title": "Need You Tonight", + "found_song": { + "artist": "INXS", + "disabled": false, + "favorite": false, + "guid": "9901bafd-a18c-9628-7b24-6b57c58b135a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Need You Tonight - INXS.mp4", + "title": "Need You Tonight" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Steve Winwood", + "playlist_title": "Valerie", + "found_song": { + "artist": "Steve Winwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60719277-a695-f172-5104-a2cf883fd31a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Steve Winwood - Valerie.mp4", + "title": "Valerie" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Taylor Dayne", + "playlist_title": "Tell It To My Heart", + "found_song": { + "artist": "Taylor Dayne", + "disabled": false, + "favorite": false, + "guid": "500436af-78fd-c7a3-9890-4f0ea421350a", + "path": "z://MP4\\Sing King Karaoke\\Taylor Dayne - Tell It To My Heart (Karaoke Version).mp4", + "title": "Tell It To My Heart" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Elton John", + "playlist_title": "Candle In The Wind", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "f8d39005-d27b-c2e9-2c05-f5ce9f021581", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Candle In The Wind - Elton John.mp4", + "title": "Candle In The Wind" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Aerosmith", + "playlist_title": "Dude (Looks Like A Lady)", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "04b60bf2-2d50-db44-fcc1-41687e0a7da5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dude (Looks Like A Lady) - Aerosmith.mp4", + "title": "Dude (Looks Like A Lady)" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Tiffany", + "playlist_title": "Could've Been", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "1b8ece7d-ebd9-c8e3-729e-e0978b56a1cb", + "path": "z://MP4\\KaraokeOnVEVO\\Tiffany - Could've Been (Karaoke).mp4", + "title": "Could've Been" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Belinda Carlisle", + "playlist_title": "Heaven Is A Place On Earth", + "found_song": { + "artist": "Belinda Carlisle", + "disabled": false, + "favorite": false, + "guid": "6c3c8d9a-0a82-1286-8f4c-4025abb780d5", + "path": "z://MP4\\Sing King Karaoke\\Belinda Carlisle - Heaven Is A Place On Earth (Karaoke Version).mp4", + "title": "Heaven Is A Place On Earth" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Def Leppard", + "playlist_title": "Animal", + "found_song": { + "artist": "Def Leppard", + "disabled": false, + "favorite": false, + "guid": "81f094b5-7c83-e4fa-8bf4-d16d2eb1dd77", + "path": "z://MP4\\KaraokeOnVEVO\\Def Leppard - Animal (Karaoke).mp4", + "title": "Animal" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Expose", + "playlist_title": "Seasons Change", + "found_song": { + "artist": "Expose'", + "disabled": false, + "favorite": false, + "guid": "208c8eca-6261-f1de-3830-369260024379", + "path": "z://MP4\\Let's Sing Karaoke\\Expose' - Seasons Change (Karaoke & Lyrics).mp4", + "title": "Seasons Change" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Icehouse", + "playlist_title": "Crazy", + "found_song": { + "artist": "icehouse", + "disabled": false, + "favorite": false, + "guid": "0b8a6974-54c8-c142-35c2-f20831236821", + "path": "z://MP4\\KaraokeOnVEVO\\icehouse - Crazy (Karaoke).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Richard Marx", + "playlist_title": "Should've Known Better", + "found_song": { + "artist": "Richard Marx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ca6240d-b430-ff58-46f3-73ca8b2e5ba1", + "path": "z://MP4\\KaraokeOnVEVO\\Richard Marx - Should've Known Better.mp4", + "title": "Should've Known Better" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Tunnel Of Love", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a21f4ff9-99a3-8db5-7e81-d7613d041ec6", + "path": "z://CDG\\Various\\Bruce Springsteen - Tunnel Of Love.mp3", + "title": "Tunnel Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "New Order", + "playlist_title": "True Faith", + "found_song": { + "artist": "New Order", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5599ad26-6872-fd6d-87b6-18fae8fa060a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 846\\New Order - True Faith - SFMW 846 -03.mp3", + "title": "True Faith" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Foreigner", + "playlist_title": "Say You Will", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17f445a8-893e-2cf1-9422-e334f767119f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Foreigner - Say You Will.mp4", + "title": "Say You Will" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Paul Carrack", + "playlist_title": "Don't Shed A Tear", + "found_song": { + "artist": "Paul Carrack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3fd877d4-d49b-7629-1fc2-569f87ebf34f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul Carrack - Dont Shed A Tear.mp4", + "title": "Don't Shed A Tear" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Everywhere", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "a90475de-b588-bfc8-0ef4-20399b879c79", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Everywhere (Karaoke Version).mp4", + "title": "Everywhere" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Salt-N-Pepa", + "playlist_title": "Push It", + "found_song": { + "artist": "Salt-N-Pepa", + "disabled": false, + "favorite": false, + "guid": "331286d7-8c63-e243-7cfe-a9d237399ad4", + "path": "z://MP4\\Stingray Karaoke\\Push It Salt-N-Pepa Karaoke with Lyrics.mp4", + "title": "Push It" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "The Cure", + "playlist_title": "Just Like Heaven", + "found_song": { + "artist": "The Cure", + "disabled": false, + "favorite": false, + "guid": "0cd2b47d-dc80-291d-fe0d-768325eb4210", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just Like Heaven - The Cure.mp4", + "title": "Just Like Heaven" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "R.E.M.", + "playlist_title": "The One I Love", + "found_song": { + "artist": "R.E.M.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87581bfc-a58d-7be5-8381-be041fd77430", + "path": "z://MP4\\KaraokeOnVEVO\\R.E.M. - The One I Love.mp4", + "title": "The One I Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Tiffany", + "playlist_title": "I Think We're Alone Now", + "found_song": { + "artist": "Tiffany", + "disabled": false, + "favorite": false, + "guid": "d611b7ab-2187-a96d-2b1c-accfaffdf367", + "path": "z://MP4\\Sing King Karaoke\\Tiffany - I Think We're Alone Now (Karaoke Version).mp4", + "title": "I Think We're Alone Now" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cher", + "playlist_title": "I Found Someone", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "ce977529-7052-694e-952c-89ed928376f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Found Someone - Cher.mp4", + "title": "I Found Someone" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Billy Idol", + "playlist_title": "Mony Mony", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "6beb21d8-00d8-b5f3-630f-bd0cb4286bfd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mony Mony - Billy Idol.mp4", + "title": "Mony Mony" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Billy Idol", + "playlist_title": "Hot In The City", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33059386-c382-10e8-54b0-06c7c59b6ba5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Idol - Hot In The City.mp4", + "title": "Hot In The City" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Rick Astley", + "playlist_title": "Never Gonna Give You Up", + "found_song": { + "artist": "Rick Astley", + "disabled": false, + "favorite": false, + "guid": "134b4cab-8a52-2d6c-8eaf-13d346132591", + "path": "z://MP4\\Sing King Karaoke\\Rick Astley - Never Gonna Give You Up (Karaoke Version).mp4", + "title": "Never Gonna Give You Up" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Dan Hill", + "playlist_title": "Never Thought (That I Could Love)", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5028061b-753c-4c80-1884-7cc6c34c7e89", + "path": "z://MP4\\Sing King Karaoke\\Dan Hill - Never Thought (That I Could Love.mp4", + "title": "Never Thought (That I Could Love)" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Kiss", + "playlist_title": "Reason To Live", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fadba494-9085-ee9c-4952-d1d0c2675946", + "path": "z://MP4\\KaraokeOnVEVO\\Kiss - Reason To Live.mp4", + "title": "Reason To Live" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Little Lies", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "0693fcba-4905-6fef-7e6c-00e915cc1357", + "path": "z://MP4\\Sing King Karaoke\\Fleetwood Mac - Little Lies (Karaoke Version).mp4", + "title": "Little Lies" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Swing Out Sister", + "playlist_title": "Breakout", + "found_song": { + "artist": "Swing Out Sister", + "disabled": false, + "favorite": false, + "guid": "83ef9c4f-9205-e798-01d6-8602ad9409c6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breakout - Swing Out Sister.mp4", + "title": "Breakout" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Brilliant Disguise", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "0f594bc2-a360-47a8-2bf8-b22d49a25ed0", + "path": "z://MP4\\Let's Sing Karaoke\\Bruce Springsteen - Brilliant Disguise (Karaoke & Lyrics).mp4", + "title": "Brilliant Disguise" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "It's A Sin", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "58731317-fd9e-5f43-3644-59069c8dcbd9", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 807\\Pet Shop Boys - It's A Sin - SFMW 807 -01.mp3", + "title": "It's A Sin" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Depeche Mode", + "playlist_title": "Never Let Me Down Again", + "found_song": { + "artist": "Depeche Mode", + "disabled": false, + "favorite": false, + "guid": "584f630c-409b-ceca-347d-d3eef8f1ff26", + "path": "z://MP4\\KaraFun Karaoke\\Never Let Me Down Again - Depeche Mode Karaoke Version KaraFun.mp4", + "title": "Never Let Me Down Again" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Madonna", + "playlist_title": "Causing A Commotion", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d0e7743-ea55-1bde-4e4b-b7539a23a2b1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - Causing A Commotion.mp4", + "title": "Causing A Commotion" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Whitesnake", + "playlist_title": "Here I Go Again", + "found_song": { + "artist": "Whitesnake", + "disabled": false, + "favorite": false, + "guid": "fbb5546c-2309-8d04-d82e-b7001ced7993", + "path": "z://MP4\\Sing King Karaoke\\Whitesnake - Here I Go Again (Karaoke Version).mp4", + "title": "Here I Go Again" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 21, + "playlist_artist": "Bill Medley & Jennifer Warnes", + "playlist_title": "(I've Had) The Time Of My Life", + "found_song": { + "artist": "Bill Medley ft. Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "16496c12-f937-78c1-360e-7a09219a748a", + "path": "z://MP4\\Sing King Karaoke\\Bill Medley & Jennifer Warnes - (Ive Had The Time Of My Life.mp4", + "title": "(I've Had) The Time Of My Life" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Pet Shop Boys & Dusty Springfield", + "playlist_title": "What Have I Done To Deserve This?", + "found_song": { + "artist": "Dusty Springfield & Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5b2d2421-1089-52da-4a61-e29cef77271a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 836\\Dusty Springfield & Pet Shop Boys - What Have I Done To Deserve This - SFMW 836 -15.mp3", + "title": "What Have I Done To Deserve This" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "U2", + "playlist_title": "In God's Country", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "386de8d5-fab3-1fa6-8d7a-b9ae2dfbf8ff", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD009 - U2\\U2 - In Gods Country - SFG009 - 09.mp3", + "title": "In Gods Country" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Alexander O'Neal", + "playlist_title": "Criticize", + "found_song": { + "artist": "Alexander O'Neal", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f73d7a2-280f-af2f-9209-e427aeec6fc3", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alexander ONeal - Criticize.mp4", + "title": "Criticize" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 8, + "artist": "Pretty Poison", + "title": "Catch Me (I'm Falling) (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Bangles", + "title": "Hazy Shade Of Winter", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Heart", + "title": "There's The Girl", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Prince", + "title": "I Could Never Take The Place Of Your Man", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Michael Bolton", + "title": "That's What Love Is All About", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Eric Carmen", + "title": "Hungry Eyes (From \"Dirty Dancing\")", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Roger", + "title": "I Want To Be Your Man", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Laura Branigan", + "title": "Power Of Love", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Sting", + "title": "We'll Be Together", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Natalie Cole", + "title": "I Live For Your Love", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Men Without Hats", + "title": "Pop Goes The World", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stryper", + "title": "Honestly", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Kane Gang", + "title": "Motortown", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Gloria Estefan & Miami Sound Machine", + "title": "Can't Stay Away From You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "M/A/R/R/S", + "title": "Pump Up The Volume", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bourgeois Tagg", + "title": "I Don't Mind At All", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Bananarama", + "title": "I Can't Help It", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Stevie Wonder", + "title": "Skeletons", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Jets", + "title": "I Do You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Cover Girls", + "title": "Because Of You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Deja", + "title": "You And Me Tonight", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Patrick Swayze (Featuring Wendy Fraser)", + "title": "She's Like The Wind", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Squeeze", + "title": "853-5937", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Cutting Crew", + "title": "I've Been In Love Before", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Shanice Wilson", + "title": "(Baby Tell Me) Can You Dance", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Georgio", + "title": "Lover's Lane", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Squeeze", + "title": "Hourglass", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Powersource (Solo...Sharon)", + "title": "Dear Mr. Jesus", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Yes", + "title": "Rhythm Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Earth, Wind & Fire", + "title": "System Of Survival", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Buster Poindexter & His Banshees Of Blue", + "title": "Hot Hot Hot", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Poison", + "title": "I Won't Forget You", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Eurythmics", + "title": "I Need A Man", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Yes", + "title": "Love Will Find A Way", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Prince", + "title": "U Got The Look", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Swing Out Sister", + "title": "Twilight World", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Mick Jagger", + "title": "Throwaway", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "REO Speedwagon", + "title": "In My Dreams", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Boy George", + "title": "Live My Life (From The Film \"Hiding Out\")", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "The Alarm", + "title": "Rain In The Summertime", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Dokken", + "title": "Burning Like A Flame", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tony Terry", + "title": "She's Fly", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Noel", + "title": "Silent Morning", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Europe", + "title": "Cherokee", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lisa Lisa & Cult Jam Featuring Full Force", + "title": "Someone To Love Me For Me", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Glenn Jones", + "title": "We've Only Just Begun (The Romance Is Not Over)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Glenn Medeiros", + "title": "Lonely Won't Leave Me Alone", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Expose", + "title": "Let Me Be The One", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Smokey Robinson", + "title": "What's Too Much", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Motley Crue", + "title": "You're All I Need", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Kool & The Gang", + "title": "Special Way", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sammy Hagar", + "title": "Eagles Fly", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Heart", + "title": "Who Will You Run To", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Martha Davis", + "title": "Don't Tell Me The Time", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Kenny G. (Vocal By Lenny Williams)", + "title": "Don't Make Me Wait For Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 41, + "fuzzy_match_count": 4, + "missing_count": 55, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1986 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "Mind Your Own Business", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "guid": "72d7f586-9651-3aaf-5304-8108b7e8ed49", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mind Your Own Business - Hank Williams, Jr..mp4", + "title": "Mind Your Own Business" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Michael Johnson", + "playlist_title": "Give Me Wings", + "found_song": { + "artist": "Michael Johnson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b2f0138-1453-74ee-49a6-dd8f359cb91f", + "path": "z://MP4\\KaraokeOnVEVO\\Michael Johnson - Give Me Wings.mp4", + "title": "Give Me Wings" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Reba McEntire", + "playlist_title": "What Am I Gonna Do About You", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d9afc812-7a4a-8120-26a3-937344c01ff3", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - What Am I Gonna Do About You.mp4", + "title": "What Am I Gonna Do About You" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Love s Gonna Get You Someday", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dc0e507-984b-c03e-a66e-46873080cb56", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Love s Gonna Get You Someday.mp4", + "title": "Love s Gonna Get You Someday" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Judds", + "playlist_title": "Cry Myself To Sleep", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db6eb4c0-f414-f219-e352-da183af2fa1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Cry Myself To Sleep.mp4", + "title": "Cry Myself To Sleep" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Lionel Richie", + "playlist_title": "Deep River Woman", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "e3eaec07-7108-bc0b-2284-d6fe8203de1b", + "path": "z://MP4\\Let's Sing Karaoke\\Richie, Lionel - Deep River Woman (Karaoke & Lyrics) (2).mp4", + "title": "Deep River Woman" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Tanya Tucker", + "playlist_title": "I ll Come Back As Another Woman", + "found_song": { + "artist": "Tanya Tucker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "610dbca7-2545-49b1-cd32-bb28a1f329aa", + "path": "z://MP4\\KaraokeOnVEVO\\Tanya Tucker - I ll Come Back As Another Woman.mp4", + "title": "I ll Come Back As Another Woman" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Keith Whitley", + "playlist_title": "Homecoming 63", + "found_song": { + "artist": "Keith Whitley", + "disabled": false, + "favorite": false, + "guid": "de97d8c2-a418-c012-63eb-341b72987b1d", + "path": "z://CDG\\Sound Choice Karaoke\\SC2328\\SC2328-06 - Whitley, Keith - Homecoming '63.mp3", + "title": "Homecoming '63" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 6, + "artist": "Don Williams", + "title": "Then It s Love", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Conway Twitty", + "title": "Fallin For You For Years", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "T.G. Sheppard", + "title": "Half Past Forever (Till I m Blue In The Heart)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Dan Seals", + "title": "You Still Move Me", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The O Kanes", + "title": "Oh Darlin", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Judy Rodman", + "title": "She Thinks That She ll Marry", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Pake McEntire", + "title": "Bad Love", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "John Conlee", + "title": "The Carpenter", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Gary Morris", + "title": "Leave Me Lonely", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bellamy Brothers With the Forester Sisters", + "title": "Too Much Is Not Enough", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Eddie Rabbitt", + "title": "Gotta Have You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Lyle Lovett", + "title": "Cowboy Man", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ronnie Milsap", + "title": "How Do I Turn You On", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Crystal Gayle", + "title": "Straight To The Heart", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Nitty Gritty Dirt Band", + "title": "Fire In The Sky", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Eddy Raven", + "title": "Right Hand Man", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Mel McDaniel", + "title": "Stand On It", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1986 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bangles", + "playlist_title": "Walk Like An Egyptian", + "found_song": { + "artist": "Bangles", + "disabled": false, + "favorite": false, + "guid": "535ea9a5-390c-9a1c-0ce0-b163f098a545", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF056\\Bangles - Walk Like An Egyptian - SF056 - 01.mp3", + "title": "Walk Like An Egyptian" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Wang Chung", + "playlist_title": "Everybody Have Fun Tonight", + "found_song": { + "artist": "Wang Chung", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "799cc229-3e92-55c5-aee9-a9c824aea8cb", + "path": "z://MP4\\KaraokeOnVEVO\\Wang Chung - Everybody Have Fun Tonight.mp4", + "title": "Everybody Have Fun Tonight" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Notorious", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "028634c9-d1bd-0e77-bb1d-e90a32e6a8ad", + "path": "z://MP4\\ZoomKaraokeOfficial\\Duran Duran - Notorious.mp4", + "title": "Notorious" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Gregory Abbott", + "playlist_title": "Shake You Down", + "found_song": { + "artist": "Gregory Abbott", + "disabled": false, + "favorite": false, + "guid": "6ab98a45-9ca7-72b0-5be3-fd8e74fb4d58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake You Down - Gregory Abbott.mp4", + "title": "Shake You Down" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Hornsby", + "playlist_title": "The Way It Is", + "found_song": { + "artist": "Bruce Hornsby & The Range", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "73334334-06d7-3fa1-db73-cf7d87489fdc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 854\\Bruce Hornsby & The Range - The Way It Is - SFMW 854 -05.mp3", + "title": "The Way It Is" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Robbie Nevil", + "playlist_title": "C est La Vie", + "found_song": { + "artist": "Robbie Nevil", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ccca090f-db51-9576-b023-8de19c55a7e4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Robbie Nevil - Cest La Vie.mp4", + "title": "C'est La Vie" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "War", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "a49b97e5-2723-95d7-07e9-5a97d8a6b281", + "path": "z://CDG\\Various\\Bruce Springsteen - War.mp3", + "title": "War" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Ben E. King", + "playlist_title": "Stand By Me", + "found_song": { + "artist": "Ben E. King", + "disabled": false, + "favorite": false, + "guid": "8cf8f57e-2392-8ab9-da8c-bcc170aa151a", + "path": "z://MP4\\Sing King Karaoke\\Ben E. King - Stand By Me (Karaoke Version).mp4", + "title": "Stand By Me" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Billy Idol", + "playlist_title": "To Be A Lover", + "found_song": { + "artist": "Billy Idol", + "disabled": false, + "favorite": false, + "guid": "33b225a9-9789-4a30-ea5b-fa13c9d141d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke To Be A Lover - Billy Idol.mp4", + "title": "To Be A Lover" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Genesis", + "playlist_title": "Land Of Confusion", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c115062b-b12c-b340-d98e-9cea50b8ba27", + "path": "z://MP4\\KaraokeOnVEVO\\Genesis - Land Of Confusion.mp4", + "title": "Land Of Confusion" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Kool", + "playlist_title": "Victory", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "9ee61916-0618-26ef-9847-4e848d5c95e1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Victory - Kool And The Gang.mp4", + "title": "Victory" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Billy Vera", + "playlist_title": "At This Moment", + "found_song": { + "artist": "Billy Vera", + "disabled": false, + "favorite": false, + "guid": "db902703-dc31-1225-0b40-16fa61097133", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke At This Moment - Billy Vera.mp4", + "title": "At This Moment" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Timbuk 3", + "playlist_title": "The Future s So Bright, I Gotta Wear Shades", + "found_song": { + "artist": "Timbuk 3", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ca5a2dca-1c88-105e-1c62-2a65dfdb6b41", + "path": "z://MP4\\KaraokeOnVEVO\\Timbuk 3 - The Future s So Bright, I Gotta Wear Shades.mp4", + "title": "The Future s So Bright, I Gotta Wear Shades" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Huey Lewis", + "playlist_title": "Hip To Be Square", + "found_song": { + "artist": "Huey Lewis and the News", + "disabled": false, + "favorite": false, + "guid": "1af987f2-3c6b-adf2-b8bd-a28a2ca18ab1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hip To Be Square - Huey Lewis and the News.mp4", + "title": "Hip To Be Square" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Madonna", + "playlist_title": "Open Your Heart", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "guid": "db9817a8-2537-efba-6091-82ac91f977e7", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Open Your Heart (Karaoke Version).mp4", + "title": "Open Your Heart" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Kansas", + "playlist_title": "All I Wanted", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e2b5d93a-b225-fa84-31e6-a8f0cf32c451", + "path": "z://MP4\\KaraokeOnVEVO\\Kansas - All I Wanted.mp4", + "title": "All I Wanted" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Bon Jovi", + "playlist_title": "You Give Love A Bad Name", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "guid": "4414e37b-a09e-132e-af78-2c29187ad2ba", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - You Give Love A Bad Name (Karaoke Version).mp4", + "title": "You Give Love A Bad Name" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carly Simon", + "playlist_title": "Coming Around Again", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c7cce267-9dd4-1478-eba0-724de7dbebbd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Carly Simon - Coming Around Again.mp4", + "title": "Coming Around Again" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Samantha Fox", + "playlist_title": "Touch Me (I Want Your Body)", + "found_song": { + "artist": "Samantha Fox", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "44f5a88a-89b2-e85d-f19f-b13c63f64653", + "path": "z://MP4\\ZoomKaraokeOfficial\\Samantha Fox - Touch Me (I Want Your Body).mp4", + "title": "Touch Me (I Want Your Body)" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Run-D.M.C.", + "playlist_title": "You Be Illin", + "found_song": { + "artist": "Run D.M.C.", + "disabled": false, + "favorite": false, + "guid": "3df6d509-c75b-8eba-255f-d498230a3272", + "path": "z://MP4\\Let's Sing Karaoke\\Run DMC - You Be Illin' (Karaoke & Lyrics).mp4", + "title": "You Be Illin'" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "The Georgia Satellites", + "playlist_title": "Keep Your Hands To Yourself", + "found_song": { + "artist": "The Georgia Satellites", + "disabled": false, + "favorite": false, + "guid": "d39653f2-5d09-52b2-dfe6-3f86c3ccf2ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Keep Your Hands To Yourself - The Georgia Satellites.mp4", + "title": "Keep Your Hands To Yourself" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Tina Turner", + "playlist_title": "Two People", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "guid": "128cb37e-1b72-5a8e-f6fa-d121a1a9d213", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD045 - Tina Turner\\Tina Turner - Two People - SFG045 - 06.mp3", + "title": "Two People" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Cameo", + "playlist_title": "Word Up", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "guid": "487a4169-ec16-b5c0-dbea-215863ef6626", + "path": "z://MP4\\Sing King Karaoke\\Cameo - Word Up (Karaoke Version).mp4", + "title": "Word Up" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Human League", + "playlist_title": "Human", + "found_song": { + "artist": "The Human League", + "disabled": false, + "favorite": false, + "guid": "2a9e4eda-c0f8-bca4-3e49-6f6a027dc428", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF143\\The Human League - Human - SF143 - 10.mp3", + "title": "Human" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Lionel Richie", + "playlist_title": "Love Will Conquer All", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "b79a8954-2a3f-70e3-4f73-abb94ca19693", + "path": "z://CDG\\Various\\Lionel Richie - Love Will Conquer All.mp3", + "title": "Love Will Conquer All" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "The Jets", + "playlist_title": "You Got It All", + "found_song": { + "artist": "The Jets", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "10d52d0b-8bdf-2293-13a5-75257d77717d", + "path": "z://MP4\\Sing King Karaoke\\The Jets - You Got It All.mp4", + "title": "You Got It All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lionel Richie", + "playlist_title": "Ballerina Girl", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "a4c99f04-fd9e-f9f1-de16-89b6de59bdcb", + "path": "z://CDG\\Various\\Lionel Richie - Ballerina Girl.mp3", + "title": "Ballerina Girl" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Cinderella", + "playlist_title": "Nobody s Fool", + "found_song": { + "artist": "Cinderella", + "disabled": false, + "favorite": false, + "guid": "20d03842-36d1-da7a-46f9-50f833671cad", + "path": "z://CDG\\Various\\Cinderella - Nobody's Fool.mp3", + "title": "Nobody's Fool" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Bon Jovi", + "playlist_title": "Livin On A Prayer", + "found_song": { + "artist": "Bon Jovi", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "35bb1796-270e-912c-be6e-2c28325ea980", + "path": "z://MP4\\Sing King Karaoke\\Bon Jovi - Livin On A Prayer.mp4", + "title": "Livin' On A Prayer" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Big Time", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45e5cad6-2471-0b64-e300-200dbdc57158", + "path": "z://MP4\\KaraokeOnVEVO\\Peter Gabriel - Big Time.mp4", + "title": "Big Time" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Talking Heads", + "playlist_title": "Wild Wild Life", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "df694940-eebf-534f-331a-07fa29976b3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - Wild Wild Life.mp4", + "title": "Wild Wild Life" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Anita Baker", + "playlist_title": "Caught Up In The Rapture", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "guid": "d2d79e64-1e91-03fb-908a-f382d59bbf38", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caught Up in the Rapture - Anita Baker.mp4", + "title": "Caught Up in the Rapture" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Madonna", + "playlist_title": "True Blue", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4d319144-d969-3ea0-8069-7846e797f227", + "path": "z://MP4\\ZoomKaraokeOfficial\\Madonna - True Blue.mp4", + "title": "True Blue" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Boston", + "playlist_title": "Amanda", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "guid": "3380ea71-aa7a-4593-91ff-7eb76aaa29b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Amanda - Boston.mp4", + "title": "Amanda" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Debbie Harry", + "playlist_title": "French Kissin", + "found_song": { + "artist": "Debbie Harry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eeabe10b-3fd6-ebb1-327b-8eb72d36ce14", + "path": "z://CDG\\Sunfly Collection\\Sunfly Aribter\\FLY023\\Debbie Harry - French Kissin' - FLY023 - 06.mp3", + "title": "French Kissin'" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Toto", + "playlist_title": "I ll Be Over You", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "769822b4-4f1e-ae25-eda0-b325f75622a1", + "path": "z://MP4\\Sing King Karaoke\\Toto - I ll Be Over You.mp4", + "title": "I ll Be Over You" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eddie Money", + "playlist_title": "I Wanna Go Back", + "found_song": { + "artist": "Eddie Money", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3c0323c-9cd6-268c-9b90-e63238c536f0", + "path": "z://CDG\\Various\\Eddie Money - I Wanna Go Back.mp3", + "title": "I Wanna Go Back" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Beastie Boys", + "playlist_title": "(You Gotta) Fight For Your Right (To Party!)", + "found_song": { + "artist": "Beastie Boys", + "disabled": false, + "favorite": false, + "guid": "6b159db1-23cd-cc60-b83a-527d41058920", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (You Gotta) Fight For Your Right (To Party!) - Beastie Boys.mp4", + "title": "(You Gotta) Fight For Your Right (To Party!)" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Grace Jones", + "playlist_title": "I m Not Perfect (But I m Perfect For You)", + "found_song": { + "artist": "Grace Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b9a31bd-42df-88b9-5982-5abbc5983fad", + "path": "z://MP4\\KaraokeOnVEVO\\Grace Jones - I m Not Perfect (But I m Perfect For You.mp4", + "title": "I m Not Perfect (But I m Perfect For You)" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Oran Juice Jones", + "playlist_title": "The Rain", + "found_song": { + "artist": "Oran Juice Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "edb70ccd-b0df-ff58-1299-ea55d6fe17c1", + "path": "z://MP4\\KaraokeOnVEVO\\Oran Juice Jones - The Rain.mp4", + "title": "The Rain" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pet Shop Boys", + "playlist_title": "Suburbia", + "found_song": { + "artist": "Pet Shop Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8bda5144-039e-c530-9f4f-169ed3f2ecfd", + "path": "z://CDG\\SBI\\SBI-01\\SB02858 - Pet Shop Boys - Suburbia.mp3", + "title": "Suburbia" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Toto", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "77ab272b-54ca-fec6-9acd-c7ceb0604b97", + "path": "z://MP4\\VocalStarKaraoke\\Toto - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Robert Palmer", + "playlist_title": "I Didn t Mean To Turn You On", + "found_song": { + "artist": "Robert Palmer", + "disabled": false, + "favorite": false, + "guid": "80b0629e-0830-10fa-d05e-4a59996d7d04", + "path": "z://MP4\\Stingray Karaoke\\I Didn't Mean To Turn You On Robert Palmer Karaoke with Lyrics.mp4", + "title": "I Didn't Mean To Turn You On" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Cameo", + "playlist_title": "Candy", + "found_song": { + "artist": "Cameo", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ace4d3f-3f85-1cdd-2204-f69a9c8f44fc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cameo - Candy.mp4", + "title": "Candy" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Paul Simon", + "playlist_title": "Graceland", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "fd0a1d48-19fb-e944-6cf6-71bcb0cb6a74", + "path": "z://CDG\\Various\\Paul Simon - Graceland.mp3", + "title": "Graceland" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Eurythmics", + "playlist_title": "Thorn In My Side", + "found_song": { + "artist": "Eurythmics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5d2b9c3-2202-61f5-f248-22773bd083c9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eurythmics - Thorn In My Side.mp4", + "title": "Thorn In My Side" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "True Colors", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "df588642-a090-1073-ee1a-6ef9ddd75f31", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - True Colors (Karaoke Version).mp4", + "title": "True Colors" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Anita Baker", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Anita Baker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f6ccff3-039f-09a9-4792-a2fb5af2967b", + "path": "z://MP4\\KaraokeOnVEVO\\Anita Baker - Sweet Love.mp4", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Rod Stewart", + "playlist_title": "Every Beat Of My Heart", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09de27fd-2942-9efe-4f9e-ac91c0bfb7c8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Every Beat Of My Heart.mp4", + "title": "Every Beat Of My Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Pretenders", + "playlist_title": "Don't Get Me Wrong", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "f00f171e-5f05-1343-352d-59ec762272ef", + "path": "z://MP4\\KaraokeOnVEVO\\The Pretenders - Don't Get Me Wrong (Karaoke).mp4", + "title": "Don't Get Me Wrong" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Luther Vandross", + "playlist_title": "Stop To Love", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "89195cca-23da-c3a8-4b80-9551ff511f3e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Luther Vandross - Stop To Love.mp4", + "title": "Stop To Love" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Goldmine", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Corey Hart", + "playlist_title": "Can t Help Falling In Love", + "found_song": { + "artist": "Haley Reinhart", + "disabled": false, + "favorite": false, + "guid": "a8a6a73a-6e12-a12d-9ed9-53f251d32c53", + "path": "z://MP4\\KtvEntertainment\\Haley Reinhart - Can't Help Falling In Love Karaoke Lyrics.mp4", + "title": "Can't Help Falling In Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "The Communards", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Communards", + "disabled": false, + "favorite": false, + "guid": "05ae843e-356d-0866-6ee4-fa337bfa316a", + "path": "z://CDG\\Various\\Communards - Don't Leave Me This Way.mp3", + "title": "Don't Leave Me This Way" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "Janet Jackson", + "title": "Control", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Survivor", + "title": "Is This Love", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "John Berry", + "title": "Love Is Forever", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Howard Jones", + "title": "You Know I Love You ... Don t You?", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Glass Tiger", + "title": "Someday", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Peter Cetera With Amy Grant", + "title": "The Next Time I Fall", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Cyndi Lauper", + "title": "Change Of Heart", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Gloria Estefan", + "title": "Falling In Love (Uh-Oh)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Nancy Martinez", + "title": "For Tonight", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Billy Joel", + "title": "This Is The Time", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Boston", + "title": "We re Ready", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Chicago", + "title": "Will You Still Love Me?", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Chico DeBarge", + "title": "Talk To Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Ready For The World", + "title": "Love You Down", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Benjamin Orr", + "title": "Stay The Night", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Freddie Jackson", + "title": "Tasty Love", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Journey", + "title": "I ll Be Alright Without You", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Aretha Franklin", + "title": "Jimmy Lee", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Jesse Johnson (Featuring Sly Stone)", + "title": "Crazay", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Human League", + "title": "I Need Your Loving", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Don Johnson", + "title": "Heartache Away", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Eddie Money", + "title": "Take Me Home Tonight", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jeff Lorber", + "title": "Facts Of Love", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dead Or Alive", + "title": "Brand New Lover", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ann Wilson", + "title": "The Best Man In The World", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Linda Ronstadt", + "title": "Somewhere Out There (From \"An American Tail\")", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Orchestral Manoeuvres In The Dark", + "title": "(Forever) Live And Die", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Bobby Brown", + "title": "Girlfriend", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Stacey Q", + "title": "We Connect", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Paul Young", + "title": "Some People", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Commodores", + "title": "Goin To The Bank", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "David", + "title": "Welcome To The Boomtown", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Ric Ocasek", + "title": "True To You", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bob Geldof", + "title": "This Is The World Calling", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Lisa Lisa", + "title": "All Cried Out", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Daryl Hall", + "title": "Foolish Pride", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ric Ocasek", + "title": "Emotion In Motion", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bob Seger", + "title": "Miami", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "John Parr", + "title": "Blame It On The Radio", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "El DeBarge", + "title": "Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Secret Ties", + "title": "Dancin In My Sleep", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Uptown", + "title": "(I Know) I m Losing You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Bananarama", + "title": "A Trick Of The Night", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Stacy Lattisaw", + "title": "Nail It To The Wall", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Five Star", + "title": "If I Say Yes", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Steve Winwood", + "title": "Freedom Overspill", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 49, + "fuzzy_match_count": 5, + "missing_count": 46, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1985 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Have Mercy", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31759cc0-f9d9-d134-92b7-88ce959d8076", + "path": "z://MP4\\KaraokeOnVEVO\\The Judds - Have Mercy.mp4", + "title": "Have Mercy" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Reba McEntire", + "playlist_title": "Only In My Mind", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6454ac1f-0855-ddd2-ed1e-e9fe1939477d", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Only In My Mind.mp4", + "title": "Only In My Mind" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Gene Watson", + "playlist_title": "Memories To Burn", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "576ca423-0ede-9116-3ce7-3a70214a135a", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Memories To Burn.mp4", + "title": "Memories To Burn" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Strait", + "playlist_title": "The Chair", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "73393c7f-5eea-fb52-a1a1-c8a23c7319a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chair - George Strait.mp4", + "title": "The Chair" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "George Jones", + "playlist_title": "The One I Loved Back Then (The Corvette Song)", + "found_song": { + "artist": "George Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc8709cb-5a3e-f1c4-1e1d-c86b1ac1f41d", + "path": "z://MP4\\KaraokeOnVEVO\\George Jones - The One I Loved Back Then (The Corvette Song.mp4", + "title": "The One I Loved Back Then (The Corvette Song)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 2, + "artist": "Kenny Rogers", + "title": "Morning Desire", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Dan Seals", + "title": "Bop", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Rosanne Cash", + "title": "Never Be You", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Nitty Gritty Dirt Band", + "title": "Home Again In My Heart", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Janie Frickie", + "title": "Somebody Else s Fire", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Forester Sisters", + "title": "Just In Case", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Eddie Rabbitt", + "title": "A World Without Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Restless Heart", + "title": "(Back To The) Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Juice Newton", + "title": "Hurt", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "John Conlee", + "title": "Old School", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Crystal Gayle And Gary Morris", + "title": "Makin Up For Lost Time", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "T. Graham Brown", + "title": "I Tell It Like It Used To Be", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sawyer Brown", + "title": "Betty s Bein Bad", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marie Osmond", + "title": "There s No Stopping Your Heart", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Conway Twitty", + "title": "The Legend And The Man", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Billy Joe Royal", + "title": "Burned Like A Rocket", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Steve Wariner", + "title": "You Can Dream Of Me", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Oak Ridge Boys", + "title": "Come On In (You Did The Best You Could)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Waylon Jennings", + "title": "The Devil s On The Loose", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Glen Campbell", + "title": "It s Just A Matter Of Time", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 5, + "fuzzy_match_count": 0, + "missing_count": 20, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1985 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Simple Minds", + "playlist_title": "Alive And Kicking", + "found_song": { + "artist": "Simple Minds", + "disabled": false, + "favorite": false, + "guid": "4165362f-c7c4-758e-3994-d15ad685b507", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Alive And Kicking - Simple Minds.mp4", + "title": "Alive And Kicking" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dionne", + "playlist_title": "That s What Friends Are For", + "found_song": { + "artist": "Dionne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d2246dd3-47b0-a4b0-8432-a8cfbac00351", + "path": "z://MP4\\VocalStarKaraoke\\Dionne - That s What Friends Are For.mp4", + "title": "That s What Friends Are For" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Mellencamp", + "playlist_title": "Small Town", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "a34ca4f1-44a5-2103-4c07-2cd19507085c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Small Town - John Mellencamp.mp4", + "title": "Small Town" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mr. Mister", + "playlist_title": "Broken Wings", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "53ec7d17-c49c-8290-7aa6-deeee71f9c2d", + "path": "z://MP4\\Sing King Karaoke\\Mr. Mister - Broken Wings (Karaoke Version).mp4", + "title": "Broken Wings" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Nicks", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Stevie Nicks", + "disabled": false, + "favorite": false, + "guid": "cda52c4e-6e79-8b12-5275-6045360a015c", + "path": "z://MP4\\Let's Sing Karaoke\\Nicks, Stevie - Talk To Me (Karaoke & Lyrics).mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Dire Straits", + "playlist_title": "Walk Of Life", + "found_song": { + "artist": "Dire Straits", + "disabled": false, + "favorite": false, + "guid": "92cbb9f9-4b0b-6a6a-9d9d-7504d57ba0b1", + "path": "z://MP4\\TheKARAOKEChannel\\Dire Straits - Walk Of Life (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Walk Of Life" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Survivor", + "playlist_title": "Burning Heart", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17fa371c-1d2e-0fcb-babc-556cfd85e614", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - Burning Heart.mp4", + "title": "Burning Heart" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "My Hometown", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "b933e80f-8805-ba31-a7f7-4d2b0037325a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Hometown - Bruce Springsteen.mp4", + "title": "My Hometown" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Wham!", + "playlist_title": "I m Your Man", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5af17784-ed9c-e250-fc3d-a7eecef71097", + "path": "z://MP4\\Sing King Karaoke\\Wham! - I m Your Man.mp4", + "title": "I m Your Man" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Miami Sound Machine", + "playlist_title": "Conga", + "found_song": { + "artist": "Miami Sound Machine", + "disabled": false, + "favorite": false, + "guid": "0d26ee70-143d-b435-f65d-c20a28b1f733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Conga - Miami Sound Machine.mp4", + "title": "Conga" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Paul McCartney", + "playlist_title": "Spies Like Us", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0325025b-cc3a-73a1-bb04-b2a857f1f61d", + "path": "z://MP4\\KaraokeOnVEVO\\Paul McCartney - Spies Like Us.mp4", + "title": "Spies Like Us" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Heart", + "playlist_title": "Never", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ffa400a-a5d7-7936-05ff-2c69b7039bed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heart - Never.mp4", + "title": "Never" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Starship", + "playlist_title": "We Built This City", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": true, + "guid": "2cbdbb6e-b85c-603b-fe4c-bba61bf733b1", + "path": "z://MP4\\Sing King Karaoke\\Starship - We Built This City (Karaoke Version).mp4", + "title": "We Built This City" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Pat Benatar", + "playlist_title": "Sex As A Weapon", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "2654cae5-7229-d408-21f1-a5c19da9e2c0", + "path": "z://MP4\\Let's Sing Karaoke\\Benatar, Pat - Sex As A Weapon (Karaoke & Lyrics).mp4", + "title": "Sex As A Weapon" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Whitney Houston", + "playlist_title": "How Will I Know", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "fef371b0-6bfb-2dd4-36e5-448bfddc02be", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - How Will I Know (Karaoke Version).mp4", + "title": "How Will I Know" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Sade", + "playlist_title": "The Sweetest Taboo", + "found_song": { + "artist": "Sade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e8948469-9173-9993-6c4b-6c01d9380d6a", + "path": "z://MP4\\KaraokeOnVEVO\\Sade - The Sweetest Taboo.mp4", + "title": "The Sweetest Taboo" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Thompson Twins", + "playlist_title": "Lay Your Hands On Me", + "found_song": { + "artist": "Thompson Twins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4e589d85-1641-554a-267a-a9bf9a3e3bd1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Thompson Twins - Lay Your Hands On Me.mp4", + "title": "Lay Your Hands On Me" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "A-Ha", + "playlist_title": "The Sun Always Shines on T.V.", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b06ef4d-5e09-3e16-88af-43a113d9813b", + "path": "z://MP4\\ZoomKaraokeOfficial\\A-ha - The Sun Always Shines On TV.mp4", + "title": "The Sun Always Shines On T.V." + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "James Brown", + "playlist_title": "Living In America", + "found_song": { + "artist": "James Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60a1c1ad-2c1f-7320-a648-564c9ae9971d", + "path": "z://MP4\\KaraokeOnVEVO\\James Brown - Living In America.mp4", + "title": "Living In America" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Dream Academy", + "playlist_title": "Life In A Northern Town", + "found_song": { + "artist": "The Dream Academy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab450d32-3d66-3561-c1d6-e716abea6d85", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dream Academy - Life In A Northern Town.mp4", + "title": "Life In A Northern Town" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Glenn Frey", + "playlist_title": "You Belong To The City", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1bb175c-281b-2fcb-d05c-0a2120b65748", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Glenn Frey - You Belong To The City - SFMW 812 -15.mp3", + "title": "You Belong To The City" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Mr. Mister", + "playlist_title": "Kyrie", + "found_song": { + "artist": "Mr. Mister", + "disabled": false, + "favorite": false, + "guid": "84447bd2-35e6-3062-7111-bce495e6aa32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Kyrie - Mr. Mister.mp4", + "title": "Kyrie" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Mike", + "playlist_title": "Silent Running", + "found_song": { + "artist": "Mike & The Mechanics", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91c6fbd1-9968-149e-30ab-97205f4129e2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mike And The Mechanics - Silent Running.mp4", + "title": "Silent Running" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Part-Time Lover", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0c493a02-6891-f493-1abd-8ed5b4e6e696", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Part Time Lover (2.mp4", + "title": "Part Time Lover" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Freddie Jackson", + "playlist_title": "You Are My Lady", + "found_song": { + "artist": "Freddie Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1598cd6e-36ac-bb9f-9a1a-353a6fffa2a4", + "path": "z://MP4\\KaraokeOnVEVO\\Freddie Jackson - You Are My Lady.mp4", + "title": "You Are My Lady" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Queen", + "playlist_title": "One Vision", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "8e934654-67ff-dcb8-4bca-0058dd8f558c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Vision - Queen.mp4", + "title": "One Vision" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Starship", + "playlist_title": "Sara", + "found_song": { + "artist": "Starship", + "disabled": false, + "favorite": false, + "guid": "d99b8b63-5b2c-40bf-19e0-6ddd6d9ce9f3", + "path": "z://MP4\\Let's Sing Karaoke\\Starship - Sara (Karaoke & Lyrics) (2).mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Kate Bush", + "playlist_title": "Running Up That Hill", + "found_song": { + "artist": "Kate Bush", + "disabled": false, + "favorite": false, + "guid": "6c75d46d-966e-b68c-0f03-e4f260e19b43", + "path": "z://MP4\\TheKARAOKEChannel\\Kate Bush - Running Up That Hill (Karaoke With Lyrics) @Stingray Karaoke.mp4", + "title": "Running Up That Hill" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Atlantic Starr", + "playlist_title": "Secret Lovers", + "found_song": { + "artist": "Atlantic Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "83b352fc-9837-58b2-56f5-daf8ef3c8b77", + "path": "z://MP4\\ZoomKaraokeOfficial\\Atlantic Starr - Secret Lovers.mp4", + "title": "Secret Lovers" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Whitney Houston", + "playlist_title": "Saving All My Love For You", + "found_song": { + "artist": "Whitney Houston", + "disabled": false, + "favorite": false, + "guid": "1edc1b52-4d78-eb42-aedf-b4eba09dbe4f", + "path": "z://MP4\\Sing King Karaoke\\Whitney Houston - Saving All My Love For You (Karaoke Version).mp4", + "title": "Saving All My Love For You" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Talking Heads", + "playlist_title": "And She Was", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d427f184-9105-d62f-4938-9c777d5914d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Talking Heads - And She Was.mp4", + "title": "And She Was" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "A-Ha", + "playlist_title": "Take On Me", + "found_song": { + "artist": "a-ha", + "disabled": false, + "favorite": false, + "guid": "90fe4ebf-e5df-fddf-f68f-032c283b1635", + "path": "z://MP4\\Sing King Karaoke\\a-ha - Take On Me (Karaoke Version).mp4", + "title": "Take On Me" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Sting", + "playlist_title": "Fortress Around Your Heart", + "found_song": { + "artist": "Sting", + "disabled": false, + "favorite": false, + "guid": "b985d911-381c-606f-8b75-49a4ec30c087", + "path": "z://MP4\\Let's Sing Karaoke\\Sting - Fortress Around Your Heart (Karaoke & Lyrics).mp4", + "title": "Fortress Around Your Heart" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 42, + "playlist_artist": "Eurythmics And Aretha Franklin", + "playlist_title": "Sisters Are Doing It For Themselves", + "found_song": { + "artist": "Eurythmics ft. Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "108b95ed-7723-5e36-791b-46773c7df34e", + "path": "z://MP4\\VocalStarKaraoke\\Eurythmics And Aretha Franklin - Sisters Are Doing It For Themselves.mp4", + "title": "Sisters Are Doing It For Themselves" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 69, + "playlist_artist": "Tears For Fears", + "playlist_title": "Head Over Heels", + "found_song": { + "artist": "Tears For Fears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "56c0b508-53dc-1031-ae69-0e8c19695894", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Tears For Fears - Head Over Heals - SFMW 850 -11.mp3", + "title": "Head Over Heals" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Sly Fox", + "playlist_title": "Let s Go All The Way", + "found_song": { + "artist": "Sly Fox", + "disabled": false, + "favorite": false, + "guid": "6c7f2840-8f53-e3dd-40f8-f955c1379e81", + "path": "z://CDG\\Various\\Sly Fox - Lets Go All The Way.mp3", + "title": "Lets Go All The Way" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Freedom", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "John Mellencamp", + "playlist_title": "Lonely Ol Night", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "guid": "53bcf35d-9188-fc91-f317-363fb2dd6853", + "path": "z://MP4\\Let's Sing Karaoke\\Mellencamp, John Cougar - Lonely Ol' Night (Karaoke & Lyrics).mp4", + "title": "Lonely Ol' Night" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Lionel Richie", + "title": "Say You, Say Me (Title Song From White Nights)", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Eddie Murphy", + "title": "Party All The Time", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Klymaxx", + "title": "I Miss You", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Phil Collins/Marilyn Martin", + "title": "Separate Lives (Theme From White Nights)", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Cars", + "title": "Tonight She Comes", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Arcadia", + "title": "Election Day", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "ZZ Top", + "title": "Sleeping Bag", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Scritti Politti", + "title": "Perfect Way", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Sting", + "title": "Love Is The Seventh Wave", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Kool", + "title": "Emergency", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bryan Adams/Tina Turner", + "title": "It s Only Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Stevie Wonder", + "title": "Go Home", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clarence Clemons", + "title": "You re A Friend Of Mine", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Night Ranger", + "title": "Goodbye", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ta Mara", + "title": "Everybody Dance", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Starpoint", + "title": "Object Of My Desire", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jellybean", + "title": "Sidewalk Talk", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Billy Ocean", + "title": "When The Going Gets Tough (Jewel Of The Nile Theme)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Pete Townsend", + "title": "Face The Face", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Aretha Franklin", + "title": "Who s Zoomin Who", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Elton John", + "title": "Wrap Her Up", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sheila E", + "title": "A Love Bizarre", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Corey Hart", + "title": "Everything In My Heart", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Artists United Against Apartheid", + "title": "Sun City", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Baltimora", + "title": "Tarzan Boy (From \"Teenage Mutant Ninja Turtles III\")", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Rush", + "title": "The Big Money", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Sheena Easton", + "title": "Do It For Love", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Wang Chung", + "title": "To Live And Die In L.A.", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Asia", + "title": "Go", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Ready For The World", + "title": "Digital Display", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "New Edition", + "title": "Count Me Out", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Twisted Sister", + "title": "Leader Of The Pack", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Paul Young", + "title": "Everything Must Change", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Jack Wagner", + "title": "Too Young", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jan Hammer", + "title": "Miami Vice Theme", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Freddie Jackson", + "title": "He ll Never Love You (Like I Do)", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Barbra Streisand", + "title": "Somewhere (From West Side Story)", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Hooters", + "title": "Day By Day", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Isley/Jasper/Isley", + "title": "Caravan Of Love", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "David Foster", + "title": "Love Theme From St. Elmo s Fire (Instrumental)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lisa Lisa", + "title": "Can You Feel The Beat", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "James Taylor", + "title": "Everyday", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Kenny Rogers", + "title": "Morning Desire", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Tina Turner", + "title": "One Of The Living", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Charlie Sexton", + "title": "Beat s So Lonely", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "El DeBarge With DeBarge", + "title": "The Heart Is Not So Smart", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "O.M.D.", + "title": "Secret", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Chaka Khan", + "title": "Own The Night", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "ABC", + "title": "Be Near Me", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Nick Lowe", + "title": "I Knew The Bride (When She Use To Rock N Roll)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Eugene Wilde", + "title": "Don t Say No Tonight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "John Cafferty", + "title": "Small Town Girl", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Loverboy", + "title": "Dangerous", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Fortune", + "title": "Stacy", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Alisha", + "title": "Baby Talk", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Joni Mitchell", + "title": "Good Friends", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Roger Daltrey", + "title": "Let Me Down Easy", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kiss", + "title": "Tears Are Falling", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Alarm", + "title": "Strength", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Loverboy", + "title": "Lovin Every Minute Of It", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Olivia Newton-John", + "title": "Soul Kiss", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ray Parker Jr.", + "title": "Girls Are More Fun", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 5, + "missing_count": 62, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1984 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Judds", + "playlist_title": "Why Not Me", + "found_song": { + "artist": "The Judds", + "disabled": false, + "favorite": false, + "guid": "6b549b5b-0dd6-12f8-a166-76b508324dc3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Not Me - The Judds.mp4", + "title": "Why Not Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "George Strait", + "playlist_title": "Does Fort Worth Ever Cross Your Mind", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "f66875ad-ae08-50a2-b8a4-160a542fe2e6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Does Fort Worth Ever Cross Your Mind - George Strait.mp4", + "title": "Does Fort Worth Ever Cross Your Mind" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Reba McEntire", + "playlist_title": "How Blue", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "4ae4cc67-66bc-92fd-ac37-57137eec7803", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke How Blue - Reba McEntire.mp4", + "title": "How Blue" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Hank Williams Jr.", + "playlist_title": "All My Rowdy Friends Are Coming Over Tonight", + "found_song": { + "artist": "Hank Williams Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "deaab90c-9941-816b-3e42-2516d10e604b", + "path": "z://MP4\\KaraokeOnVEVO\\Hank Williams Jr. - All My Rowdy Friends Are Coming Over Tonight.mp4", + "title": "All My Rowdy Friends Are Coming Over Tonight" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "John Conlee", + "playlist_title": "Years After You", + "found_song": { + "artist": "John Conlee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "955947bd-a1f4-fe1c-fbe6-d68c7eccb054", + "path": "z://MP4\\KaraokeOnVEVO\\John Conlee - Years After You.mp4", + "title": "Years After You" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Watson", + "playlist_title": "Got No Reason Now For Goin' Home", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9e4ecb4f-eb1b-01f7-336b-a1e2b2c22cc9", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Got No Reason Now For Goin Home.mp4", + "title": "Got No Reason Now For Goin' Home" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Ricky Skaggs", + "playlist_title": "Something In My Heart", + "found_song": { + "artist": "Ricky Skaggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "dcd27195-6594-6cd0-6d1b-4cbdd6bf88eb", + "path": "z://MP4\\KaraokeOnVEVO\\Ricky Skaggs - Something In My Heart.mp4", + "title": "Something In My Heart" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Conway Twitty", + "playlist_title": "Ain't She Something Else", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80a1a4b3-51a3-e6bd-24b2-305535950679", + "path": "z://MP4\\KaraokeOnVEVO\\Conway Twitty - Aint She Something Else.mp4", + "title": "Ain't She Something Else" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Waylon Jennings", + "playlist_title": "America", + "found_song": { + "artist": "Waylon Jennings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "33acb1fd-a859-e251-9ca0-5b75aec15208", + "path": "z://MP4\\KaraokeOnVEVO\\Waylon Jennings - Amanda.mp4", + "title": "Amanda" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Anne Murray & Dave Loggins", + "playlist_title": "Nobody Loves Me Like You Do", + "found_song": { + "artist": "Anne Murray ft. Dave Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69b91963-ec09-6145-ed71-d294bc761a80", + "path": "z://MP4\\KaraokeOnVEVO\\Anne Murray & Dave Loggins - Nobody Loves Me Like You Do.mp4", + "title": "Nobody Loves Me Like You Do" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Merle Haggard", + "playlist_title": "A Place To Fall Apart", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "504d5e79-c99d-49db-02a8-a66427b95a02", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - Place To Fall Apart, A (Karaoke & Lyrics).mp4", + "title": "Place To Fall Apart, A" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "George Jones", + "title": "She's My Rock", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Nitty Gritty Dirt Band", + "title": "I Love Only You", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Eddie Rabbitt", + "title": "The Best Year Of My Life", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mark Gray", + "title": "Diamond In The Dust", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Barbara Mandrell", + "title": "Crossword Puzzle", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Crystal Gayle", + "title": "Me Against The Night", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Alabama", + "title": "(There's A) Fire In The Night", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Bellamy Brothers", + "title": "World's Greatest Lover", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Oak Ridge Boys", + "title": "Make My Life With You", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Keith Stegall", + "title": "Whatever Turns You On", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "T.G. Sheppard", + "title": "One Owner Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Sawyer Brown", + "title": "Leona", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Ed Bruce", + "title": "You Turn Me On (Like A Radio)", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "B.J. Thomas", + "title": "The Girl Most Likely to", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 3, + "missing_count": 14, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1984 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Madonna", + "playlist_title": "Like A Virgin", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "82924b53-0656-f1bd-6d2b-1307d37b1a33", + "path": "z://MP4\\Sing King Karaoke\\Madonna - Like A Virgin.mp4", + "title": "Like A Virgin" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Duran Duran", + "playlist_title": "The Wild Boys", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "d1f36c85-476c-0801-8043-2ca41db04fad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wild Boys - Duran Duran.mp4", + "title": "The Wild Boys" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Honeydrippers", + "playlist_title": "Sea Of Love", + "found_song": { + "artist": "The Honeydrippers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50e2318f-4b67-19ff-4ad2-0561af9ab40c", + "path": "z://MP4\\KaraokeOnVEVO\\The Honeydrippers - Sea Of Love.mp4", + "title": "Sea Of Love" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "New Edition", + "playlist_title": "Cool It Now", + "found_song": { + "artist": "New Edition", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9dcd1472-3cbd-b3a3-42bd-a7d013fd7f1e", + "path": "z://CDG\\SBI\\SBI-03\\SB23442 - New Edition - Cool It Now.mp3", + "title": "Cool It Now" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Pat Benatar", + "playlist_title": "We Belong", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "0eb67fb4-8755-3f0f-a920-a06488014cd7", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - We Belong (Karaoke Version).mp4", + "title": "We Belong" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Chaka Khan", + "playlist_title": "I Feel For You", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "guid": "ffe9871c-be9a-a8f3-bcd3-45abee3dda83", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel For You - Chaka Khan.mp4", + "title": "I Feel For You" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Paul McCartney", + "playlist_title": "No More Lonely Nights", + "found_song": { + "artist": "Paul McCartney", + "disabled": false, + "favorite": false, + "guid": "73fd43a4-c100-bb3e-06b0-371e4c9d0591", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke No More Lonely Nights - Paul McCartney.mp4", + "title": "No More Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Jack Wagner", + "playlist_title": "All I Need", + "found_song": { + "artist": "Jack Wagner", + "disabled": false, + "favorite": false, + "guid": "9df9004e-9734-4b81-6b71-bab6400bf8bf", + "path": "z://MP4\\Let's Sing Karaoke\\Wagner, Jack - All I Need (Karaoke & Lyrics).mp4", + "title": "All I Need" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Wham!", + "playlist_title": "Wake Me Up Before You Go-Go", + "found_song": { + "artist": "Wham!", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f190073d-007d-fc5c-9ab1-fa26472afd1e", + "path": "z://MP4\\Sing King Karaoke\\Wham - Wake Me Up Before You Go Go (2.mp4", + "title": "Wake Me Up Before You Go Go" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Bryan Adams", + "playlist_title": "Run To You", + "found_song": { + "artist": "Bryan Adams", + "disabled": false, + "favorite": false, + "guid": "893cf134-64de-00fe-1430-17fd0cc26b1b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Run To You - Bryan Adams.mp4", + "title": "Run To You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "All Through The Night", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "e3dcb50d-db37-1b61-0dfa-4c8fd7070c11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Through The Night - Cyndi Lauper.mp4", + "title": "All Through The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Born In The USA", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "guid": "ba0ac141-5074-6d79-4394-1c37b9e0f402", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Born In The USA - Bruce Springsteen.mp4", + "title": "Born In The USA" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Chicago", + "playlist_title": "You're The Inspiration", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "d94f3e40-7ca5-0b43-df1b-42b41368e34a", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - You're The Inspiration (Karaoke).mp4", + "title": "You're The Inspiration" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Survivor", + "playlist_title": "I Can't Hold Back", + "found_song": { + "artist": "Survivor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d8d29fe9-ed97-27a7-919a-ac159c85add0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Survivor - I Cant Hold Back.mp4", + "title": "I Can't Hold Back" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Jermaine Jackson", + "playlist_title": "Do What You Do", + "found_song": { + "artist": "Jermaine Jackson", + "disabled": false, + "favorite": false, + "guid": "9756e887-9d1d-f608-02cd-25ce4b46c6c4", + "path": "z://MP4\\KaraFun Karaoke\\Do What You Do - Jermaine Jackson Karaoke Version KaraFun.mp4", + "title": "Do What You Do" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Lionel Richie", + "playlist_title": "Penny Lover", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "6f072691-39dd-3f0b-11c0-1d9ecf94e2d4", + "path": "z://CDG\\Various\\Lionel Richie - Penny Lover.mp3", + "title": "Penny Lover" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Foreigner", + "playlist_title": "I Want To Know What Love Is", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "bf2b5cab-4445-1352-3688-5448fc48274f", + "path": "z://MP4\\Sing King Karaoke\\Foreigner - I Want To Know What Love Is (Karaoke Version).mp4", + "title": "I Want To Know What Love Is" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Sheena Easton", + "playlist_title": "Strut", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "14cd4990-3022-16fa-353b-0055f980dabb", + "path": "z://CDG\\Various\\Sheena Easton - Strut.mp3", + "title": "Strut" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tina Turner", + "playlist_title": "Better Be Good To Me", + "found_song": { + "artist": "Tina Turner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5646a295-c515-d339-de6a-d0d4a3084e71", + "path": "z://MP4\\KaraokeOnVEVO\\Tina Turner - Better Be Good To Me.mp4", + "title": "Better Be Good To Me" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Billy Ocean", + "playlist_title": "Lover Boy", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ec34902f-3d28-fea5-fd17-f5f506cd5946", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Ocean - Lover Boy.mp4", + "title": "Lover Boy" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "U2", + "playlist_title": "(Pride) In The Name Of Love", + "found_song": { + "artist": "U2", + "disabled": false, + "favorite": false, + "guid": "f39db30c-bd34-38d6-617b-72cd1f0c2ab8", + "path": "z://CDG\\Various\\U2 - Pride In The Name Of Love.mp3", + "title": "Pride In The Name Of Love" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Steve Perry", + "playlist_title": "Foolish Heart", + "found_song": { + "artist": "Steve Perry", + "disabled": false, + "favorite": false, + "guid": "2ffe5cec-42e1-3082-21b0-cbd00222e4fd", + "path": "z://MP4\\Let's Sing Karaoke\\Perry, Steve - Foolish Heart (Karaoke & Lyrics) (2).mp4", + "title": "Foolish Heart" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Midnight Star", + "playlist_title": "Operator", + "found_song": { + "artist": "Midnight Star", + "disabled": false, + "favorite": false, + "guid": "4107e753-68a9-2ee0-e393-c2fa3a062f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Midnight Star - Operator - SF068 - 10.mp3", + "title": "Operator" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Frankie Goes To Hollywood", + "playlist_title": "Two Tribes", + "found_song": { + "artist": "Frankie Goes To Hollywood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a1645fe-d66e-acb7-9116-6b1774df0f4e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frankie Goes To Hollywood - Two Tribes.mp4", + "title": "Two Tribes" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "General Public", + "playlist_title": "Tenderness", + "found_song": { + "artist": "General Public", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72772726-b1b9-7217-25e9-267561a8f7de", + "path": "z://MP4\\KaraokeOnVEVO\\General Public - Tenderness.mp4", + "title": "Tenderness" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Glenn Frey", + "playlist_title": "The Heat Is On", + "found_song": { + "artist": "Glenn Frey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "25a34bc0-89c9-9634-1ab1-ff4ae0a5ca68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 803\\Glenn Frey - The Heat Is On - SFMW 803 -15.mp3", + "title": "The Heat Is On" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Tonight", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7c6a67b4-37df-ec1d-93bf-f0ac98a034c1", + "path": "z://CDG\\Various\\David Bowie - Tonight.mp3", + "title": "Tonight" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Money Changes Everything", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02b63ce1-0256-de3f-6f36-bcc16b05e5cb", + "path": "z://MP4\\KaraokeOnVEVO\\Cyndi Lauper - Money Changes Everything.mp4", + "title": "Money Changes Everything" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "John Fogerty", + "playlist_title": "The Old Man Down The Road", + "found_song": { + "artist": "John Fogerty", + "disabled": false, + "favorite": false, + "guid": "1e91541f-36f7-9c68-b793-85ea0c5652ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Old Man Down The Road - John Fogerty.mp4", + "title": "The Old Man Down The Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Billy Ocean", + "playlist_title": "Caribbean Queen (No More Love On The Run)", + "found_song": { + "artist": "Billy Ocean", + "disabled": false, + "favorite": false, + "guid": "136ebf1e-172c-0c1c-a522-9f0740bbf0d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Caribbean Queen (No More Love On The Run) - Billy Ocean.mp4", + "title": "Caribbean Queen (No More Love On The Run)" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Just Called To Say I Love You", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "cd80213b-8611-c5ea-8582-a6ffdd76694f", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - I Just Called To Say I Love You (Karaoke Version).mp4", + "title": "I Just Called To Say I Love You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "George Benson", + "playlist_title": "20/20", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "c357fc23-a259-892a-2e6c-2db41a85bfd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 20 20 - George Benson.mp4", + "title": "20 20" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Alphaville", + "playlist_title": "Big In Japan", + "found_song": { + "artist": "Alphaville", + "disabled": false, + "favorite": false, + "guid": "f5601635-c590-4f96-aef6-b89f0954ed1b", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF037\\Alphaville - Big In Japan - SF037 - 04.mp3", + "title": "Big In Japan" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Temptations", + "playlist_title": "Treat Her Like A Lady", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "8edad771-ef84-b372-0a3a-de188f639bca", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Treat Her Like a Lady - The Temptations.mp4", + "title": "Treat Her Like a Lady" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bronski Beat", + "playlist_title": "Small Town Boy", + "found_song": { + "artist": "Bronski Beat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7bc159e6-62c4-3a1f-849f-9a4b07485630", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 829\\Bronski Beat - Small Town Boy - SFMW 829 -05.mp3", + "title": "Small Town Boy" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "David Bowie", + "playlist_title": "Blue Jean", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "c21d8c5c-1fd8-9194-7600-9f7447b401b7", + "path": "z://MP4\\TheKARAOKEChannel\\Blue Jean in the Style of David Bowie with lyrics (no lead vocal).mp4", + "title": "Blue Jean" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 10, + "playlist_artist": "Julian Lennon", + "playlist_title": "Valotte", + "found_song": { + "artist": "Julian Lennon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aa527f38-faae-e19a-937f-352dcd04de76", + "path": "z://MP4\\ZoomKaraokeOfficial\\Julian Lennon - Saltwater.mp4", + "title": "Saltwater" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Don Henley", + "playlist_title": "The Boys Of Summer", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "guid": "e3998085-037c-f55d-c728-269d825f090e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF123\\Don Henley - Boys Of Summer - SF123 - 16.mp3", + "title": "Boys Of Summer" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 65, + "playlist_artist": "Band-Aid", + "playlist_title": "Do They Know It's Christmas?", + "found_song": { + "artist": "Band-Aid", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f33d73bf-e949-f418-a1f6-4472956bc908", + "path": "z://MP4\\Sing King Karaoke\\Band-Aid - Do They Know Its Christmas.mp4", + "title": "Do They Know It's Christmas?" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Teena Marie", + "playlist_title": "Lover Girl", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "caa815e7-f62f-54e3-0c95-9a9e01ac5372", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lovergirl - Teena Marie.mp4", + "title": "Lovergirl" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Daryl Hall John Oates", + "title": "Out Of Touch", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Bob Seger", + "title": "Understanding", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Cars", + "title": "Hello Again", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Philip Bailey With Phil Collins", + "title": "Easy Lover", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rebbie Jackson", + "title": "Centipede", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Ray Parker Jr.", + "title": "Jamie", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Huey Lewis & The News", + "title": "Walking On A Thin Line", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Dan Hartman", + "title": "We Are The Young", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Toto", + "title": "Stranger In Town", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Prince And The Revolution", + "title": "I Would Die 4 U", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Rick Springfield", + "title": "Bruce", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sheila E", + "title": "The Belle Of St. Mark", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "John Cafferty & The Beaver Brown Band", + "title": "Tender Years", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Stevie Wonder", + "title": "Love Light In Flight", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Wham! Featuring George Michael", + "title": "Careless Whisper", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Pointer Sisters", + "title": "Neutron Dance", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Giuffria", + "title": "Call To The Heart", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Daryl Hall John Oates", + "title": "Method Of Modern Love", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Elton John", + "title": "In Neon", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Corey Hart", + "title": "It Ain't Enough", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Ashford & Simpson", + "title": "Solid", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Kool & The Gang", + "title": "Misled", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Time", + "title": "Jungle Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Culture Club", + "title": "Mistake No. 3", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Prince And The Revolution", + "title": "Purple Rain", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Laura Branigan", + "title": "Ti Amo", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Diana Ross", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Barbra Streisand With Kim Carnes", + "title": "Make No Mistake, He's Mine", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "REO Speedwagon", + "title": "I Do'wanna Know", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Sheena Easton", + "title": "Sugar Walls", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jeffrey Osborne", + "title": "Don't Stop", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Roger Hodgson", + "title": "Had A Dream (Sleeping With The Enemy)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dennis DeYoung", + "title": "Desert Moon", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Billy Idol", + "title": "Catch My Fall", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "John Hunter", + "title": "Tragedy", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Shalamar", + "title": "Amnesia", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rick Dees", + "title": "Eat My Shorts", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "John Parr", + "title": "Naughty Naughty", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Tommy Shaw", + "title": "Lonely School", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Billy Squier", + "title": "Eye On You", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "New Edition", + "title": "Mr. Telephone Man", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Rod Stewart", + "title": "All Right Now", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "John Waite", + "title": "Tears", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kenny Rogers", + "title": "The Greatest Gift Of All", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Rick Springfield With Randy Crawford", + "title": "Taxi Dancing", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Kinks", + "title": "Do It Again", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Kenny Rogers With Kim Carnes & James Ingram", + "title": "What About Me?", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Autograph", + "title": "Turn Up The Radio", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Sammy Hagar", + "title": "I Can't Drive 55", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Bananarama", + "title": "The Wild Life", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Dazz Band", + "title": "Let It All Blow", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Culture Club", + "title": "The War Song", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Peter Wolf", + "title": "I Need You Tonight", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Scandal Featuring Patty Smyth", + "title": "Hands Tied", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dennis DeYoung", + "title": "Don't Wait For Heroes", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Melissa Manchester", + "title": "Thief Of Hearts", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 4, + "missing_count": 56, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1983 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "George Strait", + "playlist_title": "You Look So Good In Love", + "found_song": { + "artist": "George Strait", + "disabled": false, + "favorite": false, + "guid": "c4acd2f2-90c8-bc73-709f-40173edbf3c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Look So Good In Love - George Strait.mp4", + "title": "You Look So Good In Love" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "You Made A Wanted Man Of Me", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "760331bc-e0ee-1111-3312-3fb97acb2292", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - You Made A Wanted Man Of Me.mp4", + "title": "You Made A Wanted Man Of Me" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Show Her", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48b23b7a-80a9-1cf1-d77e-b23f4de9e76c", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - Show Her.mp4", + "title": "Show Her" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Merle Haggard", + "playlist_title": "That's The Way Love Goes", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "3a5f9151-0205-8864-edb8-b6b1aca0aa59", + "path": "z://MP4\\Let's Sing Karaoke\\Haggard, Merle - That's The Way Love Goes (Karaoke & Lyrics).mp4", + "title": "That's The Way Love Goes" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Larry Gatlin & The Gatlin Brothers", + "title": "Houston (Means I'm One Day Closer To You)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "T.G. Sheppard", + "title": "Slow Burn", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "John Anderson", + "title": "Black Sheep", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Charley Pride", + "title": "Ev'ry Heart Should Have One", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Oak Ridge Boys", + "title": "Ozark Mountain Jubilee", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "John Conlee", + "title": "In My Eyes", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Nitty Gritty Dirt Band", + "title": "Dance Little Jean", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Vern Gosdin", + "title": "I Wonder Where We'd Be Tonight", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Crystal Gayle", + "title": "The Sound Of Goodbye", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Hank Williams Jr.", + "title": "Queen Of My Heart", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Willie Nelson With Waylon Jennings", + "title": "Take It To The Limit", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Waylon Jennings With Hank Williams, Jr.", + "title": "The Conversation", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Joe Stampley", + "title": "Double Shot (Of My Baby's Love)", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Charly McClain", + "title": "Sentimental Ol' You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Gail Davies", + "title": "You're A Hard Dog (To Keep Under The Porch)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Mark Gray", + "title": "Wounded Hearts", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Shelly West", + "title": "Another Motel Memory", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ed Bruce", + "title": "After All", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Louise Mandrell", + "title": "Runaway Heart", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mel McDaniel", + "title": "I Call It Love", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Kathy Mattea", + "title": "Street Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 4, + "fuzzy_match_count": 0, + "missing_count": 21, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1983 - Hot 100", + "total_songs": 97, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "Duran Duran", + "playlist_title": "Union Of The Snake", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "a78e3d90-aef2-21a0-de4d-3b96dc938f9e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD004 - Duran Duran\\Duran Duran - Union Of The Snake - SFG004 - 05.mp3", + "title": "Union Of The Snake" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Yes", + "playlist_title": "Owner Of A Lonely Heart", + "found_song": { + "artist": "Yes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "827c4888-be91-7b5f-8738-dde120311a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\Yes - Owner Of A Lonely Heart.mp4", + "title": "Owner Of A Lonely Heart" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Lionel Richie", + "playlist_title": "All Night Long (All Night)", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c59709f-6a27-9526-1881-89175c309d53", + "path": "z://MP4\\Sing King Karaoke\\Lionel Richie - All Night Long (All Night.mp4", + "title": "All Night Long (All Night)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Billy Joel", + "playlist_title": "Uptown Girl", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99e893ce-527a-2962-e735-ea73561cd2cc", + "path": "z://MP4\\Sing King Karaoke\\Billy Joel - Uptown Girl.mp4", + "title": "Uptown Girl" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Matthew Wilder", + "playlist_title": "Break My Stride", + "found_song": { + "artist": "Matthew Wilder", + "disabled": false, + "favorite": false, + "guid": "1ed1dcdf-fd83-2b45-be09-6ec26dda28b3", + "path": "z://MP4\\Sing King Karaoke\\Matthew Wilder - Break My Stride (Karaoke Version).mp4", + "title": "Break My Stride" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elton John", + "playlist_title": "I Guess That's Why They Call It The Blues", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "576176e2-d104-3d21-b39a-fdd740fd449c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Guess That s Why They Call It The Blues - Elton John.mp4", + "title": "I Guess That s Why They Call It The Blues" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Romantics", + "playlist_title": "Talking In Your Sleep", + "found_song": { + "artist": "The Romantics", + "disabled": false, + "favorite": false, + "guid": "0532d2e4-80e2-c8cb-4a62-9e1ed94dce09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talking In Your Sleep - The Romantics.mp4", + "title": "Talking In Your Sleep" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Culture Club", + "playlist_title": "Church Of The Poison Mind", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4f6ae87-86ed-bbd0-ad44-52e03e38813e", + "path": "z://MP4\\KaraokeOnVEVO\\Culture Club - Church Of The Poison Mind.mp4", + "title": "Church Of The Poison Mind" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "The Police", + "playlist_title": "Synchronicity II", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "072b6bd8-442d-38df-4fa0-35a64c8a4bf2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Synchronicity II - The Police.mp4", + "title": "Synchronicity II" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Culture Club", + "playlist_title": "Karma Chameleon", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "3b5f86cf-f3d6-65c3-1259-341b308eb1d8", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Karma Chameleon (Karaoke Version).mp4", + "title": "Karma Chameleon" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Big Country", + "playlist_title": "In A Big Country", + "found_song": { + "artist": "Big Country", + "disabled": false, + "favorite": false, + "guid": "747b5418-d3f9-1609-77d5-6c6c3c933c44", + "path": "z://MP4\\Let's Sing Karaoke\\Big Country - In A Big Country (Karaoke & Lyrics).mp4", + "title": "In A Big Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Lionel Richie", + "playlist_title": "Running With The Night", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04f662e4-5410-6426-772a-94326ef773a2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 869\\Lionel Richie - Running With The Night - SFMW 869 -11.mp3", + "title": "Running With The Night" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Barry Manilow", + "playlist_title": "Read 'Em And Weep", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "5d835c02-69d9-663c-ccb9-49b700d2d50e", + "path": "z://MP4\\Let's Sing Karaoke\\Manilow, Barry - Read 'em And Weep (Karaoke & Lyrics).mp4", + "title": "Read 'em And Weep" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "John Cougar Mellencamp", + "playlist_title": "Crumblin' Down", + "found_song": { + "artist": "John Cougar Mellencamp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f9554f85-df2c-9620-1721-29b1d5a4d4dc", + "path": "z://MP4\\KaraokeOnVEVO\\John Cougar Mellencamp - Crumblin' Down.mp4", + "title": "Crumblin' Down" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Genesis", + "playlist_title": "That's All", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "guid": "3128ece3-39c3-405a-82d9-280fb3a2cfcb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke That s All - Genesis.mp4", + "title": "That s All" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "John Mellencamp", + "playlist_title": "Pink Houses", + "found_song": { + "artist": "John Mellencamp", + "disabled": false, + "favorite": false, + "guid": "640e1694-54ac-e4a1-7079-38e32ddc9b5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pink Houses - John Mellencamp.mp4", + "title": "Pink Houses" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Madonna", + "playlist_title": "Holiday", + "found_song": { + "artist": "Madonna", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "67c34432-f5d0-3085-6d4b-e4375c43ac56", + "path": "z://MP4\\KaraokeOnVEVO\\Madonna - Holiday.mp4", + "title": "Holiday" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Jump 'n The Saddle", + "playlist_title": "The Curly Shuffle", + "found_song": { + "artist": "Jump 'n The Saddle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72fcc8ab-3e2a-cb57-5099-e4e16a4005c8", + "path": "z://MP4\\KaraokeOnVEVO\\Jump n The Saddle - The Curly Shuffle.mp4", + "title": "The Curly Shuffle" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "Stay With Me Tonight", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "guid": "3058e9a9-1a92-c83e-72d3-6bb1889f9377", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stay With Me Tonight - Jeffrey Osborne.mp4", + "title": "Stay With Me Tonight" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Christopher Cross", + "playlist_title": "Think Of Laura", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31716e96-c609-b341-ba11-cfb191555e4e", + "path": "z://MP4\\KaraokeOnVEVO\\Christopher Cross - Think Of Laura.mp4", + "title": "Think Of Laura" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Deborah Allen", + "playlist_title": "Baby I Lied", + "found_song": { + "artist": "Deborah Allen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "761b09d6-6bf0-70c4-4cc6-1927e9196a75", + "path": "z://CDG\\Various\\Deborah Allen - Baby I Lied.mp3", + "title": "Baby I Lied" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Rick Springfield", + "playlist_title": "Souls", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aea6f2d4-14d9-6941-9d12-88e8eb6ddaed", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Souls.mp4", + "title": "Souls" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Shannon", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Shannon", + "disabled": false, + "favorite": false, + "guid": "00a29a83-4e81-e2cf-18a4-9fddcd4686c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF068\\Shannon - Let The Music Play - SF068 - 03.mp3", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Billy Joel", + "playlist_title": "An Innocent Man", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0a117e9-30bd-8a5d-8174-55c385692f3f", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - An Innocent Man.mp4", + "title": "An Innocent Man" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Real Life", + "playlist_title": "Send Me An Angel", + "found_song": { + "artist": "Real Life", + "disabled": false, + "favorite": false, + "guid": "25a42944-9bff-3a17-4ecd-4261a77471dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Me an Angel - Real Life.mp4", + "title": "Send Me an Angel" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Michael Jackson", + "playlist_title": "P.Y.T. (Pretty Young Thing)", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "486c61dc-4f4f-7adc-994b-5e0c9a7b65e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Michael Jackson - PYT (Pretty Young Thing).mp4", + "title": "P.Y.T. (Pretty Young Thing)" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Stray Cats", + "playlist_title": "I Won't Stand In Your Way", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6639c134-d7e9-b3be-c218-59ef470e752b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Stray Cats - I Wont Stand In Your Way.mp4", + "title": "I Won't Stand In Your Way" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Dolly Parton", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "0920ff49-12b3-a9d0-e996-c1ea4eb8ef63", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - Dolly Parton.mp4", + "title": "Save The Last Dance For Me" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Nena", + "playlist_title": "99 Luftballons", + "found_song": { + "artist": "Nena", + "disabled": false, + "favorite": false, + "guid": "fc881f99-ac9e-d864-0e56-d6ecc0fc2cf8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 99 Luftballons - Nena.mp4", + "title": "99 Luftballons" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Sheena Easton", + "playlist_title": "Almost Over You", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "e5925a6d-aaae-dac2-b223-0504c4b49794", + "path": "z://MP4\\Sing King Karaoke\\Sheena Easton - Almost Over You (Karaoke Version).mp4", + "title": "Almost Over You" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Kiss", + "playlist_title": "Lick It Up", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7ca643ed-37e5-7d2e-b69e-2b6378d5076b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lick It Up - Kiss.mp4", + "title": "Lick It Up" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "KC", + "playlist_title": "Give It Up", + "found_song": { + "artist": "KC & The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "b4df5498-504a-d9ed-0c17-9e1309fac8f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Give It Up - KC & The Sunshine Band.mp4", + "title": "Give It Up" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Bonnie Tyler", + "playlist_title": "Total Eclipse Of The Heart", + "found_song": { + "artist": "Bonnie Tyler", + "disabled": false, + "favorite": false, + "guid": "01620f62-2f4f-14d1-79a5-5daa439d1550", + "path": "z://MP4\\Sing King Karaoke\\Bonnie Tyler - Total Eclipse Of The Heart (Karaoke Version).mp4", + "title": "Total Eclipse Of The Heart" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Cyndi Lauper", + "playlist_title": "Girls Just Want To Have Fun", + "found_song": { + "artist": "Cyndi Lauper", + "disabled": false, + "favorite": false, + "guid": "fbdad3e5-f94f-43d8-d3e0-d36580a98832", + "path": "z://MP4\\Sing King Karaoke\\Cyndi Lauper - Girls Just Want To Have Fun (Karaoke Version).mp4", + "title": "Girls Just Want To Have Fun" + }, + "match_type": "exact" + }, + { + "position": 80, + "playlist_artist": "Air Supply", + "playlist_title": "Making Love Out Of Nothing At All", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf25b9e1-d366-5b61-aa82-cbb35bcf52a4", + "path": "z://MP4\\Sing King Karaoke\\Air Supply - Making Love Out Of Nothing At All.mp4", + "title": "Making Love Out Of Nothing At All" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Journey", + "playlist_title": "Send Her My Love", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "cd455c8d-fb4e-62ab-7a69-8e29b0ac1f4c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Send Her My Love - Journey.mp4", + "title": "Send Her My Love" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "The Fixx", + "playlist_title": "One Thing Leads To Another", + "found_song": { + "artist": "The Fixx", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9ab6a745-0fea-b36d-f221-b365323d7a71", + "path": "z://MP4\\VocalStarKaraoke\\The Fixx - One Thing Leads To Another.mp4", + "title": "One Thing Leads To Another" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 18, + "playlist_artist": "Kenny Rogers with Dolly Parton", + "playlist_title": "Islands In The Stream", + "found_song": { + "artist": "Kenny Rogers And Dolly Parton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f70d3cc3-0205-6cec-f5c5-f40ff00e179a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Rogers And Dolly Parton - Islands In The Stream.mp4", + "title": "Islands In The Stream" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Rufus & Chaka Khan", + "playlist_title": "Ain't Nobody", + "found_song": { + "artist": "Rufus ft. Chaka Khan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b3106a4-436e-aa6b-66b2-2b84c7aaf68b", + "path": "z://MP4\\Stingray Karaoke\\Rufus & Chaka Khan - Aint Nobody.mp4", + "title": "Ain't Nobody" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "Spandau Ballet", + "playlist_title": "Gold", + "found_song": { + "artist": "Spandau Ballet", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "26d63853-3390-33b4-d814-c06e184ee1e9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Spandau Ballet - Gold.mp4", + "title": "Gold" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 57, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way He Makes Me Feel", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "a10d9af8-0699-947a-b707-e377f744aa28", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Way He Makes Me Feel - Barbra Streisand.mp4", + "title": "The Way He Makes Me Feel" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 70, + "playlist_artist": "Peabo Bryson/Roberta Flack", + "playlist_title": "Tonight, I Celebrate My Love", + "found_song": { + "artist": "Peabo Bryson And Roberta Flack", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d0c1ad71-569a-759e-5430-f3775b4d3ff6", + "path": "z://MP4\\KaraokeOnVEVO\\Peabo Bryson And Roberta Flac - Tonight I Celebrate My Love.mp4", + "title": "Tonight I Celebrate My Love" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 97, + "playlist_artist": "Industry", + "playlist_title": "State Of The Union", + "found_song": { + "artist": "Industry", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f50f0481-b332-b7af-adca-4f909e3fb96c", + "path": "z://CDG\\SBI\\SBI-04\\SB17815 - Industry - State Of The Nation.mp3", + "title": "State Of The Nation" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Paul McCartney And Michael Jackson", + "title": "Say Say Say", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Daryl Hall John Oates", + "title": "Say It Isn't So", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Rolling Stones", + "title": "Undercover Of The Night", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Peter Schilling", + "title": "Major Tom (Coming Home)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Quiet Riot", + "title": "Cum On Feel The Noize", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Irene Cara", + "title": "Why Me?", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kool & The Gang", + "title": "Joanna", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Thirty Eight Special", + "title": "If I'd Been The One", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Debarge", + "title": "Time Will Reveal", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Ray Parker Jr.", + "title": "I Still Can't Get Over Loving You", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Fixx", + "title": "The Sign Of Fire", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Huey Lewis & The News", + "title": "Heart And Soul", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Naked Eyes", + "title": "When The Lights Go Out", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Robert Plant", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Pretenders", + "title": "Middle Of The Road", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Motels", + "title": "Remember The Night", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Stevie Nicks", + "title": "Nightbird", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Paul McCartney", + "title": "So Bad", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "James Ingram With Michael McDonald", + "title": "Yah Mo B There", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Bonnie Tyler", + "title": "Take Me Back", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Rick James And Smokey Robinson", + "title": "Ebony Eyes", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Linda Ronstadt & The Nelson Riddle Orchestra", + "title": "What's New", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Alan Parsons Project", + "title": "You Don't Believe", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Eddie Money", + "title": "Big Crash", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Irene Cara", + "title": "The Dream", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Re-flex", + "title": "The Politics Of Dancing", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Night Ranger", + "title": "(You Can Still) Rock In America", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Midnight Star", + "title": "Wet My Whistle", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Talking Heads", + "title": "This Must Be The Place", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Sheena Easton", + "title": "Telefone (long Distance Love Affair)", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Motels", + "title": "Suddenly Last Summer", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Doors", + "title": "Gloria", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Peabo Bryson & Roberta Flack", + "title": "You're Looking Like Love To Me", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Rainbow", + "title": "Street Of Dreams", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jackson Browne", + "title": "Tender Is The Night", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Herb Alpert", + "title": "Red Hot", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Asia", + "title": "The Smile Has Left Your Eyes", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Michael Stanley Band", + "title": "Someone Like You", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Prince And The Revolution", + "title": "Let's Pretend We're Married/Irresistible Bitch", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Diana Ross", + "title": "Let's Go Up", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Crystal Gayle", + "title": "The Sound Of Goodbye", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Bob Dylan", + "title": "Sweetheart Like You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rodney Dangerfield", + "title": "Rappin' Rodney", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Atlantic Starr", + "title": "Touch A Four Leaf Clover", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pointer Sisters", + "title": "I Need You", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Headpins", + "title": "Just One More Time", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Twilight 22", + "title": "Electric Kingdom", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Jennifer Holliday", + "title": "I Am Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Earth, Wind & Fire", + "title": "Magnetic", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Kim Carnes", + "title": "Invisible Hands", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Paul Simon", + "title": "Allergies", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Streets", + "title": "If Love Should Go", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Prince", + "title": "Delirious", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Dionne Warwick & Luther Vandross", + "title": "How Many Times Can We Say Goodbye", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 37, + "fuzzy_match_count": 6, + "missing_count": 54, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1982 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 4, + "playlist_artist": "Reba McEntire", + "playlist_title": "Can't Even Get The Blues", + "found_song": { + "artist": "Reba McEntire", + "disabled": false, + "favorite": false, + "guid": "a99b001d-c196-0701-86e8-450672c9507e", + "path": "z://MP4\\KaraokeOnVEVO\\Reba McEntire - Can't Even Get The Blues (Karaoke).mp4", + "title": "Can't Even Get The Blues" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Merle Haggard", + "playlist_title": "Going Where The Lonely Go", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb372ba0-43f7-eff3-43ea-1f6b271824e1", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - Going Where The Lonely Go.mp4", + "title": "Going Where The Lonely Go" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "guid": "6f831da9-1d07-ac40-8875-16981af0b351", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Talk To Me - Mickey Gilley.mp4", + "title": "Talk To Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Dolly Parton", + "playlist_title": "Hard Candy Christmas", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "dc1716de-cb3e-a91c-24eb-5141114ee302", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Candy Christmas - Dolly Parton.mp4", + "title": "Hard Candy Christmas" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Oak Ridge Boys", + "playlist_title": "Thank God For Kids", + "found_song": { + "artist": "The Oak Ridge Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95ad2919-4446-7116-04c2-e99c2d6864ae", + "path": "z://MP4\\KaraokeOnVEVO\\The Oak Ridge Boys - Thank God For Kids.mp4", + "title": "Thank God For Kids" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Vern Gosdin", + "playlist_title": "Today My World Slipped Away", + "found_song": { + "artist": "Vern Gosdin", + "disabled": false, + "favorite": false, + "guid": "97aab77f-4956-40a4-4a8b-fdda26e4c9c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Today My World Slipped Away - Vern Gosdin.mp4", + "title": "Today My World Slipped Away" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "John Anderson", + "title": "Wild And Blue", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Jerry Reed", + "title": "The Bird", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Kenny Rogers", + "title": "A Love Song", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "David Frizzell", + "title": "Lost My Baby Blues", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "George Strait", + "title": "Marina Del Rey", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Emmylou Harris", + "title": "(lost His Love) On Our Last Date", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Rosanne Cash", + "title": "I Wonder", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Johnny Lee And Friends", + "title": "Cherokee Fiddle", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "John Conlee", + "title": "I Don't Remember Loving You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Sylvia 1", + "title": "Like Nothing Ever Happened", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Waylon & Willie", + "title": "(Sittin' On) The Dock Of The Bay", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Earl Thomas Conley", + "title": "Somewhere Between Right And Wrong", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Charly McClain", + "title": "With You", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Statler Brothers", + "title": "A Child Of The Fifties", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ronnie Milsap", + "title": "Inside/carolina Dreams", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Moe Bandy", + "title": "Only If There Is Another You", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gene Watson", + "title": "What She Don't Know Won't Hurt Her", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Crystal Gayle", + "title": "'til I Gain Control Again", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Gail Davies", + "title": "Hold On", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 6, + "fuzzy_match_count": 0, + "missing_count": 19, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1982 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Daryl Hall John Oates", + "playlist_title": "Maneater", + "found_song": { + "artist": "Daryl Hall John Oates", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "148e7c2a-1531-d10d-a861-5d1dd74aec4e", + "path": "z://MP4\\Stingray Karaoke\\Daryl Hall John Oates - Maneater.mp4", + "title": "Maneater" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Toni Basil", + "playlist_title": "Mickey", + "found_song": { + "artist": "Toni Basil", + "disabled": false, + "favorite": true, + "guid": "f452d437-1255-fc82-fd0b-02d647970420", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mickey - Toni Basil.mp4", + "title": "Mickey" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Don Henley", + "playlist_title": "Dirty Laundry", + "found_song": { + "artist": "Don Henley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "91340bee-9f2c-ac03-fe02-3ae29cab0442", + "path": "z://CDG\\Various\\Don Henley - Dirty Laundry.mp3", + "title": "Dirty Laundry" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Laura Branigan", + "playlist_title": "Gloria", + "found_song": { + "artist": "Laura Branigan", + "disabled": false, + "favorite": false, + "guid": "258b3b09-3ef0-8c3c-95ad-9d2f2c89fe7a", + "path": "z://MP4\\Let's Sing Karaoke\\Branigan, Laura - Gloria (Karaoke & Lyrics).mp4", + "title": "Gloria" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Joe Jackson", + "playlist_title": "Steppin' Out", + "found_song": { + "artist": "Joe Jackson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1a6b4bb4-6747-3805-9be7-94b51eb98e06", + "path": "z://MP4\\KaraokeOnVEVO\\Joe Jackson - Steppin Out.mp4", + "title": "Steppin' Out" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Sexual Healing", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "d78b429a-6b77-256d-709e-68de5bd086ab", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - Sexual Healing (Karaoke Version).mp4", + "title": "Sexual Healing" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Men At Work", + "playlist_title": "Down Under", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "5ba85df6-af7f-f304-53c4-c0f39160a8a3", + "path": "z://MP4\\Sing King Karaoke\\Men At Work - Down Under (Karaoke Version).mp4", + "title": "Down Under" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stray Cats", + "playlist_title": "Rock This Town", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "07b08819-32c5-ce35-1838-a4c7fc1ef54e", + "path": "z://MP4\\KaraokeOnVEVO\\Stray Cats - Rock This Town.mp4", + "title": "Rock This Town" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lionel Richie", + "playlist_title": "Truly", + "found_song": { + "artist": "Lionel Richie", + "disabled": false, + "favorite": false, + "guid": "47279ab7-6289-7dfd-5a56-ac376a3d3a04", + "path": "z://CDG\\Various\\Lionel Richie - Truly.mp3", + "title": "Truly" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "078990d4-65d6-da0b-3ce1-8385f97b2d5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dionne Warwick - Heartbreaker.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Pat Benatar", + "playlist_title": "Shadows Of The Night", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "1eb35004-a5c6-2cda-c270-cef48ef085b9", + "path": "z://CDG\\Various\\Pat Benatar - Shadows Of The Night.mp3", + "title": "Shadows Of The Night" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Toto", + "playlist_title": "Africa", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "455450f7-3a43-a3a1-7a3d-166ca3f8327a", + "path": "z://MP4\\Sing King Karaoke\\TOTO - Africa (Karaoke Version).mp4", + "title": "Africa" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Clash", + "playlist_title": "Rock The Casbah", + "found_song": { + "artist": "The Clash", + "disabled": false, + "favorite": false, + "guid": "8995fab5-357f-998c-f0a2-5ef52fd406d0", + "path": "z://MP4\\Let's Sing Karaoke\\Clash, The - Rock The Casbah (Karaoke & Lyrics).mp4", + "title": "Rock The Casbah" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Eddie Rabbitt With Crystal Gayle", + "playlist_title": "You And I", + "found_song": { + "artist": "Eddie Rabbitt With Crystal Gayle", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "69303978-1827-82fe-f5f3-a603f34668f6", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt With Crystal Gayle - You And I.mp4", + "title": "You And I" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Phil Collins", + "playlist_title": "You Can't Hurry Love", + "found_song": { + "artist": "Phil Collins", + "disabled": false, + "favorite": false, + "guid": "9df0fd7c-cc7d-9837-9ee4-40ba92ac3e98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Can t Hurry Love - Phil Collins.mp4", + "title": "You Can t Hurry Love" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Joe Cocker And Jennifer Warnes", + "playlist_title": "Up Where We Belong", + "found_song": { + "artist": "Joe Cocker And Jennifer Warnes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e7f7bc7a-a18f-89a7-3d3a-b87f31c1927c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Joe Cocker And Jennifer Warnes - Up Where We Belong.mp4", + "title": "Up Where We Belong" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Adam Ant", + "playlist_title": "Goody Two Shoes", + "found_song": { + "artist": "Adam Ant", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "02e8f3ea-c7f4-5633-9d07-9af8d6300982", + "path": "z://MP4\\KaraokeOnVEVO\\Adam Ant - Goody Two Shoes.mp4", + "title": "Goody Two Shoes" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Jeffrey Osborne", + "playlist_title": "On The Wings Of Love", + "found_song": { + "artist": "Jeffrey Osborne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b61bf6b5-3044-e5ac-50e0-034da1bc9ee0", + "path": "z://MP4\\KaraokeOnVEVO\\Jeffrey Osborne - On The Wings Of Love.mp4", + "title": "On The Wings Of Love" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Billy Squier", + "playlist_title": "Everybody Wants You", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fd1a192-e016-bc8f-bad3-4ffe3a9b4444", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - Everybody Wants You.mp4", + "title": "Everybody Wants You" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Moving Pictures", + "playlist_title": "What About Me", + "found_song": { + "artist": "Moving Pictures", + "disabled": false, + "favorite": false, + "guid": "dd4fba02-f7e1-d9ff-1801-c561de60e3d6", + "path": "z://MP4\\KtvEntertainment\\Moving Pictures - What About Me Karaoke Lyrics.mp4", + "title": "What About Me" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Peter Gabriel", + "playlist_title": "Shock The Monkey", + "found_song": { + "artist": "Peter Gabriel", + "disabled": false, + "favorite": false, + "guid": "0c8e11ac-65b5-0aa0-e43c-24610bfe4cdc", + "path": "z://MP4\\Let's Sing Karaoke\\Gabriel, Peter - Shock The Monkey (Karaoke & Lyrics).mp4", + "title": "Shock The Monkey" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Joel", + "playlist_title": "Allentown", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "f750d441-0ed8-d2cb-c65b-5b7764c92317", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Allentown - Billy Joel.mp4", + "title": "Allentown" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Air Supply", + "playlist_title": "Two Less Lonely People In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0b2dacac-aa1a-f2cd-adc3-58e633881517", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Two Less Lonely People In The World.mp4", + "title": "Two Less Lonely People In The World" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Diana Ross", + "playlist_title": "Muscles", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "c14d86d7-b189-6d8c-b6f1-744e8bc4207e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Muscles - Diana Ross.mp4", + "title": "Muscles" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Stray Cats", + "playlist_title": "Stray Cat Strut", + "found_song": { + "artist": "Stray Cats", + "disabled": false, + "favorite": false, + "guid": "e0fdf64b-d66b-29c4-926b-cce846b9cd3f", + "path": "z://MP4\\TheKARAOKEChannel\\Stray Cat Strut in the Style of Stray Cats karaoke video with lyrics (no lead vocal).mp4", + "title": "Stray Cat Strut" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Barry Manilow", + "playlist_title": "Memory", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "a52c7dcc-3811-513b-0cc1-8914a2512685", + "path": "z://CDG\\Various\\Barry Manilow - Memory.mp3", + "title": "Memory" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Culture Club", + "playlist_title": "Do You Really Want To Hurt Me", + "found_song": { + "artist": "Culture Club", + "disabled": false, + "favorite": false, + "guid": "7bd8953b-3fd6-a7b6-32c3-71cc29c1e5d5", + "path": "z://MP4\\Sing King Karaoke\\Culture Club - Do You Really Want To Hurt Me (Karaoke Version).mp4", + "title": "Do You Really Want To Hurt Me" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Frida", + "playlist_title": "I Know There's Something Going On", + "found_song": { + "artist": "Frida", + "disabled": false, + "favorite": false, + "guid": "9c52c4b5-8815-04d1-a292-4e30ca7c0c4c", + "path": "z://MP4\\KaraFun Karaoke\\I Know There's Something Going On - Frida Karaoke Version KaraFun.mp4", + "title": "I Know There's Something Going On" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Musical Youth", + "playlist_title": "Pass The Dutchie", + "found_song": { + "artist": "Musical Youth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2bfc62d-4de7-2f40-bd36-5de8a8f6e0e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Musical Youth - Pass The Dutchie.mp4", + "title": "Pass The Dutchie" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Prince", + "playlist_title": "1999", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0ba961dc-e770-05b0-9718-05798dc42a89", + "path": "z://MP4\\KaraokeOnVEVO\\Prince - 1999.mp4", + "title": "1999" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Duran Duran", + "playlist_title": "Hungry Like The Wolf", + "found_song": { + "artist": "Duran Duran", + "disabled": false, + "favorite": false, + "guid": "14c7c6b1-7c32-c2ff-c7be-a582e7c78c72", + "path": "z://MP4\\Sing King Karaoke\\Duran Duran - Hungry Like The Wolf (Karaoke Version).mp4", + "title": "Hungry Like The Wolf" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Neil Diamond", + "playlist_title": "Heartlight", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fa870010-5363-6122-e894-7cd2d4e17840", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Heartlight.mp4", + "title": "Heartlight" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Chicago", + "playlist_title": "Love Me Tomorrow", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "guid": "908ff4f5-cc88-69b9-225d-520c1fb23655", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Me Tomorrow - Chicago.mp4", + "title": "Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Sylvia", + "playlist_title": "Nobody", + "found_song": { + "artist": "Sylvia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cd54b80f-102f-de00-22bc-8b92dc81cede", + "path": "z://MP4\\KaraokeOnVEVO\\Sylvia - Nobody.mp4", + "title": "Nobody" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Men At Work", + "playlist_title": "Who Can It Be Now?", + "found_song": { + "artist": "Men At Work", + "disabled": false, + "favorite": false, + "guid": "f193a597-6aa5-f4d4-c719-1287a7a9fcb3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Can It Be Now - Men At Work.mp4", + "title": "Who Can It Be Now" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "I'm So Excited", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c7fed5-491c-e9f0-ecc5-6468fe1e7ad4", + "path": "z://MP4\\Sing King Karaoke\\Pointer Sisters, The - I'm So Excited.mp4", + "title": "I'm So Excited" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 31, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Let's Go Dancin' (ooh La, La, La)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "97c95b5a-582e-7894-7407-2bb6cb2b15a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Go Dancin (Ooh La, La, La) - Kool And The Gang.mp4", + "title": "Let s Go Dancin (Ooh La, La, La)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "Pretenders", + "playlist_title": "Back On The Chain Gang", + "found_song": { + "artist": "The Pretenders", + "disabled": false, + "favorite": false, + "guid": "88c9d1c3-9159-64ae-e834-00d380bac54c", + "path": "z://MP4\\KaraFun Karaoke\\Back On The Chain Gang - The Pretenders Karaoke Version KaraFun.mp4", + "title": "Back On The Chain Gang" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Santana", + "playlist_title": "Nowhere To Run", + "found_song": { + "artist": "Martha and the Vandellas", + "disabled": false, + "favorite": false, + "guid": "c34764c0-12ee-c4f7-58d0-7c73098ab396", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Nowhere to Run - Martha and the Vandellas.mp4", + "title": "Nowhere to Run" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Michael Jackson And Paul McCartney", + "title": "The Girl Is Mine", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Supertramp Featuring Roger Hodgson", + "title": "It's Raining Again", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Patti Austin With James Ingram", + "title": "Baby, Come To Me", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Little River Band", + "title": "The Other Guy", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "ABC", + "title": "The Look Of Love (Part One)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Kenny Loggins", + "title": "Heart To Heart", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Dan Fogelberg", + "title": "Missing You", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Cougar", + "title": "Hand To Hold On To", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The J. Geils Band", + "title": "I Do", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Fleetwood Mac", + "title": "Love In Store", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tom Petty And The Heartbreakers", + "title": "You Got Lucky", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "Shame On The Moon", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Tavares", + "title": "A Penny For Your Thoughts", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Juice Newton", + "title": "Heart Of The Night", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Kim Carnes", + "title": "Does It Make You Remember", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Sammy Hagar", + "title": "Your Love Is Driving Me Crazy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "A Flock Of Seagulls", + "title": "Space Age Love Song", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Michael McDonald", + "title": "I Gotta Try", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Olivia Newton-John", + "title": "Heart Attack", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Ray Parker Jr.", + "title": "Bad Boy", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "America", + "title": "Right Before Your Eyes", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Glenn Frey", + "title": "All Those Lies", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Sonny Charles", + "title": "Put It In A Magazine", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Golden Earring", + "title": "Twilight Zone", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Linda Ronstadt", + "title": "I Knew You When", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Luther Vandross", + "title": "Bad Boy/Having A Party", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Saga", + "title": "On The Loose", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Alan Parsons Project", + "title": "Psychobabble", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Jefferson Starship", + "title": "Be My Lady", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Donna Summer", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Joni Mitchell", + "title": "(you're So Square) Baby, I Don't Care", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Chilliwack", + "title": "Whatcha Gonna Do", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Lanier & Co.", + "title": "After I Cry Tonight", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Wolf", + "title": "Papa Was A Rollin' Stone", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Steve Miller Band", + "title": "Give It Up", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Lee Ritenour", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Charlene & Stevie Wonder", + "title": "Used To Be", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Elvis Presley", + "title": "The Elvis Medley", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Commodores", + "title": "Painted Picture", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Janet Jackson", + "title": "Young Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Pia Zadora", + "title": "The Clapping Song", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Spinners", + "title": "Funny How Time Slips Away", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Rough Trade", + "title": "All Touch", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Hot Chocolate", + "title": "Are You Getting Enough Happiness", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Poco", + "title": "Shoot For The Moon", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Who", + "title": "Eminence Front", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Little Steven", + "title": "Forever", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Hughes/Thrall", + "title": "Beg, Borrow Or Steal", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Donald Fagen", + "title": "I.g.y. (what A Beautiful World)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Crosby, Stills & Nash", + "title": "Southern Cross", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Scandal Featuring Patty Smyth", + "title": "Goodbye To You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bill Conti", + "title": "Theme From Dynasty", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Tyrone Davis", + "title": "Are You Serious", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Michael Stanley Band", + "title": "Take The Time", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Unipop", + "title": "What If (I Said I Love You)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Missing Persons", + "title": "Destination Unknown", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Billy Joel", + "title": "Pressure", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Motels", + "title": "Forever Mine", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rodway", + "title": "Don't Stop Trying", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Steel Breeze", + "title": "You Don't Want Me Anymore", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Survivor", + "title": "American Heartbeat", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 36, + "fuzzy_match_count": 3, + "missing_count": 61, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1981 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Gene Watson", + "playlist_title": "Fourteen Karat Mind", + "found_song": { + "artist": "Gene Watson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "522b3ef8-7111-fc5a-ad90-878ebecdadee", + "path": "z://MP4\\KaraokeOnVEVO\\Gene Watson - Fourteen Karat Mind.mp4", + "title": "Fourteen Karat Mind" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Mac Davis", + "playlist_title": "You're My Bestest Friend", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11bd61d5-72d0-3fba-913f-a5ade28277cf", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Youre My Bestest Friend.mp4", + "title": "You're My Bestest Friend" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Mickey Gilley", + "playlist_title": "Lonely Nights", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5cfe171-a9f3-da58-dc11-f3355e462ea8", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Lonely Nights.mp4", + "title": "Lonely Nights" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Eddy Raven", + "playlist_title": "Who Do You Know In California", + "found_song": { + "artist": "Eddy Raven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "645817fc-e087-b932-edba-759b24e90f7e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddy Raven - Who Do You Know In California.mp4", + "title": "Who Do You Know In California" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Ronnie McDowell", + "playlist_title": "Watchin' Girls Go By", + "found_song": { + "artist": "Ronnie McDowell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd313172-a52f-8c85-18f5-2d0c2c4532c5", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie McDowell - Watchin Girls Go By.mp4", + "title": "Watchin' Girls Go By" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Lee Greenwood", + "playlist_title": "It Turns Me Inside Out", + "found_song": { + "artist": "Lee Greenwood", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb734e20-b743-bdbc-e63b-559aa6b50440", + "path": "z://MP4\\KaraokeOnVEVO\\Lee Greenwood - It Turns Me Inside Out.mp4", + "title": "It Turns Me Inside Out" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Don Williams", + "playlist_title": "Lord, I Hope This Day Is Good", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "a269f092-ef3e-5c50-ca22-3d0bccf75018", + "path": "z://MP4\\KaraokeOnVEVO\\Don Williams - Lord, I Hope This Day Is Good (Karaoke).mp4", + "title": "Lord, I Hope This Day Is Good" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 1, + "artist": "Alabama", + "title": "Love In The First Degree/Ride The Train", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Crystal Gayle", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Conway Twitty", + "title": "Red Neckin Love Makin Night", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Bellamy Brothers", + "title": "You're My Favorite Star", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Gary Morris", + "title": "Headed For A Heartache", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Moe Bandy", + "title": "Rodeo Romeo", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Earl Thomas Conley", + "title": "Tell Me Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Statler Brothers", + "title": "Years Ago", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Kenny Rogers", + "title": "Blaze Of Glory", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Dottie West", + "title": "It's High Time", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jim Reeves And Patsy Cline", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Leon Everette", + "title": "Midnight Rodeo", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Kieran Kane", + "title": "It's Who You Love", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Mel McDaniel", + "title": "Preaching Up A Storm", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Ray Price", + "title": "Diamonds In The Stars", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 10, + "fuzzy_match_count": 0, + "missing_count": 15, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1981 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Physical", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "07a9e3ce-bd55-21ad-1f3b-8a95a4c343a3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Physical - Olivia Newton-John.mp4", + "title": "Physical" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Foreigner", + "playlist_title": "Waiting For A Girl Like You", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "b54e701b-b5fa-b734-a7b9-eae2cc4e954e", + "path": "z://MP4\\Let's Sing Karaoke\\Foreigner - Waiting For A Girl Like You (Karaoke & Lyrics).mp4", + "title": "Waiting For A Girl Like You" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Quarterflash", + "playlist_title": "Harden My Heart", + "found_song": { + "artist": "Quarterflash", + "disabled": false, + "favorite": false, + "guid": "476449bc-f9c7-cb08-bf5b-bb36584249a7", + "path": "z://MP4\\Let's Sing Karaoke\\Quarterflash - Harden My Heart (Karaoke & Lyrics).mp4", + "title": "Harden My Heart" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Diana Ross", + "playlist_title": "Why Do Fools Fall In Love", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "710bba03-e9c8-527f-b5d3-b2021041b954", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Why Do Fools Fall In Love - Diana Ross.mp4", + "title": "Why Do Fools Fall In Love" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Stevie Nicks With Don Henley", + "playlist_title": "Leather And Lace", + "found_song": { + "artist": "Stevie Nicks With Don Henley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "55d4737c-1438-c19e-81cb-0a122e3d23d7", + "path": "z://MP4\\KaraokeOnVEVO\\Stevie Nicks With Don Henley - Leather And Lace.mp4", + "title": "Leather And Lace" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Journey", + "playlist_title": "Don't Stop Believin'", + "found_song": { + "artist": "Journey", + "disabled": false, + "favorite": false, + "guid": "a2729458-a4a5-1231-333d-ee3f0e9cf966", + "path": "z://MP4\\Sing King Karaoke\\Journey - Don t Stop Believin (Karaoke Version).mp4", + "title": "Don t Stop Believin" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Lindsey Buckingham", + "playlist_title": "Trouble", + "found_song": { + "artist": "Lindsey Buckingham", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d5d7bc0-d272-59c4-c7a3-037b1711dc41", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 867\\Lindsey Buckingham - Trouble - SFMW 867 -03.mp3", + "title": "Trouble" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Neil Diamond", + "playlist_title": "Yesterday's Songs", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8a43b3db-aeae-b63d-d2f7-362954d848b4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Yesterdays Songs.mp4", + "title": "Yesterday's Songs" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "George Benson", + "playlist_title": "Turn Your Love Around", + "found_song": { + "artist": "George Benson", + "disabled": false, + "favorite": false, + "guid": "60bcf99b-c37b-cd62-5979-f41ecd46d927", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF032\\George Benson - Turn Your Love Around - SF032 - 06.mp3", + "title": "Turn Your Love Around" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Juice Newton", + "playlist_title": "The Sweetest Thing (I've Ever Known)", + "found_song": { + "artist": "Juice Newton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1163b346-9cfa-6ad0-93cf-45dbe8c03880", + "path": "z://MP4\\KaraokeOnVEVO\\Juice Newton - The Sweetest Thing (Ive Ever Known.mp4", + "title": "The Sweetest Thing (I've Ever Known)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Paul Davis", + "playlist_title": "Cool Night", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "c2940e54-6b37-3875-de79-d02591ad4741", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - Cool Night (Karaoke & Lyrics).mp4", + "title": "Cool Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Police", + "playlist_title": "Every Little Thing She Does Is Magic", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "929a0857-1550-9c07-cb72-e0cadec75850", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Every Little Thing She Does Is Magic - The Police.mp4", + "title": "Every Little Thing She Does Is Magic" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "Someone Could Lose A Heart Tonight", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f7694ae4-b5d7-f791-9220-19a3caf646c5", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - Someone Could Lose A Heart Tonight.mp4", + "title": "Someone Could Lose A Heart Tonight" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "I Wouldn't Have Missed It For The World", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8712e2a4-da09-702e-7d17-9ba0796e3959", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - I Wouldnt Have Missed It For The World.mp4", + "title": "I Wouldn't Have Missed It For The World" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Waiting On A Friend", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "76184c69-189e-5aed-1343-3b0c4a50d2fb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Waiting On A Friend - The Rolling Stones.mp4", + "title": "Waiting On A Friend" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "She's Got A Way", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "652741a1-e2e0-419c-8eaa-6df9db730a07", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s Got A Way - Billy Joel.mp4", + "title": "She s Got A Way" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Leader Of The Band", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "dc46c4e5-bd44-89ff-06f7-53f98d1d96f1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Band - Dan Fogelberg.mp4", + "title": "Leader Of The Band" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Don McLean", + "playlist_title": "Castles In The Air", + "found_song": { + "artist": "Don McLean", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1003985-79c5-09e4-aab9-bb17b31cefa0", + "path": "z://MP4\\KaraokeOnVEVO\\Don McLean - Castles In The Air.mp4", + "title": "Castles In The Air" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Start Me Up", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "9dc329c6-3843-8393-8873-a6f16bc3eae4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Start Me Up - The Rolling Stones.mp4", + "title": "Start Me Up" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Loverboy", + "playlist_title": "Working For The Weekend", + "found_song": { + "artist": "Loverboy", + "disabled": false, + "favorite": false, + "guid": "31807eee-320d-045d-c543-09887806943f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working For The Weekend - Loverboy.mp4", + "title": "Working For The Weekend" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Air Supply", + "playlist_title": "Sweet Dreams", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9bbad07f-33c9-f35a-a0b1-e885b5b67418", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Sweet Dreams.mp4", + "title": "Sweet Dreams" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Barry Manilow", + "playlist_title": "The Old Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0738d93d-ea47-a9c4-63e0-fba8c6d19da8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - The Old Songs.mp4", + "title": "The Old Songs" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Alabama", + "playlist_title": "Love In The First Degree", + "found_song": { + "artist": "Alabama", + "disabled": false, + "favorite": false, + "guid": "6972b03b-3df9-d22a-7a22-02e89af71d20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love In The First Degree - Alabama.mp4", + "title": "Love In The First Degree" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Christopher Cross", + "playlist_title": "Arthur's Theme (Best That You Can Do)", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "39497573-7e0b-fc43-1a9c-62c29b8bb736", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Arthurs Theme (Best That You Can Do).mp4", + "title": "Arthur's Theme (Best That You Can Do)" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Billy Squier", + "playlist_title": "My Kinda Lover", + "found_song": { + "artist": "Billy Squier", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cf17a10-28c6-3658-4bdb-dbd55aed25fe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Squier - My Kinda Lover.mp4", + "title": "My Kinda Lover" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Bob Seger", + "playlist_title": "Tryin' To Live My Life Without You", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "09e3798e-718f-eac5-12b4-e6a566acea49", + "path": "z://MP4\\Let's Sing Karaoke\\Seger, Bob - Tryin' To Live My Life Without You (Karaoke & Lyrics).mp4", + "title": "Tryin' To Live My Life Without You" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Rick Springfield", + "playlist_title": "I've Done Everything For You", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a4e2d9e5-e3e7-e9c3-fb3b-01888f1237ee", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Ive Done Everything For You.mp4", + "title": "I've Done Everything For You" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Rush", + "playlist_title": "Closer To The Heart", + "found_song": { + "artist": "Rush", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b4324aa8-d9de-3f9a-8715-4f1d6e22cf30", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rush - Closer To The Heart.mp4", + "title": "Closer To The Heart" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "Genesis", + "playlist_title": "Abacab", + "found_song": { + "artist": "Genesis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a542e21e-57a9-bb79-e87c-79563cee1c92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Genesis - Abacab.mp4", + "title": "Abacab" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Four Tops", + "playlist_title": "When She Was My Girl", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6446bb2-31c2-488f-f749-083b451792bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF107\\Four Tops - When She Was My Girl - SF107 - 12.mp3", + "title": "When She Was My Girl" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Through The Years", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a66a9eb-5988-9d3c-2938-77d9a823ab02", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Through The Years.mp4", + "title": "Through The Years" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Al Jarreau", + "playlist_title": "We're In This Love Together", + "found_song": { + "artist": "Al Jarreau", + "disabled": false, + "favorite": false, + "guid": "8392305f-0ad2-5433-6f2e-9630d0723f9e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We re In This Love Together - Al Jarreau.mp4", + "title": "We re In This Love Together" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Carl Carlton", + "playlist_title": "She's A Bad Mama Jama (She's Built, She's Stacked)", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "guid": "e005caff-f6b3-feb7-8033-5758438d92c7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke She s A Bad Mama Jama (She s Built, She s Stacked) - Carl Carlton.mp4", + "title": "She s A Bad Mama Jama (She s Built, She s Stacked)" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Sheena Easton", + "playlist_title": "For Your Eyes Only", + "found_song": { + "artist": "Sheena Easton", + "disabled": false, + "favorite": false, + "guid": "f4cd6bf7-75b0-05f7-0128-9a9b5c9c3e14", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Eyes Only - Sheena Easton.mp4", + "title": "For Your Eyes Only" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Prince", + "playlist_title": "Controversy", + "found_song": { + "artist": "Prince", + "disabled": false, + "favorite": false, + "guid": "d8cc1d0b-eac0-a120-3bd9-43be72e7615c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD022 - Prince\\Prince - Controversy - SFG022 - 13.mp3", + "title": "Controversy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "Let's Groove", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a3f91c47-1af8-d50a-506e-6efef683348a", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - Lets Groove.mp4", + "title": "Let's Groove" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 11, + "playlist_artist": "The J. Geils Band", + "playlist_title": "Centerfold", + "found_song": { + "artist": "The J. Geils Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d6d7faa9-d982-3193-68ad-fc5d4c5febe7", + "path": "z://MP4\\KaraokeOnVEVO\\The J. Geils Band - Centerfold.mp4", + "title": "Centerfold" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Comin' In And Out Of Your Life", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "88e47d96-bd4c-d234-5524-0366d5c56dbe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Comin' In And Out Of Your Life - SFG042 - 04.mp3", + "title": "Comin' In And Out Of Your Life" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Take My Heart (You Can Have It If You Want It)", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "259469f4-953e-e5db-52d3-8c479a968eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take My Heart (You Can Have It If You Want It) - Kool And The Gang.mp4", + "title": "Take My Heart (You Can Have It If You Want It)" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 27, + "playlist_artist": "Go-Go's", + "playlist_title": "Our Lips Are Sealed", + "found_song": { + "artist": "The Go-Go's", + "disabled": false, + "favorite": false, + "guid": "39f3f1e4-0915-e205-9247-486aa427c706", + "path": "z://MP4\\KaraFun Karaoke\\Our Lips Are Sealed - The Go-Go's Karaoke Version KaraFun.mp4", + "title": "Our Lips Are Sealed" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Queen & David Bowie", + "playlist_title": "Under Pressure", + "found_song": { + "artist": "Queen ft. David Bowie", + "disabled": false, + "favorite": false, + "guid": "3c549377-616e-051f-82ef-dae19b86439f", + "path": "z://MP4\\Sing King Karaoke\\Queen & David Bowie - Under Pressure (Karaoke Version).mp4", + "title": "Under Pressure" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "Rick Springfield", + "playlist_title": "Love Is Alright Tonite", + "found_song": { + "artist": "Rick Springfield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "11875738-bf02-a6b2-3bf2-104272904711", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rick Springfield - Love Is Alright Tonight.mp4", + "title": "Love Is Alright Tonight" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Luther Vandross", + "playlist_title": "Never Too Much", + "found_song": { + "artist": "Luther Vandross", + "disabled": false, + "favorite": false, + "guid": "cde6a4ea-4ea3-ebb5-190c-570da149782b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Too Much - Luther Vandross.mp4", + "title": "Never Too Much" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Little River Band", + "playlist_title": "The Night Owls", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "e5ed2681-e656-5082-3912-690eb57fad22", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Night Owls - Little River Band.mp4", + "title": "The Night Owls" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Twilight", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "82ff25f5-6a83-961e-cb28-2bee75bee48d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Blue - Electric Light Orchestra.mp4", + "title": "Midnight Blue" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Daryl Hall John Oates", + "title": "I Can't Go For That (No Can Do)", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Rod Stewart", + "title": "Young Turks", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Royal Philharmonic Orchestra", + "title": "Hooked On Classics", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Commodores", + "title": "Oh No", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Air Supply", + "title": "Here I Am (Just When I Thought I Was Over You)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Cars", + "title": "Shake It Up", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Stevie Woods", + "title": "Steal The Night", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Chilliwack", + "title": "My Girl (Gone, Gone, Gone)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Beach Boys", + "title": "Come Go With Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Sheena Easton", + "title": "You Could Have Been With Me", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Steve Miller Band", + "title": "Heart Like A Wheel", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Little River Band", + "title": "Take It Easy On Me", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Sneaker", + "title": "More Than Just The Two Of Us", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Daryl Hall John Oates", + "title": "Private Eyes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Lulu", + "title": "If I Were You", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Bertie Higgins", + "title": "Key Largo", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Greg Lake", + "title": "Let Me Love You Once", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Genesis", + "title": "No Reply At All", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Ringo Starr", + "title": "Wrack My Brain", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Eddie Schwartz", + "title": "All Our Tomorrows", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Survivor", + "title": "Poor Man's Son", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Al Jarreau", + "title": "Breakin' Away", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Mike Post featuring Larry Carlton", + "title": "The Theme From Hill Street Blues", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Sheila", + "title": "Little Darlin'", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Balance", + "title": "Falling In Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jennifer Warnes", + "title": "Could It Be Love", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Del Shannon", + "title": "Sea Of Love", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Bee Gees", + "title": "Living Eyes", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Barry Manilow", + "title": "Somewhere Down The Road", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Irene Cara", + "title": "Anyone Can See", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Steve Carlisle", + "title": "Wkrp In Cincinnati", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Quincy Jones Featuring James Ingram", + "title": "Just Once", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "Feel Like A Number", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Henry Paul Band", + "title": "Keeping Our Love Alive", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Carpenters", + "title": "Those Good Old Dreams", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Quincy Jones Featuring James Ingram", + "title": "One Hundred Ways", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Patti Austin", + "title": "Every Home Should Have One", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Crystal Gayle", + "title": "The Woman In Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Donnie Iris", + "title": "Love Is Like A Rock", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Kiss", + "title": "A World Without Heroes", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Neil Young/Crazy Horse", + "title": "Southern Pacific", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Diesel", + "title": "Sausalito Summernight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The John Hall Band", + "title": "Crazy (Keep On Falling)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Leif Garrett", + "title": "Runaway Rita", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Bill Champlin", + "title": "Tonight Tonight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Vangelis", + "title": "Chariots Of Fire - Titles", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Kenny Rogers", + "title": "Blaze Of Glory", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Kano", + "title": "Can't Hold Back (Your Loving)", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Dave Stewart and Barbara Gaskin", + "title": "It's My Party", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Kinks", + "title": "Better Things", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Rick James", + "title": "Super Freak (Part I)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Diana Ross & Lionel Richie", + "title": "Endless Love", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Dan Fogelberg", + "title": "Hard To Say", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Chris Christian", + "title": "I Want You, I Need You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Rufus With Chaka Khan", + "title": "Sharing The Love", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 10, + "missing_count": 55, + "needs_manual_review": 10 + } + }, + { + "playlist_title": "1980 - Hot Country Songs", + "total_songs": 25, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Johnny Lee", + "playlist_title": "One In A Million", + "found_song": { + "artist": "Johnny Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01e09019-2703-0b07-1a58-b8d3b281a442", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Lee - One In A Million.mp4", + "title": "One In A Million" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Merle Haggard", + "playlist_title": "I Think I'll Stay Here And Drink", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ce1bdfd2-de35-f29e-fb80-b0a10dad4e84", + "path": "z://MP4\\KaraokeOnVEVO\\Merle Haggard - I Think Ill Stay Here And Drink.mp4", + "title": "I Think I'll Stay Here And Drink" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Bellamy Brothers", + "playlist_title": "Lovers Live Longer", + "found_song": { + "artist": "The Bellamy Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ad9e9bf5-3772-9072-09de-3a6587e28c9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Bellamy Brothers - Lovers Live Longer.mp4", + "title": "Lovers Live Longer" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Mickey Gilley", + "playlist_title": "That's All That Matters To Me", + "found_song": { + "artist": "Mickey Gilley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973e158b-56b2-782c-37f1-f3b159434180", + "path": "z://MP4\\KaraokeOnVEVO\\Mickey Gilley - Thats All That Matters To Me.mp4", + "title": "That's All That Matters To Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "T.G. Sheppard", + "playlist_title": "I Feel Like Loving You Again", + "found_song": { + "artist": "T.G. Sheppard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01ded068-f73a-519d-9e8c-75a0419990ea", + "path": "z://MP4\\KaraokeOnVEVO\\T.G. Sheppard - I Feel Like Loving You Again.mp4", + "title": "I Feel Like Loving You Again" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Charly McClain", + "playlist_title": "Who's Cheatin' Who", + "found_song": { + "artist": "Charly McClain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "af64da96-a7b5-dd67-bb67-b54101479725", + "path": "z://MP4\\KaraokeOnVEVO\\Charly McClain - Whos Cheatin Who.mp4", + "title": "Who's Cheatin' Who" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [], + "missing_songs": [ + { + "position": 4, + "artist": "Conway Twitty", + "title": "A Bridge That Just Won't Burn", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Barbara Mandrell", + "title": "The Best Of Strangers", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Leon Everette", + "title": "Giving Up Easy", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Mac Davis", + "title": "Texas In My Rear View Mirror", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Janie Frickie", + "title": "Down To My Last Broken Heart", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Oak Ridge Boys", + "title": "Beautiful You", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Terri Gibbs", + "title": "Somebodys Knockin'", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Gene Watson", + "title": "No One Will Ever Know", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Porter Wagoner", + "title": "If You Go, I'll Follow You", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Statler Brothers", + "title": "Don't Forget Yourself", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Razzy Bailey", + "title": "I Keep Coming Back/True Life Country Music", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Bobby Goldsboro", + "title": "Goodbye Marie", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Johnny Duncan", + "title": "Acapulo", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Ed Bruce", + "title": "Girls, Women Ladies", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gail Davies", + "title": "I'll Be There (If You Ever Want Me)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "John Anderson", + "title": "1959", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Susie Allanson", + "title": "Dance The Two Step", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 8, + "fuzzy_match_count": 0, + "missing_count": 17, + "needs_manual_review": 0 + } + }, + { + "playlist_title": "1980 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "John Lennon", + "playlist_title": "(Just Like) Starting Over", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "9c6ae1d3-a1bb-f8d2-1518-9fd7eb035f2f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Just Like) Starting Over - John Lennon.mp4", + "title": "(Just Like) Starting Over" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Neil Diamond", + "playlist_title": "Love On The Rocks", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3644b051-105d-fe04-51c9-1136874798bf", + "path": "z://MP4\\Sing King Karaoke\\Neil Diamond - Love On The Rocks.mp4", + "title": "Love On The Rocks" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Lady", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "d9e2445a-98a2-9c54-a0da-070cefe014be", + "path": "z://MP4\\KaraFun Karaoke\\Lady - Kenny Rogers Karaoke Version KaraFun.mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Bruce Springsteen", + "playlist_title": "Hungry Heart", + "found_song": { + "artist": "Bruce Springsteen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b90d87d-e30f-201e-9055-a1043f0c4541", + "path": "z://MP4\\KaraokeOnVEVO\\Bruce Springsteen - Hungry Heart.mp4", + "title": "Hungry Heart" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Air Supply", + "playlist_title": "Every Woman In The World", + "found_song": { + "artist": "Air Supply", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95bbb30c-34f4-69f5-3d73-b8397cd264bd", + "path": "z://MP4\\KaraokeOnVEVO\\Air Supply - Every Woman In The World.mp4", + "title": "Every Woman In The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Blondie", + "playlist_title": "The Tide Is High", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1acf653d-d0b4-899c-e976-044aa98534df", + "path": "z://MP4\\KaraokeOnVEVO\\Blondie - The Tide Is High.mp4", + "title": "The Tide Is High" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Pat Benatar", + "playlist_title": "Hit Me With Your Best Shot", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "3d122f45-bef5-9448-31a6-586c77d18f68", + "path": "z://MP4\\Sing King Karaoke\\Pat Benatar - Hit Me With Your Best Shot (Karaoke Version).mp4", + "title": "Hit Me With Your Best Shot" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Police", + "playlist_title": "De Do Do Do, De Da Da Da", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "e4d6a6e5-73a3-750a-df66-78d2a3c92327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke De Do Do Do, De Da Da Da - The Police.mp4", + "title": "De Do Do Do, De Da Da Da" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Master Blaster (Jammin')", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f471ec92-3eb8-52ab-8275-34c0a57b4025", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Master Blaster (Jammin ) - Stevie Wonder.mp4", + "title": "Master Blaster (Jammin )" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Queen", + "playlist_title": "Another One Bites The Dust", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "3985b279-9b4c-7dd7-4324-e6dd60fbcc59", + "path": "z://MP4\\Sing King Karaoke\\Queen - Another One Bites The Dust (Karaoke Version).mp4", + "title": "Another One Bites The Dust" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Made It Through The Rain", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a721918-21e5-f478-efce-a33532e9492c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Barry Manilow - I Made It Through The Rain.mp4", + "title": "I Made It Through The Rain" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Korgis", + "playlist_title": "Everybody's Got To Learn Sometime", + "found_song": { + "artist": "The Korgis", + "disabled": false, + "favorite": false, + "guid": "987976db-6741-39f1-0fd4-74f971c9e3dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everybody s Got To Learn Sometime - The Korgis.mp4", + "title": "Everybody s Got To Learn Sometime" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Eddie Rabbitt", + "playlist_title": "I Love A Rainy Night", + "found_song": { + "artist": "Eddie Rabbitt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "06c9d870-d9a1-01db-8647-3b3b1df6df5f", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Rabbitt - I Love A Rainy Night.mp4", + "title": "I Love A Rainy Night" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Steely Dan", + "playlist_title": "Hey Nineteen", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ab920d9b-aace-6be1-f105-d11f4a102f49", + "path": "z://MP4\\Let's Sing Karaoke\\Steely Dan - Hey Nineteen (Karaoke & Lyrics).mp4", + "title": "Hey Nineteen" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Don Williams", + "playlist_title": "I Believe In You", + "found_song": { + "artist": "Don Williams", + "disabled": false, + "favorite": false, + "guid": "8dd6f516-19cc-b930-b735-16700ac77539", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Believe In You - Don Williams.mp4", + "title": "I Believe In You" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Devo", + "playlist_title": "Whip It", + "found_song": { + "artist": "Devo", + "disabled": false, + "favorite": false, + "guid": "4d82452e-af76-e04e-bdd3-de0b3efd993e", + "path": "z://CDG\\Sound Choice Karaoke\\SC2086\\SC2086-04 - Devo - Whip It.mp3", + "title": "Whip It" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Christopher Cross", + "playlist_title": "Never Be The Same", + "found_song": { + "artist": "Christopher Cross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc4676e4-1bf8-f414-901e-38eaced2ee47", + "path": "z://MP4\\ZoomKaraokeOfficial\\Christopher Cross - Never Be The Same.mp4", + "title": "Never Be The Same" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Dolly Parton", + "playlist_title": "9 To 5", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "a307057f-8c39-a3c8-3806-dbf0b7f511a4", + "path": "z://MP4\\Sing King Karaoke\\Dolly Parton - 9 To 5 (Karaoke Version).mp4", + "title": "9 To 5" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Diana Ross", + "playlist_title": "I'm Coming Out", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "e48b2163-f4c7-136c-31b2-cad8595ac337", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - I'm Coming Out (Karaoke Version).mp4", + "title": "I'm Coming Out" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Dr. Hook", + "playlist_title": "Girls Can Get It", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1fc3aef-88da-a07d-cbfa-5a3eb021760d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Girls Can Get It.mp4", + "title": "Girls Can Get It" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "ABBA", + "playlist_title": "The Winner Takes It All", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "45eb6ff0-a9ce-48ff-8447-717721417d4a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Winner Takes It All (Karaoke Version).mp4", + "title": "The Winner Takes It All" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Same Old Lang Syne", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "fb88cd10-bec5-76aa-72f4-c985e60d5bd3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Same Old Lang Syne - Dan Fogelberg.mp4", + "title": "Same Old Lang Syne" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "REO Speedwagon", + "playlist_title": "Keep On Loving You", + "found_song": { + "artist": "REO Speedwagon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1bf7ae8d-b9ec-23f3-3e9c-626c46f08c56", + "path": "z://MP4\\KaraokeOnVEVO\\Reo Speedwagon - Keep On Loving You (2.mp4", + "title": "Keep On Loving You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Teena Marie", + "playlist_title": "I Need Your Lovin'", + "found_song": { + "artist": "Teena Marie", + "disabled": false, + "favorite": false, + "guid": "ddbff09c-8aa8-c09f-42c5-468f7dc25a88", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Need Your Lovin - Teena Marie.mp4", + "title": "I Need Your Lovin" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "Smoky Mountain Rain", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05dafd5e-f338-d1f3-3dfe-2e82ff21051f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ronnie Milsap - Smoky Mountain Rain.mp4", + "title": "Smoky Mountain Rain" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "Love T.K.O.", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "guid": "4a1b802e-fbcc-21e7-4341-cf4af45cf3f6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love T.K.O. - Teddy Pendergrass.mp4", + "title": "Love T.K.O." + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Eagles", + "playlist_title": "Seven Bridges Road", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "bca1053b-f35e-fc62-b317-3547ade37b94", + "path": "z://CDG\\Various\\Eagles - Seven Bridges Road.mp3", + "title": "Seven Bridges Road" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Supertramp", + "playlist_title": "Breakfast In America", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8232174-f1ee-11a8-b311-5cf609b86257", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Supertramp - Breakfast In America - SFMW 876 -04.mp3", + "title": "Breakfast In America" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Blues Brothers", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "guid": "48d7a720-f369-7eed-d518-0d619e776550", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD031 - The Full Monty & Blues Brothers\\Blues Brothers - Who's Making Love - SFG031 - 16.mp3", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Cliff Richard", + "playlist_title": "A Little In Love", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "662b7e3a-3476-f4aa-d3b0-8e1165921378", + "path": "z://MP4\\ZoomKaraokeOfficial\\Cliff Richard - A Little In Love.mp4", + "title": "A Little In Love" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Stephanie Mills", + "playlist_title": "Never Knew Love Like This Before", + "found_song": { + "artist": "Stephanie Mills", + "disabled": false, + "favorite": false, + "guid": "833ec988-3ccf-4fdd-ecb9-3bc95ab1b0d7", + "path": "z://MP4\\Let's Sing Karaoke\\Mills, Stephanie - Never Knew Love Like This Before (Karaoke & Lyrics).mp4", + "title": "Never Knew Love Like This Before" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "David Bowie", + "playlist_title": "Fashion", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "a2457115-22b5-cc6f-af3c-745e0724a05e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD055 - David Bowie And Marc Bolan & T Rex\\David Bowie - Fashion - SFG055 - 08.mp3", + "title": "Fashion" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Vapors", + "playlist_title": "Turning Japanese", + "found_song": { + "artist": "The Vapors", + "disabled": false, + "favorite": false, + "guid": "196321c0-dda9-aa0c-bc3c-c6a32dc7d3ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Turning Japanese - The Vapors.mp4", + "title": "Turning Japanese" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Roger Daltrey", + "playlist_title": "Without Your Love", + "found_song": { + "artist": "McVicar Soundtrack / Roger Daltrey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "652151f4-44fb-ab13-179d-e85619a28a03", + "path": "z://MP4\\ZoomKaraokeOfficial\\McVicar Soundtrack Roger Daltrey - Without Your Love.mp4", + "title": "Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Diana Ross", + "playlist_title": "Upside Down", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c97907b-cd4d-d443-da42-b98677acc064", + "path": "z://MP4\\ZoomKaraokeOfficial\\Diana Ross - Upside Down.mp4", + "title": "Upside Down" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Outlaws", + "playlist_title": "(Ghost) Riders In The Sky", + "found_song": { + "artist": "Outlaws", + "disabled": false, + "favorite": false, + "guid": "d5b1a673-9042-4266-f3cd-3110c5ca64ce", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ghost Riders In The Sky - Outlaws.mp4", + "title": "Ghost Riders In The Sky" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Willie Nelson", + "playlist_title": "On The Road Again", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "7aa27b4c-5ee3-dc59-1131-70151271b395", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke On The Road Again - Willie Nelson.mp4", + "title": "On The Road Again" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Irene Cara", + "playlist_title": "Out Here On My Own", + "found_song": { + "artist": "Irene Cara", + "disabled": false, + "favorite": false, + "guid": "b6696c92-08c6-1130-256c-8d1d1da6ced3", + "path": "z://MP4\\TheKARAOKEChannel\\Irene Cara - Out Here On My Own.mp4", + "title": "Out Here On My Own" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Carly Simon", + "playlist_title": "Jesse", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "eb146dd5-d382-ee15-21e0-7323ddedc6a4", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Jesse (Karaoke).mp4", + "title": "Jesse" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 17, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Celebration", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7b430092-658e-ce97-6d8c-9d7b641ee2f5", + "path": "z://MP4\\Sing King Karaoke\\Kool & The Gang - Celebration (2.mp4", + "title": "Celebration" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 22, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Woman In Love", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bd8e983-3178-9bb0-0ae6-06df3d4ec92a", + "path": "z://MP4\\VocalStarKaraoke\\Barbra Streisand - Woman In Love.mp4", + "title": "Woman In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Cliff Richard", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "d98b46e2-8133-b7eb-4683-405bd57fd0ac", + "path": "z://MP4\\KaraFun Karaoke\\Dreamin' - Cliff Richard Karaoke Version KaraFun.mp4", + "title": "Dreamin'" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "AC/DC", + "playlist_title": "Back In Black", + "found_song": { + "artist": "AC/DC", + "disabled": false, + "favorite": false, + "guid": "da4dbc82-e902-968c-b9e6-a1bf9158814f", + "path": "z://MP4\\TheKARAOKEChannel\\AC DC - Back In Black (Karaoke With Lyrics)@Stingray Karaoke.mp4", + "title": "Back In Black" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Leo Sayer", + "title": "More Than I Can Say", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Barbra Streisand & Barry Gibb", + "title": "Guilty", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Heart", + "title": "Tell It Like It Is", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Rod Stewart", + "title": "Passion", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Diana Ross", + "title": "It's My Turn", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Andy Gibb", + "title": "Time Is Time", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Olivia Newton-John & Cliff Richard", + "title": "Suddenly", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Daryl Hall John Oates", + "title": "You've Lost That Lovin' Feeling", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Doobie Brothers", + "title": "One Step Closer", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Delbert McClinton", + "title": "Giving It Up For Your Love", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Tierra", + "title": "Together", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Boz Scaggs", + "title": "Miss Sun", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Waylon", + "title": "Theme From The Dukes Of Hazzard (Good Ol' Boys)", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harry Chapin", + "title": "Sequel", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Fred Knoblock & Susan Anton", + "title": "Killin' Time", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Donna Summer", + "title": "Cold Love", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Babys", + "title": "Turn And Walk Away", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Michael Stanley Band", + "title": "He Can't Love You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Queen", + "title": "Need Your Loving Tonight", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bette Midler", + "title": "My Mother's Eyes", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "L.T.D.", + "title": "Shine On", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Climax Blues Band", + "title": "Gotta Have More Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Earth, Wind & Fire", + "title": "You", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Jacksons", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Rockpile", + "title": "Teacher Teacher", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Alan Parsons Project", + "title": "Games People Play", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Stevie Wonder", + "title": "I Ain't Gonna Stand For It", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "John Cougar", + "title": "This Time", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Randy Meisner", + "title": "Deep Inside My Heart", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Donna Summer", + "title": "The Wanderer", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Rita Coolidge", + "title": "Fool That I Am", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Pointer Sisters", + "title": "He's So Shy", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bob Seger", + "title": "The Horizontal Bop", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Pointer Sisters", + "title": "Could I Be Dreaming", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Star Wars Intergalactic Droid Choir & Chorale", + "title": "What Can You Get A Wookiee For Christmas (When He Already Owns A Comb?)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Donnie Iris", + "title": "Ah! Leah!", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Oak", + "title": "Set The Night On Fire", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dionne Warwick", + "title": "Easy Love", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Jacksons", + "title": "Lovely One", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Shalamar", + "title": "Full Of Fire", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Dire Straits", + "title": "Skateaway", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Aretha Franklin", + "title": "United Together", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Willis The Guard & Vigorish", + "title": "Merry Christmas In The NFL", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Kings", + "title": "Switchin' To Glide/This Beat Goes On", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Stacy Lattisaw", + "title": "Let Me Be Your Angel", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Cheap Trick", + "title": "Stop This Game", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "J.D. Drews", + "title": "Don't Want No-Body", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Pendulum", + "title": "Gypsy Spirit", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Kansas", + "title": "Got To Rock On", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 4 Seasons", + "title": "Spend The Night In Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Manhattan Transfer", + "title": "Trickle Trickle", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Paul Simon", + "title": "One-Trick Pony", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Reddings", + "title": "Remote Control", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Pure Prairie League", + "title": "I Can't Stop The Feelin'", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jackie English", + "title": "Once A Night", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Marcy Levy & Robin Gibb", + "title": "Help Me!", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jimmy Hall", + "title": "I'm Happy That Love Has Found You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 4, + "missing_count": 57, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1979 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rupert Holmes", + "playlist_title": "Escape (The Pina Colada Song)", + "found_song": { + "artist": "Rupert Holmes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6e1fa6ca-0201-4faa-523a-8ab8f8613f4c", + "path": "z://MP4\\Sing King Karaoke\\Rupert Holmes - Escape (The Pina Colada Song.mp4", + "title": "Escape (The Pina Colada Song)" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Styx", + "playlist_title": "Babe", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "e5776d60-84e6-7aa4-bcd3-c59bbfc4c40b", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Babe (Karaoke & Lyrics) (2).mp4", + "title": "Babe" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "J.D.Souther", + "playlist_title": "You're Only Lonely", + "found_song": { + "artist": "J. D. Souther", + "disabled": false, + "favorite": false, + "guid": "7a84d28a-9e4b-c930-1ec1-a7d66ffa7690", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You re Only Lonely - J. D. Souther.mp4", + "title": "You re Only Lonely" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Supertramp", + "playlist_title": "Take The Long Way Home", + "found_song": { + "artist": "Supertramp", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7f7e2ab9-6a08-1c7d-64ec-24c8c4d7e9d4", + "path": "z://MP4\\KaraokeOnVEVO\\Supertramp - Take The Long Way Home.mp4", + "title": "Take The Long Way Home" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Michael Jackson", + "playlist_title": "Rock With You", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "77be5301-0d2d-5a5f-d5ee-cfb1dafffebb", + "path": "z://MP4\\Let's Sing Karaoke\\Jackson, Michael - Rock With You (Karaoke & Lyrics) (2) (2).mp4", + "title": "Rock With You" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Cliff Richard", + "playlist_title": "We Don't Talk Anymore", + "found_song": { + "artist": "Cliff Richard", + "disabled": false, + "favorite": false, + "guid": "b381b1bd-aa48-d186-8949-2f8a746b19dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Don t Talk Anymore - Cliff Richard.mp4", + "title": "We Don t Talk Anymore" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Foreigner", + "playlist_title": "Head Games", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7258bb94-d489-f049-ed96-71be0e29614b", + "path": "z://CDG\\Various\\Foreigner - Head Games.mp3", + "title": "Head Games" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dr. Hook", + "playlist_title": "Better Love Next Time", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4aef2358-9035-be2e-d12d-5a07748da747", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - Better Love Next Time.mp4", + "title": "Better Love Next Time" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Heartache Tonight", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "79b795f7-47d0-a1f8-ac27-d8d3a12729b1", + "path": "z://CDG\\Various\\Eagles - Heartache Tonight.mp3", + "title": "Heartache Tonight" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Kenny Loggins", + "playlist_title": "This Is It", + "found_song": { + "artist": "Kenny Loggins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "31aa53d2-6eed-bb08-67b3-e932001f7c6b", + "path": "z://MP4\\KaraokeOnVEVO\\Kenny Loggins - This Is It.mp4", + "title": "This Is It" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Kenny Rogers", + "playlist_title": "Coward Of The County", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "c73cf52d-1498-50fc-008e-562ef6488714", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - Coward Of The County (Karaoke Version).mp4", + "title": "Coward Of The County" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Don't Do Me Like That", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6bd1e0-c98e-e3af-b5e6-9b1f349ca329", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Dont Do Me Like That.mp4", + "title": "Don't Do Me Like That" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Barry Manilow", + "playlist_title": "Ships", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "901d4952-0094-028d-c937-bbc27bdc7f34", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - Ships.mp4", + "title": "Ships" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "ABBA", + "playlist_title": "Chiquitita", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "8810d678-17bc-554f-430a-ca0cfe9485b1", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Chiquitita (Karaoke Version).mp4", + "title": "Chiquitita" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "M", + "playlist_title": "Pop Muzik", + "found_song": { + "artist": "M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d1373d3b-2c44-ae19-bf98-3e9a34982b3e", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 828\\M - Pop Muzik - SFMW 828 -10.mp3", + "title": "Pop Muzik" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Dionne Warwick", + "playlist_title": "Deja Vu", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "b3c38dc1-c382-a2b8-7a45-d8ed73579d53", + "path": "z://MP4\\Let's Sing Karaoke\\Warwick, Dionne - Deja Vu (Karaoke & Lyrics).mp4", + "title": "Deja Vu" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Sara", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f69d0f15-1f84-f687-4476-282e21d387b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Fleetwood Mac - Sara.mp4", + "title": "Sara" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Anne Murray", + "playlist_title": "Broken Hearted Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f2c04d1a-be06-8a44-2693-84f1a8a01a4a", + "path": "z://MP4\\Sing King Karaoke\\Anne Murray - Broken Hearted Me.mp4", + "title": "Broken Hearted Me" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Blackfoot", + "playlist_title": "Train, Train", + "found_song": { + "artist": "Blackfoot", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5819a31b-6820-7998-3d50-fc2b200c774d", + "path": "z://MP4\\KaraokeOnVEVO\\Blackfoot - Train, Train.mp4", + "title": "Train, Train" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Sugarhill Gang", + "playlist_title": "Rapper's Delight", + "found_song": { + "artist": "Sugarhill Gang", + "disabled": false, + "favorite": false, + "guid": "a3d371e0-a965-81e1-57e6-798847e7b1be", + "path": "z://CDG\\Various\\Sugarhill Gang - Rapper's Delight.mp3", + "title": "Rapper's Delight" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "The Buggles", + "playlist_title": "Video Killed The Radio Star", + "found_song": { + "artist": "The Buggles", + "disabled": false, + "favorite": false, + "guid": "4fe59e34-ea75-1fc8-cfe3-d2c7448b4ee9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Video Killed The Radio Star - The Buggles.mp4", + "title": "Video Killed The Radio Star" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Donna Summer", + "playlist_title": "Dim All The Lights", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "63cca6f3-6806-ce7d-c1e5-5db2ee8faaab", + "path": "z://CDG\\Various\\Donna Summer - Dim All The Lights.mp3", + "title": "Dim All The Lights" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Suzi Quatro", + "playlist_title": "She's In Love With You", + "found_song": { + "artist": "Suzi Quatro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cc27d180-78ac-884f-2c24-9c5bfce44bcf", + "path": "z://MP4\\ZoomKaraokeOfficial\\Suzi Quatro - Shes In Love With You.mp4", + "title": "She's In Love With You" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "TUSK", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "78e334f0-551c-d74f-65e0-85f5a13d0a0b", + "path": "z://MP4\\KaraFun Karaoke\\Tusk - Fleetwood Mac Karaoke Version KaraFun.mp4", + "title": "Tusk" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Rainbow", + "playlist_title": "Since You Been Gone", + "found_song": { + "artist": "Rainbow", + "disabled": false, + "favorite": false, + "guid": "9d547c31-f4ca-4ecf-8635-231b09122a4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since You Been Gone - Rainbow.mp4", + "title": "Since You Been Gone" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Queen", + "playlist_title": "Crazy Little Thing Called Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "2d5fc258-5d29-e2bb-388b-88303af54001", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crazy Little Thing Called Love - Queen.mp4", + "title": "Crazy Little Thing Called Love" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Last Train To London", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "81ef8af7-7b4d-2f4e-064c-788c3fe92a5c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Last Train To London - Electric Light Orchestra.mp4", + "title": "Last Train To London" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Fool In The Rain", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "672eec1e-83a4-0f82-0986-62ab8a357a44", + "path": "z://CDG\\Various\\Led Zeppelin - Fool In The Rain.mp3", + "title": "Fool In The Rain" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Neil Diamond", + "playlist_title": "September Morn'", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "4e22fa17-d416-ad7a-c208-6973aaf736e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke September Morn - Neil Diamond.mp4", + "title": "September Morn" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Anne Murray", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b01144c-bf70-c7b8-08dc-ab6f1a68a288", + "path": "z://MP4\\VocalStarKaraoke\\Anne Murray - Daydream Believer.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "The Police", + "playlist_title": "Message In A Bottle", + "found_song": { + "artist": "The Police", + "disabled": false, + "favorite": false, + "guid": "fad72290-cd6e-21f5-8ceb-66d61017bd3d", + "path": "z://MP4\\Sing King Karaoke\\The Police - Message In A Bottle (Karaoke Version).mp4", + "title": "Message In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Pat Benatar", + "playlist_title": "Heartbreaker", + "found_song": { + "artist": "Pat Benatar", + "disabled": false, + "favorite": false, + "guid": "4d122c4d-b3fc-560d-f634-e4734ffaa916", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartbreaker - Pat Benatar.mp4", + "title": "Heartbreaker" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dan Fogelberg", + "playlist_title": "Longer", + "found_song": { + "artist": "Dan Fogelberg", + "disabled": false, + "favorite": false, + "guid": "3844c7cd-be87-40d7-2ba3-f458dd4398af", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longer - Dan Fogelberg.mp4", + "title": "Longer" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Shalamar", + "playlist_title": "The Second Time Around", + "found_song": { + "artist": "Shalamar", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6b19ad48-d74f-6e94-fc01-fbd671e03f9e", + "path": "z://MP4\\KaraokeOnVEVO\\Shalamar - The Second Time Around.mp4", + "title": "The Second Time Around" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Rod Stewart", + "playlist_title": "I Don't Want To Talk About It", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "f69a81ed-efc1-7428-80cb-399901dc4bda", + "path": "z://MP4\\Sing King Karaoke\\Rod Stewart - I Don't Want To Talk About It (Karaoke Version).mp4", + "title": "I Don't Want To Talk About It" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Dollar", + "playlist_title": "Shooting Star", + "found_song": { + "artist": "Dollar", + "disabled": false, + "favorite": false, + "guid": "8a85919b-9119-c59c-afd8-004d722f3313", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 914\\Dollar - Shooting Star - SFMW914 - 10.mp3", + "title": "Shooting Star" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Jimmy Buffett", + "playlist_title": "Volcano", + "found_song": { + "artist": "Jimmy Buffett", + "disabled": false, + "favorite": false, + "guid": "7705c23b-7112-f884-10f7-2fe1d0af0715", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Volcano - Jimmy Buffett.mp4", + "title": "Volcano" + }, + "match_type": "exact" + }, + { + "position": 94, + "playlist_artist": "Kenny Rogers", + "playlist_title": "You Decorated My Life", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "2886776b-05ba-46b6-7d83-39375645cfbf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Decorated My Life - Kenny Rogers.mp4", + "title": "You Decorated My Life" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Blondie", + "playlist_title": "Dreaming", + "found_song": { + "artist": "Blondie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "afec49e9-b92f-2989-cb63-97958fdc0eb0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Blondie - Dreaming.mp4", + "title": "Dreaming" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "Please Don't Go", + "found_song": { + "artist": "Kc And The Sunshine Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95faa1ff-36cb-3a07-2817-fac39fef97d8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 832\\Kc And The Sunshine Band - Please Don't Go - SFMW 832 -07.mp3", + "title": "Please Don't Go" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 4, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Send One Your Love", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "db22bd5e-2945-eb7a-ffae-8ee19ee508d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Your Love - Stevie Wonder.mp4", + "title": "For Your Love" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Commodores", + "playlist_title": "Still", + "found_song": { + "artist": "The Commodores", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e988415e-e8ee-dd82-7147-d50fe0081cef", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Commodores - Still.mp4", + "title": "Still" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 6, + "playlist_artist": "Captain & Tennille", + "playlist_title": "Do That To Me One More Time", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "guid": "4a428cb9-beee-0645-ab0e-5833189a7971", + "path": "z://MP4\\Let's Sing Karaoke\\Captain & Tennille - Do That To Me One More Time (Karaoke & Lyrics).mp4", + "title": "Do That To Me One More Time" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 8, + "playlist_artist": "Barbra Streisand/Donna Summer", + "playlist_title": "No More Tears (Enough Is Enough)", + "found_song": { + "artist": "Barbra Streisand/Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfefff5f-9d94-c39d-754b-70d2722f3113", + "path": "z://MP4\\KaraokeOnVEVO\\Barbra StreisandDonna Summer - No More Tears (Enough Is Enough.mp4", + "title": "No More Tears (Enough Is Enough)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 9, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Ladies Night", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "71134192-c701-e10b-13cf-a6ca0b1e72ac", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ladies Night - Kool And The Gang.mp4", + "title": "Ladies Night" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 12, + "playlist_artist": "Little River Band", + "playlist_title": "Cool Change", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "88ba8128-3224-7a6a-c0c2-aa68e30b720c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cool Change - Little River Band.mp4", + "title": "Cool Change" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 17, + "playlist_artist": "Eagles", + "playlist_title": "The Long Run", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92e004ca-1212-5e50-1a33-45763c4fb0e1", + "path": "z://CDG\\Various\\Eagles - Long Run.mp3", + "title": "Long Run" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Jefferson Starship", + "playlist_title": "Jane", + "found_song": { + "artist": "Jefferson Starship", + "disabled": false, + "favorite": false, + "guid": "7e51306e-2ade-7620-7113-99a611e2f229", + "path": "z://CDG\\Various\\Jefferson Starship - Sara.mp3", + "title": "Sara" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Pains", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Rita Coolidge", + "playlist_title": "I'd Rather Leave While I'm In Love", + "found_song": { + "artist": "Rita Colerid", + "disabled": false, + "favorite": false, + "guid": "8b9bb87b-0d9d-d54d-a45b-1ee37e02bc2c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF014\\Rita Colerid - I'd Rather Leave While I'm In Love - SF014 - 13.mp3", + "title": "I'd Rather Leave While I'm In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "The Spinners", + "playlist_title": "Working My Way Back To You/Forgive Me, Girl", + "found_song": { + "artist": "The Spinners", + "disabled": false, + "favorite": false, + "guid": "d61baec2-6093-c93a-78cc-90819cf7c968", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Working My Way Back To You Forgive Me Girl (LP version) - The Spinners.mp4", + "title": "Working My Way Back To You Forgive Me Girl (LP version)" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Billy Preston & Syreeta", + "playlist_title": "With You I'm Born Again", + "found_song": { + "artist": "Billy Preston", + "disabled": false, + "favorite": false, + "guid": "88bbb0b5-4e4b-f7d4-2d35-c12867a6be25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke With You I'm Born Again - Billy Preston.mp4", + "title": "With You I'm Born Again" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 15, + "artist": "Smokey Robinson", + "title": "Cruisin'", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Pablo Cruise", + "title": "I Want You Tonight", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Prince", + "title": "I Wanna Be Your Lover", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Crystal Gayle", + "title": "Half The Way", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Daryl Hall John Oates", + "title": "Wait For Me", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Alan Parsons Project", + "title": "Damned If I Do", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Isaac Hayes", + "title": "Don't Let Go", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Foghat", + "title": "Third Time Lucky (First Time I Was A Fool)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "John Cougar", + "title": "I Need A Lover", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Teri DeSario With K.C.", + "title": "Yes, I'm Ready", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Richie Furay", + "title": "I Still Have Dreams", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Herb Alpert", + "title": "Rotation", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The O'Jays", + "title": "Forever Mine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Tom Johnston", + "title": "Savannah Nights", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Kermit (Jim Henson)", + "title": "Rainbow Connection", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Steve Forbert", + "title": "Romeo's Tune", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Mistress", + "title": "Mistrusted Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Santana", + "title": "You Know That I Love You", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Rufus & Chaka", + "title": "Do You Love What You Feel", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Robert John", + "title": "Lonely Eyes", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Cheap Trick", + "title": "Voices", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "John Stewart", + "title": "Lost Her In The Sun", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Flying Lizards", + "title": "Money", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Bar-Kays", + "title": "Move Your Boogie Body", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Joyce Cobb", + "title": "Dig The Gold", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Styx", + "title": "Why Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Commodores", + "title": "Wonderland", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Inmates", + "title": "Dirty Water", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Dirt Band", + "title": "An American Dream", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Dann Rogers", + "title": "Looks Like Love Again", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Pleasure", + "title": "Glide", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bonnie Raitt", + "title": "You're Gonna Get What's Coming", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Barry Manilow", + "title": "When I Wanted You", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Peter Brown", + "title": "Stargazer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Leif Garrett", + "title": "Memorize Your Number", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Earth, Wind & Fire", + "title": "Star", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Robert Palmer", + "title": "Can We Still Be Friends", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Toto", + "title": "99", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bonnie Pointer", + "title": "I Can't Help Myself (Sugar Pie, Honey Bunch)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jennifer Warnes", + "title": "Don't Make Me Over", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Cugini", + "title": "Let Me Sleep Alone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Switch", + "title": "I Call Your Name", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Lobo", + "title": "Holdin' On For Dear Love", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Chris Thompson & Night", + "title": "If You Remember Me", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Herb Alpert", + "title": "Rise", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Village People", + "title": "Ready For The 80's", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Frank Mills", + "title": "Peter Piper", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Lauren Wood", + "title": "Please Don't Leave", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 39, + "fuzzy_match_count": 13, + "missing_count": 48, + "needs_manual_review": 13 + } + }, + { + "playlist_title": "1978 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Chic", + "playlist_title": "Le Freak", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a5abf394-6ffe-e92d-01ae-4f37994dd07d", + "path": "z://MP4\\Sing King Karaoke\\Chic - Le Freak.mp4", + "title": "Le Freak" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bee Gees", + "playlist_title": "Too Much Heaven", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "da4476fb-ab2f-b8e3-4925-72fef1b3d153", + "path": "z://CDG\\Various\\Bee Gees - Too Much Heaven.mp3", + "title": "Too Much Heaven" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Billy Joel", + "playlist_title": "My Life", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "275d0a4a-71ea-121a-8fe3-6776ad62624e", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Joel - My Life.mp4", + "title": "My Life" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Dr. Hook", + "playlist_title": "Sharing The Night Together", + "found_song": { + "artist": "Dr. Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "36213bb8-a127-1c6c-65d9-040c4d8019d7", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook - Sharing The Night Together.mp4", + "title": "Sharing The Night Together" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Village People", + "playlist_title": "Y.M.C.A.", + "found_song": { + "artist": "Village People", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd141b9a-9d19-c410-db33-37ac02756c75", + "path": "z://MP4\\Sing King Karaoke\\Village People - YMCA.mp4", + "title": "Y.M.C.A." + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Toto", + "playlist_title": "Hold The Line", + "found_song": { + "artist": "Toto", + "disabled": false, + "favorite": false, + "guid": "6a133bc5-c6b7-7174-48dd-040c1d50aadc", + "path": "z://MP4\\KaraFun Karaoke\\Hold the Line - Toto Karaoke Version KaraFun.mp4", + "title": "Hold the Line" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Ooh Baby Baby", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "6cafdf1d-b296-22b0-d6b4-d99251ec07c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ooh Baby Baby - Linda Ronstadt.mp4", + "title": "Ooh Baby Baby" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "MacArthur Park", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "guid": "87e8a086-df91-0b62-002b-c8f5767e7275", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke MacArthur Park - Donna Summer.mp4", + "title": "MacArthur Park" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "A Little More Love", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b8cd8197-d049-dfd5-bddd-c6e7edfc13ac", + "path": "z://MP4\\ZoomKaraokeOfficial\\Olivia Newton-John - A Little More Love.mp4", + "title": "A Little More Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79ac7b14-6c5b-51d8-b2c0-4167170b196d", + "path": "z://MP4\\KaraokeOnVEVO\\Eagles - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Chaka Khan", + "playlist_title": "I'm Every Woman", + "found_song": { + "artist": "Chaka Khan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3e15c32-5c21-48bb-919f-bcd0ad3c9646", + "path": "z://MP4\\KaraokeOnVEVO\\Chaka Khan - Im Every Woman.mp4", + "title": "I'm Every Woman" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Hot Chocolate", + "playlist_title": "Every 1's A Winner", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "03f527d7-c2cb-ccb7-3728-cadeef862586", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hot Chocolate - Every 1s A Winner.mp4", + "title": "Every 1's A Winner" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Nicolette Larson", + "playlist_title": "Lotta Love", + "found_song": { + "artist": "Nicolette Larson", + "disabled": false, + "favorite": false, + "guid": "505ea347-37d6-5e3c-eaba-f574f07793bd", + "path": "z://MP4\\Let's Sing Karaoke\\Nicolette Larson - Lotta Love (Karaoke & Lyrics).mp4", + "title": "Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fire", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Ambrosia", + "playlist_title": "How Much I Feel", + "found_song": { + "artist": "Ambrosia", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a00fe174-4288-9df4-5721-d142c87bf1d7", + "path": "z://CDG\\Various\\Ambrosia - How Much I Feel.mp3", + "title": "How Much I Feel" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Heart", + "playlist_title": "Straight On", + "found_song": { + "artist": "Heart", + "disabled": false, + "favorite": false, + "guid": "b3d7d263-1f91-d616-52b1-8c88b2c67029", + "path": "z://MP4\\Let's Sing Karaoke\\Heart - Straight On (Karaoke & Lyrics).mp4", + "title": "Straight On" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Elton John", + "playlist_title": "Part-Time Love", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e68df877-4e49-fde4-499d-9c8a53d1c3a0", + "path": "z://MP4\\singsongsmusic\\Part Time Love - Karaoke HD (In the style of Elton John).mp4", + "title": "Part Time Love" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Boston", + "playlist_title": "A Man I'll Never Be", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf991361-0b07-6665-1731-c2a64c7c9421", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - A Man Ill Never Be.mp4", + "title": "A Man I'll Never Be" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Kenny Rogers", + "playlist_title": "The Gambler", + "found_song": { + "artist": "Kenny Rogers", + "disabled": false, + "favorite": false, + "guid": "ee3113cf-c1d5-3888-9389-7600a7ad05b2", + "path": "z://MP4\\Sing King Karaoke\\Kenny Rogers - The Gambler (Karaoke Version).mp4", + "title": "The Gambler" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Talking Heads", + "playlist_title": "Take Me To The River", + "found_song": { + "artist": "Talking Heads", + "disabled": false, + "favorite": false, + "guid": "50660a60-f2c6-5a7e-63dd-3dcf062fb327", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Take Me To The River - Talking Heads.mp4", + "title": "Take Me To The River" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Rod Stewart", + "playlist_title": "Da Ya Think I'm Sexy?", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "90e9c708-1024-642c-be4d-721aea09f6e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Da Ya Think I m Sexy - Rod Stewart.mp4", + "title": "Da Ya Think I m Sexy" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Melissa Manchester", + "playlist_title": "Don't Cry Out Loud", + "found_song": { + "artist": "Melissa Manchester", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7e708b1d-9ba8-5366-e8ac-bd53f596648c", + "path": "z://MP4\\Sing King Karaoke\\Melissa Manchester - Dont Cry Out Loud.mp4", + "title": "Don't Cry Out Loud" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Rick James", + "playlist_title": "Mary Jane", + "found_song": { + "artist": "Rick James", + "disabled": false, + "favorite": false, + "guid": "e67697f0-a082-ca0f-eccd-e26e4c958fbf", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - Rick James - Mary Jane (Karaoke) (Vocal Reduction).mp4", + "title": "Mary Jane" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Cheryl Lynn", + "playlist_title": "Got To Be Real", + "found_song": { + "artist": "Cheryl Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6718ef7a-9a9e-ab1e-6c7e-27a2e5f8002f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Cheryl Lynn - Got To Be Real - SFMW 827 -06.mp3", + "title": "Got To Be Real" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Meat Loaf", + "playlist_title": "You Took The Words Right Out Of My Mouth", + "found_song": { + "artist": "Meat Loaf", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f99a7346-bc91-20e1-41e2-18c411eaf937", + "path": "z://MP4\\KaraokeOnVEVO\\Meat Loaf - You Took The Words Right Out Of My Mouth.mp4", + "title": "You Took The Words Right Out Of My Mouth" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Foreigner", + "playlist_title": "Double Vision", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "guid": "800c3280-2836-7d6d-07d7-203d3a615eef", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Double Vision - Foreigner.mp4", + "title": "Double Vision" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rose Royce", + "playlist_title": "Love Don't Live Here Anymore", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e0b4e9ed-bc20-0d23-3395-035e771618bc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Rose Royce - Love Don't Live Here Anymore - SF103 - 09.mp3", + "title": "Love Don't Live Here Anymore" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Blues Brothers", + "playlist_title": "Soul Man", + "found_song": { + "artist": "Blues Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6a743b8a-d4d8-016b-7bb1-a3c4780c2c7d", + "path": "z://MP4\\VocalStarKaraoke\\Blues Brothers - Soul Man.mp4", + "title": "Soul Man" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry Manilow", + "playlist_title": "Somewhere In The Night", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "2d035955-9211-e612-92cb-5c1c70c270c3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Somewhere In The Night - Barry Manilow.mp4", + "title": "Somewhere In The Night" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Player", + "playlist_title": "Silver Lining", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecb1a978-5fb4-35bf-6661-4944a4e1ad3a", + "path": "z://MP4\\Sing King Karaoke\\Player - Silver Lining.mp4", + "title": "Silver Lining" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Lindisfarne", + "playlist_title": "Run For Home", + "found_song": { + "artist": "Lindisfarne", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6112c2f6-7457-ac92-06fa-296240373cbb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Lindisfarne - Run For Home.mp4", + "title": "Run For Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Foreigner", + "playlist_title": "Blue Morning, Blue Day", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "756f7e22-64f9-3d9f-230b-d5e10b412f7c", + "path": "z://CDG\\Various\\Foreigner - Blue Morning Blue Day.mp3", + "title": "Blue Morning Blue Day" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "I Will Survive", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "8dcf7256-8e1b-2076-b5cd-98df911ed9de", + "path": "z://MP4\\Sing King Karaoke\\Gloria Gaynor - I Will Survive (Karaoke Version).mp4", + "title": "I Will Survive" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "Marshall Hain", + "playlist_title": "Dancing In The City", + "found_song": { + "artist": "Marshall Hain", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eed99ea4-59f0-b12b-918e-a8e6f69172c6", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 872\\Marshall Hain - Dancing In The City - SFMW 872 -04.mp3", + "title": "Dancing In The City" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Justin Hayward", + "playlist_title": "Forever Autumn", + "found_song": { + "artist": "Justin Hayward", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e938e55e-b53a-d088-e296-093c39df04ea", + "path": "z://MP4\\KaraokeOnVEVO\\Justin Hayward - Forever Autumn.mp4", + "title": "Forever Autumn" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Bobby Caldwell", + "playlist_title": "What You Won't Do For Love", + "found_song": { + "artist": "Bobby Caldwell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bedb2d91-5207-c23f-0a1b-a1aa182f797c", + "path": "z://MP4\\Sing King Karaoke\\Bobby Caldwell - What You Wont Do For Love.mp4", + "title": "What You Won't Do For Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "This Moment In Time", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "18bbb746-6ffb-f3ad-b9ee-6e7237731596", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Moment In Time - Engelbert Humperdinck.mp4", + "title": "This Moment In Time" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Boney M", + "playlist_title": "Mary's Boy Child/Oh My Lord", + "found_song": { + "artist": "Boney M", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a8393e23-f04d-2bb6-112e-a76ea3bc5f60", + "path": "z://MP4\\ZoomKaraokeOfficial\\Boney M - Marys Boy Child (Oh My Lord).mp4", + "title": "Mary's Boy Child (Oh My Lord)" + }, + "match_type": "exact" + }, + { + "position": 96, + "playlist_artist": "Anne Murray", + "playlist_title": "You Needed Me", + "found_song": { + "artist": "Anne Murray", + "disabled": false, + "favorite": false, + "guid": "6cc719e4-1d60-e6dc-9418-d84c240396ff", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Needed Me - Anne Murray.mp4", + "title": "You Needed Me" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Nick Gilder", + "playlist_title": "Hot Child In The City", + "found_song": { + "artist": "Nick Gilder", + "disabled": false, + "favorite": false, + "guid": "e3a54ad4-5464-8d5c-f6c9-fdcf50da58f8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hot Child In The City - Nick Gilder.mp4", + "title": "Hot Child In The City" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Alicia Bridges", + "playlist_title": "I Love The Nightlife (Disco 'Round)", + "found_song": { + "artist": "Alicia Bridges", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bb7ba372-c1ac-b004-c2da-85c5476aa7e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Alicia Bridges - I Love The Night Life (Disco Round).mp4", + "title": "I Love The Night Life (Disco Round)" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "Earth, Wind & Fire", + "playlist_title": "September", + "found_song": { + "artist": "Earth Wind And Fire", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ab95b129-8e2b-7de8-1227-75713361334b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Earth Wind And Fire - September.mp4", + "title": "September" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Leif Garrett", + "playlist_title": "I Was Made For Dancin'", + "found_song": { + "artist": "Leif Garrett", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "86abe258-91bd-7dd9-a7d2-ed34a8aafee9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leif Garrett - I Was Made For Dancing.mp4", + "title": "I Was Made For Dancing" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "The Cars", + "playlist_title": "My Best Friend's Girl", + "found_song": { + "artist": "Cars", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3a7ad90-5359-6146-6317-22e865aa8291", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 808\\Cars - My Best Friends Girl - SFMW 808 -09.mp3", + "title": "My Best Friends Girl" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 45, + "playlist_artist": "The J. Geils Band", + "playlist_title": "One Last Kiss", + "found_song": { + "artist": "J Geils Band", + "disabled": false, + "favorite": false, + "guid": "cfe2c910-6d85-7cd3-aeb5-8ddb6a76a584", + "path": "z://CDG\\Various\\J Geils Band - One Last Kiss.mp3", + "title": "One Last Kiss" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Captain & Tennille", + "playlist_title": "You Need A Woman Tonight", + "found_song": { + "artist": "Captain & Tennille", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "baa322e9-6861-69a6-eb7f-d787be12d253", + "path": "z://MP4\\KaraokeOnVEVO\\Captain & Tennille - You Need A Woman Tonight.mp4", + "title": "You Need A Woman Tonight" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Peaches & Herb", + "playlist_title": "Shake Your Groove Thing", + "found_song": { + "artist": "Peaches And Herb", + "disabled": false, + "favorite": false, + "guid": "70d7b36c-bc4a-4d37-6f1f-13c7bd5fe397", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Shake Your Groove Thing - Peaches And Herb.mp4", + "title": "Shake Your Groove Thing" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Barbra Streisand & Neil Diamond", + "title": "You Don't Bring Me Flowers", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Gino Vannelli", + "title": "I Just Wanna Stop", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Andy Gibb", + "title": "(Our Love) Don't Throw It All Away", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Alice Cooper", + "title": "How You Gonna See Me Now", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Eric Clapton And His Band", + "title": "Promises", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Al Stewart", + "title": "Time Passages", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Firefall", + "title": "Strange Way", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bob Seger & The Silver Bullet Band", + "title": "We've Got Tonight", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Ace Frehley", + "title": "New York Groove", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Paul Davis", + "title": "Sweet Life", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Queen", + "title": "Bicycle Race/Fat Bottomed Girls", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Ian Matthews", + "title": "Shake It", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Chanson", + "title": "Don't Hold Back", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Dan Hartman", + "title": "Instant Replay", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Livingston Taylor", + "title": "I Will Be In Love With You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Gerry Rafferty", + "title": "Home And Dry", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Paul Stanley", + "title": "Hold Me, Touch Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Exile", + "title": "You Thrill Me", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Cooper Brothers", + "title": "The Dream Never Dies", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gene Simmons", + "title": "Radioactive", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dan Fogelberg/Tim Weisberg", + "title": "The Power Of Gold", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Rolling Stones", + "title": "Shattered", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Dolly Parton", + "title": "Baby I'm Burnin'", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Musique", + "title": "In The Bush", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Barry White", + "title": "Your Sweetness Is My Weakness", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Chicago", + "title": "Alive Again", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Kenny Loggins", + "title": "Easy Driver", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Fotomaker", + "title": "Miles Away", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Nigel Olsson", + "title": "Dancin' Shoes", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Daryl Hall John Oates", + "title": "I Don't Wanna Lose You", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Jefferson Starship", + "title": "Light The Sky On Fire", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Don Ray", + "title": "Got To Have Loving", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Carpenters", + "title": "I Believe You", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Santana", + "title": "Well All Right", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "John Paul Young", + "title": "Lost In Your Love", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Eddie Money", + "title": "You've Really Got A Hold On Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Chicago", + "title": "No Tell Lover", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Switch", + "title": "There'll Never Be", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Faith Band", + "title": "Dancin' Shoes", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Bonnie Pointer", + "title": "Free Me From My Freedom/Tie Me To A Tree (Handcuff Me)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "KC And The Sunshine Band", + "title": "Who Do Ya Love", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Dobie Gray", + "title": "You Can Do It", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Eric Carmen", + "title": "Change Of Heart", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Stephen Bishop", + "title": "Animal House", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Yvonne Elliman", + "title": "Moment By Moment", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Blend", + "title": "I'm Gonna Make You Love Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "John Davis And The Monster Orchestra", + "title": "Ain't That Enough For You", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Raes", + "title": "A Little Lovin' (Keeps The Doctor Away)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Glen Campbell", + "title": "Can You Fool", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Pablo Cruise", + "title": "Don't Want To Live Without It", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Captain & Tennille", + "title": "You Never Done It Like That", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Barry Manilow", + "title": "Ready To Take A Chance Again", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Jimmy Buffett", + "title": "Ma??�ana", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 7, + "missing_count": 53, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1977 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Bee Gees", + "playlist_title": "How Deep Is Your Love", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "4f0637db-e2d1-7cee-448f-f8d79564d859", + "path": "z://MP4\\Sing King Karaoke\\Bee Gees - How Deep Is Your Love (Karaoke Version).mp4", + "title": "How Deep Is Your Love" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Debby Boone", + "playlist_title": "You Light Up My Life", + "found_song": { + "artist": "Debby Boone", + "disabled": false, + "favorite": false, + "guid": "b7162a5a-6c18-b06f-84dd-3dcc8af0e8f1", + "path": "z://MP4\\Sing King Karaoke\\Debby Boone - You Light Up My Life (Karaoke Version).mp4", + "title": "You Light Up My Life" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Blue Bayou", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "4c8c6465-0756-34f1-3b89-7726e3c143a8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Bayou - Linda Ronstadt.mp4", + "title": "Blue Bayou" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "LTD", + "playlist_title": "(Every Time I Turn Around) Back In Love Again", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "f671125e-b3b8-826e-827a-8193a987bd8f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (Every Time I Turn Around) Back in Love Again - LTD.mp4", + "title": "(Every Time I Turn Around) Back in Love Again" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "It's So Easy", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "636124b2-b054-a436-e941-ac48b66b9365", + "path": "z://MP4\\KaraokeOnVEVO\\Linda Ronstadt - Its So Easy.mp4", + "title": "It's So Easy" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Player", + "playlist_title": "Baby Come Back", + "found_song": { + "artist": "Player", + "disabled": false, + "favorite": false, + "guid": "70eb27a8-6ace-2ab2-bd9d-021cc9640cc4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby Come Back - Player.mp4", + "title": "Baby Come Back" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Crystal Gayle", + "playlist_title": "Don't It Make My Brown Eyes Blue", + "found_song": { + "artist": "Crystal Gayle", + "disabled": false, + "favorite": false, + "guid": "526f20e1-f00e-7071-55f4-37b1e70f53a2", + "path": "z://MP4\\Stingray Karaoke\\Don't It Make My Brown Eyes Blue in the Style of Crystal Gayle karaoke with lyrics (no lead vocal).mp4", + "title": "Don't It Make My Brown Eyes Blue" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Dolly Parton", + "playlist_title": "Here You Come Again", + "found_song": { + "artist": "Dolly Parton", + "disabled": false, + "favorite": false, + "guid": "b1db8473-37a0-8602-ebfc-1fe173cfd7b9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Here You Come Again - Dolly Parton.mp4", + "title": "Here You Come Again" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bob Welch", + "playlist_title": "Sentimental Lady", + "found_song": { + "artist": "Bob Welch", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d358d001-5e78-351e-7b27-0220588d5cfd", + "path": "z://MP4\\KaraokeOnVEVO\\Bob Welch - Sentimental Lady.mp4", + "title": "Sentimental Lady" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Paul Simon", + "playlist_title": "Slip Slidin' Away", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "50fcb524-0101-658e-7f0a-e353d59c0211", + "path": "z://MP4\\KaraokeOnVEVO\\Paul Simon - Slip Slidin Away.mp4", + "title": "Slip Slidin' Away" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Styx", + "playlist_title": "Come Sail Away", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "2ba66c42-8545-2089-5ef7-0ddccb6fdcee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Sail Away - Styx.mp4", + "title": "Come Sail Away" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Rita Coolidge", + "playlist_title": "We're All Alone", + "found_song": { + "artist": "Rita Coolidge", + "disabled": false, + "favorite": false, + "guid": "8372f7c0-5b6b-02cb-1264-43c9b94b9f06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We're All Alone - Rita Coolidge.mp4", + "title": "We're All Alone" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "You Make Loving Fun", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "b7566a6f-8ba1-4a76-8d4b-4a9d33927a72", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Loving Fun - Fleetwood Mac.mp4", + "title": "You Make Loving Fun" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Elvis Presley", + "playlist_title": "My Way", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "65abe184-84e4-f78e-ed48-97a95bc649ee", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - My Way (Karaoke).mp4", + "title": "My Way" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Paul Davis", + "playlist_title": "I Go Crazy", + "found_song": { + "artist": "Paul Davis", + "disabled": false, + "favorite": false, + "guid": "9c2a06d5-1dfe-ff6c-dae0-c320314bba9f", + "path": "z://MP4\\Let's Sing Karaoke\\Davis, Paul - I Go Crazy (Karaoke & Lyrics).mp4", + "title": "I Go Crazy" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Turn To Stone", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "37d84af4-571d-4673-2f05-0fea7aaed7d1", + "path": "z://MP4\\KaraokeOnVEVO\\Electric Light Orchestra - Turn To Stone.mp4", + "title": "Turn To Stone" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Billy Joel", + "playlist_title": "Just The Way You Are", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "a028fc8c-aaed-7099-65a4-c3feae1b866b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Just The Way You Are - Billy Joel.mp4", + "title": "Just The Way You Are" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Chic", + "playlist_title": "Dance, Dance, Dance (Yowsah, Yowsah, Yowsah)", + "found_song": { + "artist": "Chic", + "disabled": false, + "favorite": false, + "guid": "b67a9986-8618-0d01-9b24-3bf97ba77f12", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dance Dance Dance (Yowsah Yowsah Yowsah) - Chic.mp4", + "title": "Dance Dance Dance (Yowsah Yowsah Yowsah)" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Andy Gibb", + "playlist_title": "(Love Is) Thicker Than Water", + "found_song": { + "artist": "Andy Gibb", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e749fe4e-13e0-3412-fab5-6fc4507a336f", + "path": "z://CDG\\Various\\Andy Gibb - Love Is Thicker Than Water.mp3", + "title": "Love Is Thicker Than Water" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Odyssey", + "playlist_title": "Native New Yorker", + "found_song": { + "artist": "Odyssey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f08a3f5c-fdf4-caad-d7e9-5bae73766788", + "path": "z://MP4\\ZoomKaraokeOfficial\\Odyssey - Native New Yorker.mp4", + "title": "Native New Yorker" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Bee Gees", + "playlist_title": "Stayin' Alive", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "dd62403e-a847-308b-4ad2-9a3a7124bbd3", + "path": "z://CDG\\Various\\Bee Gees - Stayin' Alive.mp3", + "title": "Stayin' Alive" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Dan Hill", + "playlist_title": "Sometimes When We Touch", + "found_song": { + "artist": "Dan Hill", + "disabled": false, + "favorite": false, + "guid": "9fd9c589-00e3-9984-173d-85387a2f662c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sometimes When We Touch - Dan Hill.mp4", + "title": "Sometimes When We Touch" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Steely Dan", + "playlist_title": "Peg", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "ce648556-ffce-67de-b533-8e0b90317f6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Peg - Steely Dan.mp4", + "title": "Peg" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Heatwave", + "playlist_title": "Boogie Nights", + "found_song": { + "artist": "Heatwave", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79744d57-d741-857f-8751-cd3265886d0d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Heatwave - Boogie Nights.mp4", + "title": "Boogie Nights" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Bill Withers", + "playlist_title": "Lovely Day", + "found_song": { + "artist": "Bill Withers", + "disabled": false, + "favorite": false, + "guid": "d6890dcb-ce4d-e30c-1c8a-6b8dfacf7d06", + "path": "z://MP4\\Sing King Karaoke\\Bill Withers - Lovely Day (Karaoke Version).mp4", + "title": "Lovely Day" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Stevie Wonder", + "playlist_title": "As", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "f74b5080-7ce5-2616-ca02-0339a5a26db6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke As - Stevie Wonder.mp4", + "title": "As" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "What's Your Name", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "guid": "f9f528cc-69c2-9d3a-2bcd-5109ac51431a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke What s Your Name - Lynyrd Skynyrd.mp4", + "title": "What s Your Name" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Santana", + "playlist_title": "She's Not There", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be610af8-e508-6958-4db2-8adbea575f79", + "path": "z://CDG\\SBI\\SBI-01\\SB03802 - Santana - She's Not There.mp3", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Barry White", + "playlist_title": "It's Ecstasy When You Lay Down Next To Me", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "b846ba3a-fca6-cdfc-0430-93a0368cd4e8", + "path": "z://CDG\\Various\\Barry White - It's Ecstasy When You Lay Down Next To Me.mp3", + "title": "It's Ecstasy When You Lay Down Next To Me" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Foreigner", + "playlist_title": "Long, Long Way From Home", + "found_song": { + "artist": "Foreigner", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d86def2-f95c-3ca7-8422-e5ed6c0fac99", + "path": "z://CDG\\Various\\Foreigner - Long, Long Way From Home.mp3", + "title": "Long, Long Way From Home" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Dave Mason", + "playlist_title": "We Just Disagree", + "found_song": { + "artist": "Dave Mason", + "disabled": false, + "favorite": false, + "guid": "d095d90e-073c-a972-fcff-3b630ce9e868", + "path": "z://MP4\\KaraFun Karaoke\\We Just Disagree - Dave Mason Karaoke Version KaraFun.mp4", + "title": "We Just Disagree" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carly Simon", + "playlist_title": "Nobody Does It Better", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7423bad7-0939-92ea-3dcf-d88310f3332d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 850\\Carly Simon - Nobody Does It Better - SFMW 850 -05.mp3", + "title": "Nobody Does It Better" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Judy Collins", + "playlist_title": "Send In The Clowns", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "773719a8-c788-88d8-0964-23c6d91da9bd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Send In The Clowns.mp4", + "title": "Send In The Clowns" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Donna Summer", + "playlist_title": "I Feel Love", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c7a93ca-ea8b-202e-6a8a-dba0e4db5e67", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - I Feel Love.mp4", + "title": "I Feel Love" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Tom Petty And The Heartbreakers", + "playlist_title": "Breakdown", + "found_song": { + "artist": "Tom Petty And The Heartbreakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7cc1b489-631b-c2e1-31f3-2f9d71eb04ab", + "path": "z://MP4\\KaraokeOnVEVO\\Tom Petty And The Heartbreakers - Breakdown.mp4", + "title": "Breakdown" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "I Honestly Love You", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "fdad03b1-2a92-51aa-5b8b-6a875299f8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Honestly Love You - Olivia Newton-John.mp4", + "title": "I Honestly Love You" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "ABBA", + "playlist_title": "The Name Of The Game", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "guid": "06c83cf6-f390-a3c6-3c40-c9bf4a73af6a", + "path": "z://MP4\\Sing King Karaoke\\ABBA - The Name Of The Game (Karaoke Version).mp4", + "title": "The Name Of The Game" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Ronnie Milsap", + "playlist_title": "What A Difference You've Made In My Life", + "found_song": { + "artist": "Ronnie Milsap", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "84b6eb3c-c81c-b847-ecc5-5111f1dbb3e6", + "path": "z://MP4\\KaraokeOnVEVO\\Ronnie Milsap - What A Difference You've Made In My Life.mp4", + "title": "What A Difference You've Made In My Life" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "Aerosmith", + "playlist_title": "Draw The Line", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1691dd1f-4c7e-8cc7-700d-d9f227f7ae5d", + "path": "z://CDG\\Various\\Aerosmith - Draw The Line.mp3", + "title": "Draw The Line" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Tavares", + "playlist_title": "More Than A Woman", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f643a20-8c1c-407e-144c-2b58966ae6a2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tavares - More Than A Woman.mp4", + "title": "More Than A Woman" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 18, + "playlist_artist": "Queen", + "playlist_title": "We Will Rock You/We Are The Champions", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "a7eb1c74-5d02-ff6d-edbb-e767359d9885", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Will Rock You We Are The Champions (Live) - Queen.mp4", + "title": "We Will Rock You We Are The Champions (Live)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 35, + "playlist_artist": "Neil Diamond", + "playlist_title": "Desir??�e", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3eba88b1-37b1-f7c7-8d21-a76debb6397c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Desiree.mp4", + "title": "Desiree" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 56, + "playlist_artist": "Commodores", + "playlist_title": "Too Hot Ta Trot", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "e99e217f-4a21-b901-21a7-a414559ca3ec", + "path": "z://CDG\\Various\\Commodores - Too Hot To Trot.mp3", + "title": "Too Hot To Trot" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Carpenters", + "playlist_title": "Calling Occupants Of Interplanetary Craft", + "found_song": { + "artist": "The Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "41511a87-3617-83df-d78b-e86cacf34ead", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Carpenters - Calling Occupants Of Interplanetary Craft.mp4", + "title": "Calling Occupants Of Interplanetary Craft" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 84, + "playlist_artist": "Little River Band", + "playlist_title": "Happy Anniversary", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "738874d8-bd9d-2151-9940-e79a645d2230", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Anniversary - Little River Band.mp4", + "title": "Happy Anniversary" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 100, + "playlist_artist": "Little River Band", + "playlist_title": "Help Is On Its Way", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "9a4fc5c9-12c7-d73c-4637-888c216d646d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Help Is On Its Way - Little River Band.mp4", + "title": "Help Is On Its Way" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 11, + "artist": "Rod Stewart", + "title": "You're In My Heart (The Final Acclaim)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "High Inergy", + "title": "You Can't Turn Me Off (In The Middle Of Turning Me On)", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Babys", + "title": "Isn't It Time", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Shaun Cassidy", + "title": "Hey Deanie", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Steve Miller Band", + "title": "Swingtown", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Leif Garrett", + "title": "Runaround Sue", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Randy Newman", + "title": "Short People", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Earth, Wind & Fire", + "title": "Serpentine Fire", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Chicago", + "title": "Baby, What A Big Surprise", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Bay City Rollers", + "title": "The Way I Feel Tonight", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Diana Ross", + "title": "Gettin' Ready For Love", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Paul Nicholas", + "title": "Heaven On The 7th Floor", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Santa Esmeralda Starring Leroy Gomez", + "title": "Don't Let Me Be Misunderstood", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Kansas", + "title": "Point Of Know Return", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Wings", + "title": "Girls' School", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "James Taylor", + "title": "Your Smiling Face", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Samantha Sang", + "title": "Emotion", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Cheech & Chong", + "title": "Bloat On Featuring the Bloaters", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Donny & Marie Osmond", + "title": "(You're My) Soul And Inspiration", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Peter Frampton", + "title": "Tried To Love", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Millie Jackson", + "title": "If You're Not Back In Love By Monday", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "KC And The Sunshine Band", + "title": "Wrap Your Arms Around Me", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Emotions", + "title": "Don't Ask My Neighbors", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "John Denver", + "title": "How Can I Leave You Again", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wet Willie", + "title": "Street Corner Serenade", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "England Dan & John Ford Coley", + "title": "Gone Too Far", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Al Martino", + "title": "The Next Hundred Years", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Leo Sayer", + "title": "Easy To Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Sammy Hagar", + "title": "You Make Me Crazy", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ramones", + "title": "Rockaway Beach", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "LeBlanc & Carr", + "title": "Falling", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Sylvers", + "title": "Any Way You Want Me", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Kenny Rogers", + "title": "Sweet Music Man", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Marilyn Scott", + "title": "God Only Knows", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Con Funk Shun", + "title": "Ffun", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Cat Stevens", + "title": "Was Dog A Doughnut", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Donna Summer", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jay Ferguson", + "title": "Thunder Island", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Stillwater", + "title": "Mind Bender", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Addrisi Brothers", + "title": "Never My Love", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "John Williams", + "title": "Theme From Close Encounters Of The Third Kind", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Kellee Patterson", + "title": "If It Don't Fit, Don't Force It", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Johnny Rivers", + "title": "Curious Mind (Um, Um, Um, Um, Um, Um)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Rose Royce", + "title": "Ooh Boy", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "David Gates", + "title": "Goodbye Girl", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Le Pamplemousse", + "title": "Le Spank", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Eric Carmen", + "title": "Boats Against The Current", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "El Coco", + "title": "Cocomotion", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Bobby Arvon", + "title": "Until Now", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Alan Parsons Project", + "title": "Don't Let It Show", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Brick", + "title": "Dusic", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Shaun Cassidy", + "title": "That's Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jackie DeShannon", + "title": "Don't Let The Flame Burn Out", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Firefall", + "title": "Just Remember I Love You", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 40, + "fuzzy_match_count": 6, + "missing_count": 54, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1976 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Rod Stewart", + "playlist_title": "Tonight's The Night (Gonna Be Alright)", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5666bad4-5895-4767-3dd3-49ed04873591", + "path": "z://MP4\\ZoomKaraokeOfficial\\Rod Stewart - Tonights The Night (Gonna Be Alright).mp4", + "title": "Tonight's The Night (Gonna Be Alright)" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Leo Sayer", + "playlist_title": "You Make Me Feel Like Dancing", + "found_song": { + "artist": "Leo Sayer", + "disabled": false, + "favorite": false, + "guid": "c9a665d0-1b3b-18b3-1ec7-45918f03db04", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Make Me Feel Like Dancing - Leo Sayer.mp4", + "title": "You Make Me Feel Like Dancing" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Boston", + "playlist_title": "More Than A Feeling", + "found_song": { + "artist": "Boston", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "368fe08a-dfa9-f2a5-d864-aac4b5ff2f75", + "path": "z://MP4\\KaraokeOnVEVO\\Boston - More Than A Feeling.mp4", + "title": "More Than A Feeling" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elton John", + "playlist_title": "Sorry Seems To Be The Hardest Word", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "52ac9f5f-8d36-79fc-6d0b-e6c7a897f04c", + "path": "z://MP4\\KaraFun Karaoke\\Elton John - Sorry Seems To Be The Hardest Word.mp4", + "title": "Sorry Seems To Be The Hardest Word" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Stevie Wonder", + "playlist_title": "I Wish", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "00642160-065d-3a56-b670-f243ce08d852", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Wish - Stevie Wonder.mp4", + "title": "I Wish" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Rose Royce", + "playlist_title": "Car Wash", + "found_song": { + "artist": "Rose Royce", + "disabled": false, + "favorite": false, + "guid": "05ecb4ca-9c37-17da-b0e2-094bec16d131", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Car Wash - Rose Royce.mp4", + "title": "Car Wash" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "After The Lovin'", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "9a423a38-1fd0-b742-b471-43369c6b1bff", + "path": "z://MP4\\Stingray Karaoke\\After The Lovin' in the Style of Engelbert Humperdinck karaoke video with lyrics (no lead vocal).mp4", + "title": "After The Lovin'" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Yvonne Elliman", + "playlist_title": "Love Me", + "found_song": { + "artist": "Yvonne Elliman", + "disabled": false, + "favorite": false, + "guid": "fac56831-d7cd-56a4-47d5-f652adaab60f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF097\\Yvonne Elliman - Love Me - SF097 - 04.mp3", + "title": "Love Me" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Livin' Thing", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "685ee3a0-6d75-6d44-eaa6-aff529101f25", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Livin Thing - Electric Light Orchestra.mp4", + "title": "Livin Thing" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Queen", + "playlist_title": "Somebody To Love", + "found_song": { + "artist": "Queen", + "disabled": false, + "favorite": false, + "guid": "c2427066-b8b8-90bf-2c8a-47a9ec7e1096", + "path": "z://MP4\\Sing King Karaoke\\Queen - Somebody To Love (Karaoke Version).mp4", + "title": "Somebody To Love" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Eagles", + "playlist_title": "New Kid In Town", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "956c36af-901a-7840-dc23-80c24feb348e", + "path": "z://CDG\\Various\\Eagles - New Kid In Town.mp3", + "title": "New Kid In Town" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Bread", + "playlist_title": "Lost Without Your Love", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "2d4eec04-1c10-33f5-5ed3-cf833b9479a9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Lost Without Your Love - Bread.mp4", + "title": "Lost Without Your Love" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "David Dundas", + "playlist_title": "Jeans On", + "found_song": { + "artist": "David Dundas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3329806-aeb0-2cad-b0e7-bff57722eecc", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Dundas - Jeans On.mp4", + "title": "Jeans On" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Aerosmith", + "playlist_title": "Walk This Way", + "found_song": { + "artist": "Aerosmith", + "disabled": false, + "favorite": false, + "guid": "3a3169a7-52e6-be2b-103d-b6e4f679270b", + "path": "z://MP4\\Stingray Karaoke\\Aerosmith - Walk This Way (Karaoke Version).mp4", + "title": "Walk This Way" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Mary Macgregor", + "playlist_title": "Torn Between Two Lovers", + "found_song": { + "artist": "Mary MacGregor", + "disabled": false, + "favorite": false, + "guid": "ad1c3df8-0445-d8e1-c728-50612d53c7c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Torn Between Two Lovers - Mary MacGregor.mp4", + "title": "Torn Between Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Kenny Nolan", + "playlist_title": "I Like Dreamin'", + "found_song": { + "artist": "Kenny Nolan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb43df8d-1338-ccd1-169a-191dfa9584cd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Kenny Nolan - I Like Dreamin.mp4", + "title": "I Like Dreamin'" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Bee Gees", + "playlist_title": "Love So Right", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cff7f448-6cd4-9f33-0fa7-d15f74989ec0", + "path": "z://CDG\\Various\\Bee Gees - Love So Right.mp3", + "title": "Love So Right" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Barry Manilow", + "playlist_title": "Weekend In New England", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "f1710641-ceb0-862f-81c2-b2f54f46c0b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Weekend In New England - Barry Manilow.mp4", + "title": "Weekend In New England" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "It Keeps You Runnin'", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "427cb523-d8c0-2f4e-5013-a3a1985b0dc1", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - It Keeps You Runnin.mp4", + "title": "It Keeps You Runnin'" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Smokie", + "playlist_title": "Living Next Door To Alice", + "found_song": { + "artist": "Smokie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1a53037-514b-1b71-9bed-2237de32944d", + "path": "z://MP4\\KaraokeOnVEVO\\Smokie - Living Next Door To Alice.mp4", + "title": "Living Next Door To Alice" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dr. Hook", + "playlist_title": "If Not You", + "found_song": { + "artist": "Dr Hook", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6ff18be-9337-cefd-65bf-2ff345519418", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dr Hook - If Not You.mp4", + "title": "If Not You" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Commodores", + "playlist_title": "Just To Be Close To You", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "bb46d58e-610c-ae5f-73a0-d7f51095e5b0", + "path": "z://CDG\\Various\\Commodores - Just To Be Close To You.mp3", + "title": "Just To Be Close To You" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Tavares", + "playlist_title": "Don't Take Away The Music", + "found_song": { + "artist": "Tavares", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a2d59ea7-62c8-d4ff-bc9f-e7a6369a8084", + "path": "z://MP4\\KaraokeOnVEVO\\Tavares - Don't Take Away The Music.mp4", + "title": "Don't Take Away The Music" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Bob Seger", + "playlist_title": "Night Moves", + "found_song": { + "artist": "Bob Seger", + "disabled": false, + "favorite": false, + "guid": "9b1a6abb-6a20-0b99-2e86-6fd9047960ec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Night Moves - Bob Seger.mp4", + "title": "Night Moves" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Kiss", + "playlist_title": "Hard Luck Woman", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "d84602c2-1337-2858-d1b1-aa353d8f83ae", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hard Luck Woman - Kiss.mp4", + "title": "Hard Luck Woman" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "ABBA", + "playlist_title": "Dancing Queen", + "found_song": { + "artist": "ABBA", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ee292e40-26f4-97c6-081a-ffbcfc772f07", + "path": "z://MP4\\Sing King Karaoke\\ABBA - Dancing Queen.mp4", + "title": "Dancing Queen" + }, + "match_type": "exact" + }, + { + "position": 71, + "playlist_artist": "The Beatles", + "playlist_title": "Ob-la-di, Ob-la-da", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3bb5c4c3-3c35-e652-031e-bcf455d67f11", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Ob-La-Di, Ob-La-Da (Karaoke Version).mp4", + "title": "Ob-La-Di, Ob-La-Da" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Deniece Williams", + "playlist_title": "Free", + "found_song": { + "artist": "Deniece Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4cfbb8da-3c18-83d6-56c7-cc96ac9dda20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF103\\Deniece Williams - Free - SF103 - 01.mp3", + "title": "Free" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Thelma Houston", + "playlist_title": "Don't Leave Me This Way", + "found_song": { + "artist": "Thelma Houston", + "disabled": false, + "favorite": false, + "guid": "71def665-46dd-6b16-caa0-7100b68a54a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Leave Me This Way - Thelma Houston.mp4", + "title": "Don t Leave Me This Way" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Chicago", + "playlist_title": "If You Leave Me Now", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e38ba257-4e3b-4b04-10a2-3d7ef66fa8c3", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - If You Leave Me Now.mp4", + "title": "If You Leave Me Now" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Al Stewart", + "playlist_title": "Year Of The Cat", + "found_song": { + "artist": "Al Stewart", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3daf9d83-5c4e-38a1-cab4-cd15886af06f", + "path": "z://MP4\\KaraokeOnVEVO\\Al Stewart - Year Of The Cat.mp4", + "title": "Year Of The Cat" + }, + "match_type": "exact" + }, + { + "position": 87, + "playlist_artist": "Kansas", + "playlist_title": "Carry On Wayward Son", + "found_song": { + "artist": "Kansas", + "disabled": false, + "favorite": false, + "guid": "5c7b4eaf-027d-7c17-6166-3a5175b010d5", + "path": "z://MP4\\TheKARAOKEChannel\\Carry On Wayward Son in the Style of Kansas karaoke with lyrics (no lead vocal).mp4", + "title": "Carry On Wayward Son" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Marilyn McCoo & Billy Davis, Jr.", + "playlist_title": "You Don't Have To Be A Star (To Be In My Show)", + "found_song": { + "artist": "Marilyn McCoo & Billy Davis, Jr.", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "987bafbd-7d75-9d8f-cb86-1da3e6b7b98e", + "path": "z://MP4\\KaraokeOnVEVO\\Marilyn McCoo & Billy Davis, Jr. - You Dont Have To Be A Star (To Be In My Show.mp4", + "title": "You Don't Have To Be A Star (To Be In My Show)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 13, + "playlist_artist": "Alice Cooper", + "playlist_title": "I Never Cry", + "found_song": { + "artist": "Cooper, Alice", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bd8ec42e-2597-9bcc-cb67-ecb1205709cb", + "path": "z://CDG\\SBI\\SBI-04\\SB18319 - Alice Cooper - I Never Cry.mp3", + "title": "I Never Cry" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 18, + "playlist_artist": "England Dan & John Ford Coley", + "playlist_title": "Nights Are Forever Without You", + "found_song": { + "artist": "England Dan & John Ford Coley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "99851d44-3ea1-bdbb-a037-28df72e3f891", + "path": "z://MP4\\ZoomKaraokeOfficial\\England Dan & John Ford Coley - Nights Are Forever Without You.mp4", + "title": "Nights Are Forever Without You" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Manfred Mann's Earth Band", + "playlist_title": "Blinded By The Light", + "found_song": { + "artist": "Manfred Mann's Earth Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45f1ce37-ca34-0cdd-8722-2109cfb50a43", + "path": "z://MP4\\KaraokeOnVEVO\\Manfred Manns Earth Band - Blinded By The Light.mp4", + "title": "Blinded By The Light" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 34, + "playlist_artist": "L.T.D.", + "playlist_title": "Love Ballad", + "found_song": { + "artist": "LTD", + "disabled": false, + "favorite": false, + "guid": "65114b2d-3cf1-86b7-b374-8591bcd6cb41", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Ballad - LTD.mp4", + "title": "Love Ballad" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 41, + "playlist_artist": "Kiss", + "playlist_title": "Beth/Detroit Rock City", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "b4deaba4-b1d7-e8d7-2f81-24f468535733", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Detroit Rock City - Kiss.mp4", + "title": "Detroit Rock City" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Boz Scaggs", + "playlist_title": "What Can I Say", + "found_song": { + "artist": "Boz Craggs", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "973fce5f-d08c-8731-63e7-73f928e186b8", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 801\\Boz Craggs - What Can I Say - SFMW 801 -10.mp3", + "title": "What Can I Say" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 48, + "playlist_artist": "Rick Dees & His Cast Of Idiots", + "playlist_title": "Disco Duck (Part I)", + "found_song": { + "artist": "Rick Dees & His Cast Of Idiots", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cdc0ec5a-5ada-8b9e-e89f-48ec1ef11bf0", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Dees & His Cast Of Idiots - Disco Duck (Part I.mp4", + "title": "Disco Duck (Part I)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Steve Miller", + "playlist_title": "Fly Like An Eagle", + "found_song": { + "artist": "Steve Miller Band", + "disabled": false, + "favorite": false, + "guid": "7298be75-5106-b014-461b-7db40c868b1e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fly Like An Eagle - Steve Miller Band.mp4", + "title": "Fly Like An Eagle" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "The Wreck Of The Edmund Fitzgerald", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "1f1ce3b4-6e1e-c123-c610-2a21dee33ea5", + "path": "z://MP4\\Let's Sing Karaoke\\Lightfoot, Gordon - Wreck Of The Edmund Fitzgerald, The (Karaoke & Lyrics).mp4", + "title": "Wreck Of The Edmund Fitzgerald, The" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 82, + "playlist_artist": "Elvis Presley", + "playlist_title": "Moody Blue/she Thinks I Still Care", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6da7ece0-d9dc-48e7-933b-bef968d280d9", + "path": "z://CDG\\Various\\Elvis Presley - She Thinks I Still Care.mp3", + "title": "She Thinks I Still Care" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 92, + "playlist_artist": "Little River Band", + "playlist_title": "It's A Long Way There", + "found_song": { + "artist": "Little River Band", + "disabled": false, + "favorite": false, + "guid": "2554b6f8-5c5b-5fa2-fc5b-40cc614b6013", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s A Long Way There - Little River Band.mp4", + "title": "It s A Long Way There" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "The Spinners", + "title": "The Rubberband Man", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Brick", + "title": "Dazz", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Burton Cummings", + "title": "Stand Tall", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Sylvers", + "title": "Hot Line", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Captain & Tennille", + "title": "Muskrat Love", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry DeVorzon and Perry Botkin, Jr.", + "title": "Nadia's Theme (The Young And The Restless)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Jacksons", + "title": "Enjoy Yourself", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Firefall", + "title": "You Are The Woman", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Bar-Kays", + "title": "Shake Your Rump To The Funk", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Earth, Wind & Fire", + "title": "Saturday Nite", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "George Harrison", + "title": "This Song", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Dr. Buzzard's Original Savannah Band", + "title": "Whispering/Cherchez La Femme/Se Si Bon", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Styx", + "title": "Mademoiselle", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Donny & Marie Osmond", + "title": "Ain't Nothing Like The Real Thing", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Al Green", + "title": "Keep Me Cryin'", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Daryl Hall John Oates", + "title": "Do What You Want, Be What You Are", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Foghat", + "title": "Drivin' Wheel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Walter Murphy Band", + "title": "Flight '76", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Eric Clapton", + "title": "Hello Old Friend", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Linda Ronstadt", + "title": "Someone To Lay Down Beside Me", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "KC And The Sunshine Band", + "title": "I Like To Do It", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Johnny Bristol", + "title": "Do It To My Mind", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Barbra Streisand", + "title": "Evergreen (Love Theme From A Star Is Born)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dickey Lee", + "title": "9,999,999 Tears", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bay City Rollers", + "title": "Yesterday's Hero", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gene Cotton", + "title": "You've Got Me Runnin'", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Mary Kay Place As Loretta Haggers", + "title": "Baby Boy", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Funky Kings", + "title": "Slow Dancing", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jefferson Starship", + "title": "St. Charles", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Robert Palmer", + "title": "Man Smart, Woman Smarter", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Stephen Bishop", + "title": "Save It For A Rainy Day", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Peter Frampton", + "title": "Do You Feel Like We Do", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Donna Summer", + "title": "Spring Affair/Winter Melody", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Heart", + "title": "Dreamboat Annie", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Starbuck", + "title": "Lucky Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Paul Anka", + "title": "Happier", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Kool & The Gang", + "title": "Open Sesame - Part 1", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Olivia Newton-John", + "title": "Every Face Tells A Story", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "John Denver", + "title": "Baby, You Look Good To Me Tonight", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Cliff Richard", + "title": "I Can't Ask For Anymore Than You", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Robin Trower", + "title": "Caledonia", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Supremes", + "title": "You're My Driving Wheel", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bryan Ferry", + "title": "Heart On My Sleeve", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Arthur Prysock", + "title": "When Love Is New", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Rod Hart", + "title": "C.b. Savage", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Brass Construction", + "title": "Ha Cha Cha (funktion)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "David Laflamme", + "title": "White Bird", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "L.A. Jets", + "title": "Prisoner (Captured By Your Eyes)", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bumble Bee Unlimited", + "title": "Love Bug", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Walter Jackson", + "title": "Feelings", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "JJ Cale", + "title": "Hey Baby", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Elvin Bishop Featuring Mickey Thomas", + "title": "Spend Some Time", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Starz", + "title": "(She's Just A) Fallen Angel", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Seals & Crofts", + "title": "Baby, I'll Give It To You", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Ritchie Family", + "title": "The Best Disco In Town", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 33, + "fuzzy_match_count": 12, + "missing_count": 55, + "needs_manual_review": 12 + } + }, + { + "playlist_title": "1975 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bay City Rollers", + "playlist_title": "Saturday Night", + "found_song": { + "artist": "Bay City Rollers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "859fe149-5fb9-1127-6c50-b2f5e17dfe02", + "path": "z://MP4\\KaraokeOnVEVO\\Bay City Rollers - Saturday Night.mp4", + "title": "Saturday Night" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Diana Ross", + "playlist_title": "Theme From Mahogany (Do You Know Where You're Going To)", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "17485a0c-1a98-467a-dd7c-108ffff0d546", + "path": "z://MP4\\Sing King Karaoke\\Diana Ross - Theme From Mahogany (Do You Know Where Youre Going To.mp4", + "title": "Theme From Mahogany (Do You Know Where You're Going To)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Barry Manilow", + "playlist_title": "I Write The Songs", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f6c9b535-ae4d-44a1-6349-a8b79d8c9fa3", + "path": "z://MP4\\KaraokeOnVEVO\\Barry Manilow - I Write The Songs.mp4", + "title": "I Write The Songs" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "C.W. McCall", + "playlist_title": "Convoy", + "found_song": { + "artist": "C.W. McCall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "71406095-e2d6-25f3-f06a-c2fa25f8d3cf", + "path": "z://MP4\\KaraokeOnVEVO\\C.W. McCall - Convoy.mp4", + "title": "Convoy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Sweet", + "playlist_title": "Fox On The Run", + "found_song": { + "artist": "Sweet", + "disabled": false, + "favorite": false, + "guid": "7a8beb49-589b-1ffe-4113-f70d2b7b4901", + "path": "z://MP4\\KaraFun Karaoke\\Fox On The Run - Sweet Karaoke Version KaraFun.mp4", + "title": "Fox On The Run" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Jigsaw", + "playlist_title": "Sky High", + "found_song": { + "artist": "Jigsaw", + "disabled": false, + "favorite": false, + "guid": "2ff39e4b-87fd-9e3d-1a3e-c61c788d41f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sky High - Jigsaw.mp4", + "title": "Sky High" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Bee Gees", + "playlist_title": "Nights On Broadway", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "2a5e5e3b-32c8-458e-2008-639df8e66713", + "path": "z://CDG\\Various\\Bee Gees - Nights On Broadway.mp3", + "title": "Nights On Broadway" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Donna Summer", + "playlist_title": "Love To Love You Baby", + "found_song": { + "artist": "Donna Summer", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7afdfc83-11e3-3637-ebce-bc7c594e095d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donna Summer - Love To Love You Baby.mp4", + "title": "Love To Love You Baby" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Glen Campbell", + "playlist_title": "Country Boy (You Got Your Feet In L.A.)", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d569208-3c2b-d7fc-339d-6b709a933d82", + "path": "z://MP4\\KaraokeOnVEVO\\Glen Campbell - Country Boy (You Got Your Feet In LA.mp4", + "title": "Country Boy (You Got Your Feet In L.A.)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Hot Chocolate", + "playlist_title": "You Sexy Thing", + "found_song": { + "artist": "Hot Chocolate", + "disabled": false, + "favorite": false, + "guid": "b9e6c3df-c2ae-8414-0c61-9c752cb553aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Sexy Thing - Hot Chocolate.mp4", + "title": "You Sexy Thing" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "John Denver", + "playlist_title": "Fly Away", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "6e31be31-854c-1793-7f1f-1725e458f8f2", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Fly Away (Karaoke).mp4", + "title": "Fly Away" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Evil Woman", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "6d8befeb-1efb-bc94-5c60-44552b538a9c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Evil Woman - Electric Light Orchestra.mp4", + "title": "Evil Woman" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Fleetwood Mac", + "playlist_title": "Over My Head", + "found_song": { + "artist": "Fleetwood Mac", + "disabled": false, + "favorite": false, + "guid": "5de11425-847d-4e16-9e46-8c8875e88586", + "path": "z://MP4\\KtvEntertainment\\Fleetwood Mac - Over My Head Karaoke Lyrics.mp4", + "title": "Over My Head" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Elton John", + "playlist_title": "Island Girl", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b452a1fc-6d92-efca-eab5-45534991d5c3", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Island Girl.mp4", + "title": "Island Girl" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Breaking Up Is Hard To Do", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "7ab837d0-a19b-a75a-208c-5baca3a0a127", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Breaking Up Is Hard To Do - Neil Sedaka.mp4", + "title": "Breaking Up Is Hard To Do" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Al Martino", + "playlist_title": "Volare", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34aa0800-d293-0762-a477-fe63155e1e2c", + "path": "z://MP4\\VocalStarKaraoke\\Al Martino - Volare.mp4", + "title": "Volare" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Nazareth", + "playlist_title": "Love Hurts", + "found_song": { + "artist": "Nazareth", + "disabled": false, + "favorite": false, + "guid": "7253dbac-bab1-cad0-d19f-1218668aca65", + "path": "z://MP4\\Stingray Karaoke\\Love Hurts Nazareth Karaoke with Lyrics.mp4", + "title": "Love Hurts" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Who", + "playlist_title": "Squeeze Box", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6fdc99a7-3985-5550-05c1-f1d97cadba9a", + "path": "z://MP4\\KaraokeOnVEVO\\The Who - Squeeze Box.mp4", + "title": "Squeeze Box" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "War", + "playlist_title": "Low Rider", + "found_song": { + "artist": "War", + "disabled": false, + "favorite": false, + "guid": "09f68070-76ff-bc91-aeed-3964199c4f29", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Low Rider - War.mp4", + "title": "Low Rider" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "David Bowie", + "playlist_title": "Golden Years", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "45b399ba-4279-d912-0d1b-9d5c68f0d661", + "path": "z://MP4\\ZoomKaraokeOfficial\\David Bowie - Golden Years.mp4", + "title": "Golden Years" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Morris Albert", + "playlist_title": "Feelings", + "found_song": { + "artist": "Morris Albert", + "disabled": false, + "favorite": false, + "guid": "7b6c4c3d-4f30-9e74-c647-f0829ace4634", + "path": "z://MP4\\Let's Sing Karaoke\\Albert, Morris - Feelings (Karaoke & Lyrics).mp4", + "title": "Feelings" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Foghat", + "playlist_title": "Slow Ride", + "found_song": { + "artist": "Foghat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b88e806c-3ba1-2a3a-222a-94094af51f8d", + "path": "z://MP4\\KaraokeOnVEVO\\Foghat - Slow Ride.mp4", + "title": "Slow Ride" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Eagles", + "playlist_title": "Take It To The Limit", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "0b3dc0be-318b-da03-f8c0-50ce3a6778f7", + "path": "z://CDG\\Various\\Eagles - Take It To The Limit.mp3", + "title": "Take It To The Limit" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Natalie Cole", + "playlist_title": "Inseparable", + "found_song": { + "artist": "Natalie Cole", + "disabled": false, + "favorite": false, + "guid": "fff53bc6-d461-11e2-d19f-877262be8281", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Inseparable - Natalie Cole.mp4", + "title": "Inseparable" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Eric Carmen", + "playlist_title": "All By Myself", + "found_song": { + "artist": "Eric Carmen", + "disabled": false, + "favorite": false, + "guid": "3d9f9b37-4c3f-3780-81ba-7208d0865370", + "path": "z://MP4\\Let's Sing Karaoke\\Carmen, Eric - All By Myself (Karaoke & Lyrics).mp4", + "title": "All By Myself" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Barry White", + "playlist_title": "Let The Music Play", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e5e63c5b-4e47-678c-9199-0f076dec0a01", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let The Music Play - Barry White.mp4", + "title": "Let The Music Play" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Willie Nelson", + "playlist_title": "Blue Eyes Crying In The Rain", + "found_song": { + "artist": "Willie Nelson", + "disabled": false, + "favorite": false, + "guid": "38fa7e65-4b0f-0b1d-0378-7bec98ea4a55", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Blue Eyes Crying In The Rain - Willie Nelson.mp4", + "title": "Blue Eyes Crying In The Rain" + }, + "match_type": "exact" + }, + { + "position": 82, + "playlist_artist": "Commodores", + "playlist_title": "Sweet Love", + "found_song": { + "artist": "Commodores", + "disabled": false, + "favorite": false, + "guid": "2f3534c6-e650-0af2-c84b-db2d56f521cb", + "path": "z://CDG\\Various\\Commodores - Sweet Love.mp3", + "title": "Sweet Love" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "The 4 Seasons", + "playlist_title": "December, 1963 (Oh, What a Night)", + "found_song": { + "artist": "The 4 Seasons", + "disabled": false, + "favorite": false, + "guid": "ed6afb7e-23ab-cd12-0a42-692dedeb0164", + "path": "z://MP4\\Stingray Karaoke\\December, 1963 (Oh, What A Night) The 4 Seasons Karaoke with Lyrics.mp4", + "title": "December, 1963 (Oh, What A Night)" + }, + "match_type": "exact" + }, + { + "position": 89, + "playlist_artist": "Roxy Music", + "playlist_title": "Love Is The Drug", + "found_song": { + "artist": "Roxy Music", + "disabled": false, + "favorite": false, + "guid": "d2018bd2-4313-d17f-bbfa-92a34992ff6a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Is The Drug - Roxy Music.mp4", + "title": "Love Is The Drug" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Greg Lake", + "playlist_title": "I Believe In Father Christmas", + "found_song": { + "artist": "Greg Lake", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d5598f9-d4fb-8fdf-db23-6ae211019da7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Greg Lake - I Believe In Father Christmas.mp4", + "title": "I Believe In Father Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "KC And The Sunshine Band", + "playlist_title": "That's The Way (I Like It)", + "found_song": { + "artist": "KC And The Sunshine Band", + "disabled": false, + "favorite": false, + "guid": "e9754772-36e1-2c31-35c8-fc6b7a3373ba", + "path": "z://MP4\\Stingray Karaoke\\That's The Way (I Like It) in the style of KC And The Sunshine Band karaoke.mp4", + "title": "That's The Way (I Like It)" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "Kiss", + "playlist_title": "Rock And Roll All Nite (live)", + "found_song": { + "artist": "Kiss", + "disabled": false, + "favorite": false, + "guid": "7cdca01a-00b3-6194-f66c-0c45d032dee8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock And Roll All Nite - Kiss.mp4", + "title": "Rock And Roll All Nite" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "The Isley Brothers", + "playlist_title": "For The Love Of You (Part 1&2)", + "found_song": { + "artist": "The Isley Brothers", + "disabled": false, + "favorite": false, + "guid": "564c7416-e7d4-ab64-0081-f6293f95c91a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Love Of You - The Isley Brothers.mp4", + "title": "For The Love Of You" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 38, + "playlist_artist": "The Marshall Tucker Band", + "playlist_title": "Fire On The Mountain", + "found_song": { + "artist": "The Marshall Tucker Band", + "disabled": false, + "favorite": false, + "guid": "389bad52-c78a-bb2e-01e8-f7ba5f31823a", + "path": "z://MP4\\KaraokeOnVEVO\\The Marshall Tucker Band - Fire On The Mountain (Karaoke).mp4", + "title": "Fire On The Mountain" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 50, + "playlist_artist": "Paul Simon", + "playlist_title": "50 Ways To Leave Your Lover", + "found_song": { + "artist": "Paul Simon", + "disabled": false, + "favorite": false, + "guid": "48295303-eecd-0fe9-cfaf-c0b39ca7723d", + "path": "z://CDG\\Various\\Paul Simon - Fifty Ways To Leave Your Lover.mp3", + "title": "Fifty Ways To Leave Your Lover" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Who Loves You", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "50d96413-e787-93f3-8bfe-470441c55096", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Who Loves You - Frankie Valli & The Four Seasons.mp4", + "title": "Who Loves You" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 71, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Tracks Of My Tears", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "41bbd1ba-aded-7f38-258d-b43c05e3d30f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Tracks Of My Tears - Linda Ronstadt.mp4", + "title": "The Tracks Of My Tears" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Staple Singers", + "title": "Let's Do It Again", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Ohio Players", + "title": "Love Rollercoaster", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Silver Convention", + "title": "Fly, Robin, Fly", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The O'Jays", + "title": "I Love Music (Part 1)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Frankie Valli", + "title": "Our Day Will Come", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Paul Anka", + "title": "Times Of Your Life", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "David Ruffin", + "title": "Walk Away From Love", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "David Geddes", + "title": "The Last Game Of The Season (A Blind Man In The Bleachers)", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Earth, Wind & Fire", + "title": "Sing A Song", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gladys Knight And The Pips", + "title": "Part Time Love", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Miracles", + "title": "Love Machine (Part 1)", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Al Green", + "title": "Full Of Fire", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Simon & Garfunkel", + "title": "My Little Town", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Winners And Losers", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Captain & Tennille", + "title": "The Way I Want To Touch You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "AWB", + "title": "School Boy Crush", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Wing And A Prayer Fife & Drum Corps.", + "title": "Baby Face", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Harold Melvin And The Blue Notes", + "title": "Wake Up Everybody (Part 1)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Helen Reddy", + "title": "Somewhere In The Night", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Road Apples", + "title": "Let's Live Together", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bob Dylan", + "title": "Hurricane (Part I)", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Olivia Newton-John", + "title": "Let It Shine/He Ain't Heavy...He's My Brother", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Leon Haywood", + "title": "I Want'a Do Something Freaky To You", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "America", + "title": "Woman Tonight", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "George Baker Selection", + "title": "Paloma Blanca", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Purple Reign", + "title": "This Old Man", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Freddy Fender", + "title": "Secret Love", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Bachman-Turner Overdrive", + "title": "Down To The Line", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jefferson Starship", + "title": "Play On Love", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Tavares", + "title": "Free Ride", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Kenny Starr", + "title": "The Blind Man In The Bleachers", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Rhythm Heritage", + "title": "Theme From S.W.A.T.", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Pointer Sisters", + "title": "Going Down Slowly", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "John Denver", + "title": "Christmas For Cowboys", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Donny & Marie Osmond", + "title": "Deep Purple", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Billy Crash Craddock", + "title": "Easy As Pie", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Eddie Kendricks", + "title": "Happy", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Batdorf & Rodney", + "title": "Somewhere In The Night", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Bee Gees", + "title": "Fanny (be Tender With My Love)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hagood Hardy", + "title": "The Homecoming", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Gloria Gaynor", + "title": "How High The Moon", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Soul Train Gang", + "title": "Soul Train 75", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Spinners", + "title": "Love Or Leave", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "John Fogerty", + "title": "Almost Saturday Night", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Prelude", + "title": "For A Dancer", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "John Paul Young", + "title": "Yesterday's Hero", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Art Garfunkel", + "title": "Break Away", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "10cc", + "title": "Art For Art's Sake", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Ritchie Family", + "title": "I Want To Dance With You (Dance With Me)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Doobie Brothers", + "title": "I Cheat The Hangman", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Cledus Maggard And The Citizen's Band", + "title": "The White Knight", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Conway Twitty with Joni Lee", + "title": "Don't Cry Joni", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "The Eleventh Hour", + "title": "Hollywood Hot", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Mfsb", + "title": "The Zip", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Stylistics", + "title": "Funky Weekend", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Crown Heights Affair", + "title": "Every Beat Of My Heart", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Amazing Rhythm Aces", + "title": "Amazing Grace (used To Be Her Favorite Song)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bill Withers", + "title": "Make Love To Your Mind", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Justin Hayward & John Lodge", + "title": "Blue Guitar", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Wings", + "title": "Venus And Mars Rock Show", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Pete Wingfield", + "title": "Eighteen With A Bullet", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Country Joe McDonald", + "title": "Breakfast For Two", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 7, + "missing_count": 62, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1974 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Helen Reddy", + "playlist_title": "Angie Baby", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "72e0535d-217b-7009-e5d8-35da016d827d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Angie Baby - Helen Reddy.mp4", + "title": "Angie Baby" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Elton John", + "playlist_title": "Lucy In The Sky With Diamonds", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0e9f233-408f-e998-782f-2c15ab7a88c8", + "path": "z://MP4\\KaraokeOnVEVO\\Elton John - Lucy In The Sky With Diamonds.mp4", + "title": "Lucy In The Sky With Diamonds" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Barry White", + "playlist_title": "You're The First, The Last, My Everything", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "3d2fb8c7-1604-d971-e34e-6ff474ea4bed", + "path": "z://MP4\\KaraFun Karaoke\\Barry White - You're The First, The Last, My Everything.mp4", + "title": "You're The First, The Last, My Everything" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carl Douglas", + "playlist_title": "Kung Fu Fighting", + "found_song": { + "artist": "Carl Douglas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65677f28-2d26-e515-cf4c-fcab56986b97", + "path": "z://MP4\\Stingray Karaoke\\Carl Douglas - Kung Fu Fighting.mp4", + "title": "Kung Fu Fighting" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Harry Chapin", + "playlist_title": "Cat's In The Cradle", + "found_song": { + "artist": "Harry Chapin", + "disabled": false, + "favorite": false, + "guid": "7a046965-f76c-54fe-61da-43e4cbbd3d54", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Cat s In The Cradle - Harry Chapin.mp4", + "title": "Cat s In The Cradle" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Three Degrees", + "playlist_title": "When Will I See You Again", + "found_song": { + "artist": "The Three Degrees", + "disabled": false, + "favorite": false, + "guid": "743ec6e8-8dfe-8f2a-bb9e-d005b3b5b863", + "path": "z://MP4\\Let's Sing Karaoke\\Three Degrees, The - When Will I See You Again (Karaoke & Lyrics).mp4", + "title": "When Will I See You Again" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Laughter In The Rain", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9a671ea9-6c96-bd29-c15a-181e103f4f4f", + "path": "z://MP4\\sing2karaoke\\Neil Sedaka - Laughter In The Rain.mp4", + "title": "Laughter In The Rain" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Carpenters", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "b92f785e-5a19-a83c-e563-77e63b997b6c", + "path": "z://CDG\\Various\\Carpenters - Please Mr. Postman.mp3", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Barry Manilow", + "playlist_title": "Mandy", + "found_song": { + "artist": "Barry Manilow", + "disabled": false, + "favorite": false, + "guid": "4c119a40-2365-7ded-d1b8-d265baa8ce7b", + "path": "z://MP4\\Sing King Karaoke\\Barry Manilow - Mandy (Karaoke Version).mp4", + "title": "Mandy" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Al Green", + "playlist_title": "Sha-La-La (Make Me Happy)", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80c58ea6-068e-f4b6-3143-014d276e14e4", + "path": "z://MP4\\KaraokeOnVEVO\\Al Green - Sha-La-La (Make Me Happy.mp4", + "title": "Sha-La-La (Make Me Happy)" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Gloria Gaynor", + "playlist_title": "Never Can Say Goodbye", + "found_song": { + "artist": "Gloria Gaynor", + "disabled": false, + "favorite": false, + "guid": "5cc12159-cfba-ad02-06bd-16a04181174e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Can Say Goodbye - Gloria Gaynor.mp4", + "title": "Never Can Say Goodbye" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Billy Swan", + "playlist_title": "I Can Help", + "found_song": { + "artist": "Billy Swan", + "disabled": false, + "favorite": false, + "guid": "17fa78ec-4ec4-87b1-d0f9-c71d0adb1dd1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Can Help - Billy Swan.mp4", + "title": "I Can Help" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Ohio Players", + "playlist_title": "Fire", + "found_song": { + "artist": "Ohio Players, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "61574209-f3b6-8a7c-cec1-d003640190c7", + "path": "z://CDG\\SBI\\SBI-01\\SB05516 - The Ohio Players - Fire.mp3", + "title": "Fire" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Carol Douglas", + "playlist_title": "Doctor's Orders", + "found_song": { + "artist": "Carol Douglas", + "disabled": false, + "favorite": false, + "guid": "ed26f19c-9a39-42de-c394-d59f68904aab", + "path": "z://MP4\\KaraokeOnVEVO\\Carol Douglas - Doctor's Orders (Karaoke).mp4", + "title": "Doctor's Orders" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Elvis Presley", + "playlist_title": "Promised Land", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b052ac0c-91cb-6c4d-6098-25367cd82819", + "path": "z://MP4\\ZoomKaraokeOfficial\\Elvis Presley - Promised Land.mp4", + "title": "Promised Land" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Ain't Too Proud To Beg", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "70d8888e-5dda-e641-2da6-7c05026623e8", + "path": "z://MP4\\Stingray Karaoke\\Ain't Too Proud To Beg in the style of The Rolling Stones - karaoke video with lyrics.mp4", + "title": "Ain't Too Proud To Beg" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "Mac Davis", + "playlist_title": "Rock N' Roll (I Gave You The Best Years Of My Life)", + "found_song": { + "artist": "Mac Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "74e0e193-ec6e-2fef-19be-93a9f85a2322", + "path": "z://MP4\\KaraokeOnVEVO\\Mac Davis - Rock N Roll (I Gave You The Best Years Of My Life.mp4", + "title": "Rock N' Roll (I Gave You The Best Years Of My Life)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Shirley Brown", + "playlist_title": "Woman To Woman", + "found_song": { + "artist": "Shirley Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f86102b-4f27-f5c7-4efe-8a48d50219a0", + "path": "z://MP4\\KaraokeOnVEVO\\Shirley Brown - Woman To Woman.mp4", + "title": "Woman To Woman" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Billy Crash Craddock", + "playlist_title": "Ruby, Baby", + "found_song": { + "artist": "Billy Crash Craddock", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "013aa183-64fa-efe8-89e7-90700565fbfe", + "path": "z://MP4\\KaraokeOnVEVO\\Billy Crash Craddock - Ruby, Baby.mp4", + "title": "Ruby, Baby" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eagles", + "playlist_title": "Best Of My Love", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "92c02359-0c20-10f7-fee4-ca9666eeed00", + "path": "z://CDG\\Various\\Eagles - Best Of My Love.mp3", + "title": "Best Of My Love" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Bachman-Turner Overdrive", + "playlist_title": "You Ain't Seen Nothing Yet/Free Wheelin'", + "found_song": { + "artist": "Bachman-Turner Overdrive", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a6b5cb9f-cc3c-0b6b-86c1-7c33a6f5c985", + "path": "z://MP4\\KaraokeOnVEVO\\Bachman-Turner Overdrive - You Ain't Seen Nothing YetFree Wheelin'.mp4", + "title": "You Ain't Seen Nothing Yet/Free Wheelin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Lynyrd Skynyrd", + "playlist_title": "Free Bird", + "found_song": { + "artist": "Lynyrd Skynyrd", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8e34478f-5cfc-0951-6390-4e7e1f9c1868", + "path": "z://MP4\\KaraokeOnVEVO\\Lynyrd Skynyrd - Free Bird.mp4", + "title": "Free Bird" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Neil Diamond", + "playlist_title": "Longfellow Serenade", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "43ec422f-b2f2-2f18-6343-2fb0d0cbcddc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Longfellow Serenade - Neil Diamond.mp4", + "title": "Longfellow Serenade" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Eric Clapton", + "playlist_title": "Willie And The Hand Jive", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64d56d87-999d-ba21-7b5a-952b3b1a02ac", + "path": "z://CDG\\Various\\Eric Clapton - Willie And The Hand Jive.mp3", + "title": "Willie And The Hand Jive" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Frankie Valli", + "playlist_title": "My Eyes Adored You", + "found_song": { + "artist": "Frankie Valli", + "disabled": false, + "favorite": false, + "guid": "5e059d27-e5cd-c0b9-e0c3-f7f6fdb63bb7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Eyes Adored You - Frankie Valli.mp4", + "title": "My Eyes Adored You" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "David Bowie", + "playlist_title": "Changes", + "found_song": { + "artist": "David Bowie", + "disabled": false, + "favorite": false, + "guid": "583cd470-7087-e842-c6ed-618c77421ef3", + "path": "z://MP4\\TheKARAOKEChannel\\Changes in the style of David Bowie Karaoke with Lyrics.mp4", + "title": "Changes" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Black Water", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "guid": "5e5b7e0a-19c7-e57f-1f29-9292c487c48b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Water - The Doobie Brothers.mp4", + "title": "Black Water" + }, + "match_type": "exact" + }, + { + "position": 62, + "playlist_artist": "Carl Carlton", + "playlist_title": "Everlasting Love", + "found_song": { + "artist": "Carl Carlton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e81e43bb-fb16-ab18-68f6-c229939b4411", + "path": "z://MP4\\KaraokeOnVEVO\\Carl Carlton - Everlasting Love.mp4", + "title": "Everlasting Love" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "John Denver", + "playlist_title": "Back Home Again", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "1f1c7bec-e3eb-79c9-4838-7d52e4f41d97", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Back Home Again (Karaoke).mp4", + "title": "Back Home Again" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Styx", + "playlist_title": "Lady", + "found_song": { + "artist": "Styx", + "disabled": false, + "favorite": false, + "guid": "719ee096-2f29-6b66-d55f-a6183c6e77b0", + "path": "z://MP4\\Let's Sing Karaoke\\Styx - Lady (Karaoke & Lyrics).mp4", + "title": "Lady" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "John Denver", + "playlist_title": "Sweet Surrender", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3c8002f0-5b1a-119a-0ee9-fa7b2bbf473a", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Sweet Surrender.mp4", + "title": "Sweet Surrender" + }, + "match_type": "exact" + }, + { + "position": 84, + "playlist_artist": "Joni Mitchell", + "playlist_title": "Big Yellow Taxi", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "5c7a0add-fbaf-487e-5b21-47a5269e7343", + "path": "z://MP4\\Stingray Karaoke\\Big Yellow Taxi Joni Mitchell Karaoke with Lyrics.mp4", + "title": "Big Yellow Taxi" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Peter Shelley", + "playlist_title": "Gee Baby", + "found_song": { + "artist": "Peter Shelley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05db10e6-52f3-7d03-f5d8-d6433874d75d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter Shelley - Gee Baby.mp4", + "title": "Gee Baby" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "The Tymes", + "playlist_title": "Ms. Grace", + "found_song": { + "artist": "The Tymes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f14512ba-e380-121c-059d-5bc42baa019c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Tymes - Ms Grace.mp4", + "title": "Ms Grace" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 29, + "playlist_artist": "Grand Funk", + "playlist_title": "Some Kind Of Wonderful", + "found_song": { + "artist": "Grand Funk", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3757dd9-8a32-ec55-b308-9a572b04a30c", + "path": "z://MP4\\VocalStarKaraoke\\Grand Funk - Some Kind Of Wonderful.mp4", + "title": "Some Kind Of Wonderful" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 36, + "playlist_artist": "The Pointer Sisters", + "playlist_title": "Fairytale", + "found_song": { + "artist": "The Pointer Sisters", + "disabled": false, + "favorite": false, + "guid": "06f8e736-2dbe-25ee-3688-4af0e9770436", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire - The Pointer Sisters.mp4", + "title": "Fire" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "Billy Joel", + "playlist_title": "The Entertainer", + "found_song": { + "artist": "Billy Joel", + "disabled": false, + "favorite": false, + "guid": "93c5c387-b76a-6105-19e4-cf7db9d269e3", + "path": "z://CDG\\Various\\Billy Joel - Entertainer.mp3", + "title": "Entertainer" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "You're No Good", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fb35189e-9c5f-7434-f2fd-fcb9ce755902", + "path": "z://MP4\\VocalStarKaraoke\\Linda Ronstadt - Youre No Good.mp4", + "title": "Youre No Good" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 53, + "playlist_artist": "The Kiki Dee Band", + "playlist_title": "I've Got The Music In Me", + "found_song": { + "artist": "Kiki Dee", + "disabled": false, + "favorite": false, + "guid": "50d48ad5-b8ed-f842-7d4b-d76f73c7d845", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF162\\Kiki Dee - Ive Got The Music In Me - SF162 - 03.mp3", + "title": "Ive Got The Music In Me" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 6, + "artist": "Paul McCartney & Wings", + "title": "Junior's Farm/Sally G", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Ringo Starr", + "title": "Only You", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Stevie Wonder", + "title": "Boogie On Reggae Woman", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The J. Geils Band", + "title": "Must Of Got Lost", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Paul Anka with Odia Coates", + "title": "One Man Woman/One Woman Man", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jethro Tull", + "title": "Bungle In The Jungle", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Rufus Featuring Chaka Khan", + "title": "You Got The Love", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Donny & Marie Osmond", + "title": "Morning Side Of The Mountain", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "George Harrison", + "title": "Dark Horse", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "B.T. Express", + "title": "Do It ('Til You're Satisfied)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Gladys Knight And The Pips", + "title": "I Feel A Song (In My Heart)/Don't Burn Down The Bridge", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "AWB", + "title": "Pick Up The Pieces", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Paul Davis", + "title": "Ride 'em Cowboy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Guess Who", + "title": "Dancin' Fool", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Chicago", + "title": "Wishing You Were Here", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Disco Tex & The Sex-O-Lettes", + "title": "Get Dancin'", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Barbara Mason", + "title": "From His Woman To You", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Love Unlimited", + "title": "I Belong To You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "James Brown", + "title": "Funky President (People It's Bad)/Coldblooded", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Aretha Franklin", + "title": "Without Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Righteous Brothers", + "title": "Dream On", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Bobby Vinton", + "title": "My Melody Of Love", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Tavares", + "title": "She's Gone", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Joneses", + "title": "Sugar Pie Guy Pt. 1", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Cat Stevens", + "title": "Ready", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Billy Preston", + "title": "Struttin'", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "John Lennon", + "title": "#9 Dream", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Jackson 5", + "title": "Whatever You Got, I Want", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Stylistics", + "title": "Heavy Fallin' Out", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Tony Orlando & Dawn", + "title": "Look In My Eyes Pretty Woman", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "John Lennon With The Plastic Ono Nuclear Band", + "title": "Whatever Gets You Thru The Night", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The O'Jays", + "title": "Sunshine Part II", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Bo Donaldson And The Heywoods", + "title": "The Heartbreak Kid", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "B.B. King", + "title": "Philadelphia", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Jim Stafford", + "title": "Your Bulldog Drinks Champagne", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Carl Graves", + "title": "Baby, Hang Up The Phone", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Eddie Kendricks", + "title": "One Tear", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Michael Holm", + "title": "When A Child Is Born", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "The Temptations", + "title": "Happy People", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Smokey Robinson", + "title": "I Am I Am", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Electric Light Orchestra", + "title": "Can't Get It Out Of My Head", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "America", + "title": "Lonely People", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Latimore", + "title": "Let's Straighten It Out", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Anne Murray", + "title": "Day Tripper", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Roy Rogers", + "title": "Hoppy, Gene And Me", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Al Martino", + "title": "To The Door Of The Sun (Alle Porte Del Sole)", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Miracles", + "title": "Don't Cha Love It", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Sugarloaf/Jerry Corbetta", + "title": "Don't Call Us, We'll Call You", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Candi Staton", + "title": "As Long As He Takes Care Of Home", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Splinter", + "title": "Costafine Town", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Maria Muldaur", + "title": "I'm A Woman", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Commodores", + "title": "I Feel Sanctified", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Perry Como", + "title": "Christmas Dream", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Bill Withers", + "title": "Heartbreak Road", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Margie Joseph", + "title": "Words (are Impossible)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Hues Corporation", + "title": "Rockin' Soul", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Jim Weatherly", + "title": "The Need To Be", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Johnny Bristol", + "title": "You And I", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Bland", + "title": "I Wouldn't Treat A Dog (The Way You Treated Me)", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Prelude", + "title": "After The Goldrush", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Chilliwack", + "title": "Crazy Talk", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 34, + "fuzzy_match_count": 5, + "missing_count": 61, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1973 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Jim Croce", + "playlist_title": "Time In A Bottle", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f5662d5e-9b8e-c33f-456a-8d7b4444869e", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Time In A Bottle.mp4", + "title": "Time In A Bottle" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Charlie Rich", + "playlist_title": "The Most Beautiful Girl", + "found_song": { + "artist": "Charlie Rich", + "disabled": false, + "favorite": false, + "guid": "25249141-6b69-b746-113a-d90a48b53b59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Most Beautiful Girl - Charlie Rich.mp4", + "title": "The Most Beautiful Girl" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Elton John", + "playlist_title": "GOODBYE YELLOW BRICK ROAD", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "3308988f-229f-b8c4-b59c-d8e57fc748ea", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goodbye Yellow Brick Road - Elton John.mp4", + "title": "Goodbye Yellow Brick Road" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Todd Rundgren", + "playlist_title": "Hello It's Me", + "found_song": { + "artist": "Todd Rundgren", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b20749a1-b2c3-0e2a-6f85-ecca09a6590d", + "path": "z://MP4\\KaraokeOnVEVO\\Todd Rundgren - Hello Its Me.mp4", + "title": "Hello It's Me" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Carpenters", + "playlist_title": "Top Of The World", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e76caaae-7dd5-f551-86f3-a8d39627f36a", + "path": "z://MP4\\KaraokeOnVEVO\\Carpenters - Top Of The World.mp4", + "title": "Top Of The World" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Al Wilson", + "playlist_title": "Show And Tell", + "found_song": { + "artist": "Al Wilson", + "disabled": false, + "favorite": false, + "guid": "5f850116-7a7a-84d0-d3df-6772ca525079", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Show And Tell - Al Wilson.mp4", + "title": "Show And Tell" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Brownsville Station", + "playlist_title": "Smokin' In The Boy's Room", + "found_song": { + "artist": "Brownsville Station", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "34927557-1909-bfbd-6c50-34556b0e031a", + "path": "z://MP4\\KaraokeOnVEVO\\Brownsville Station - Smokin In The Boys Room.mp4", + "title": "Smokin' In The Boy's Room" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Living For The City", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "da3c707b-c3a5-b01f-1776-0c86268893f5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Living For The City - Stevie Wonder.mp4", + "title": "Living For The City" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "If You're Ready (Come Go With Me)", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eab4280e-4649-688c-77fc-328d521400de", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - If Youre Ready (Come Go With Me.mp4", + "title": "If You're Ready (Come Go With Me)" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Chicago", + "playlist_title": "Just You 'n' Me", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2e6c606e-e002-f992-cbe3-95c604ac60bd", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Just You n Me.mp4", + "title": "Just You 'n' Me" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Olivia Newton-John", + "playlist_title": "Let Me Be There", + "found_song": { + "artist": "Olivia Newton-John", + "disabled": false, + "favorite": false, + "guid": "c1b8fc75-fac0-b76c-c66f-fd2d80647079", + "path": "z://MP4\\Sing King Karaoke\\Olivia Newton-John - Let Me Be There (Karaoke Version).mp4", + "title": "Let Me Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "John Lennon", + "playlist_title": "MIND GAMES", + "found_song": { + "artist": "John Lennon", + "disabled": false, + "favorite": false, + "guid": "2aa09c65-8d9d-d987-5981-14fae2a30397", + "path": "z://CDG\\Various\\John Lennon - Mind Games.mp3", + "title": "Mind Games" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Until You Come Back To Me (That's What I'm Gonna Do)", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e1d223ad-1e0a-43eb-37ed-33bd6d551979", + "path": "z://MP4\\KaraokeOnVEVO\\Aretha Franklin - Until You Come Back To Me (Thats What Im Gonna Do.mp4", + "title": "Until You Come Back To Me (That's What I'm Gonna Do)" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Led Zeppelin", + "playlist_title": "D'yer Mak'er", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0ea182f2-52a9-6b1d-0b22-6311b5a778e2", + "path": "z://CDG\\Various\\Led Zeppelin - D'yer Mak'er.mp3", + "title": "D'yer Mak'er" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Teddy Pendergrass", + "playlist_title": "The Whole Town's Laughing At Me", + "found_song": { + "artist": "Teddy Pendergrass", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7d483b1c-b706-04a6-a792-d6f3c63df9c4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Teddy Pendergrass - The Whole Towns Laughing At Me.mp4", + "title": "The Whole Town's Laughing At Me" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ringo Starr", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "guid": "4f665551-902c-0dfc-18cc-8d627917ecec", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF035\\Ringo Starr - You're Sixteen - SF035 - 13.mp3", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Ringo Starr", + "playlist_title": "Photograph", + "found_song": { + "artist": "Ringo Starr", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87eb02b4-5c48-c59a-68ed-a9039de79b12", + "path": "z://MP4\\KaraokeOnVEVO\\Ringo Starr - Photograph.mp4", + "title": "Photograph" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Come Get To This", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "da6e9dae-7c81-27c5-536f-bda7aa7f7bad", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come Get To This - Marvin Gaye.mp4", + "title": "Come Get To This" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Jim Croce", + "playlist_title": "I Got A Name", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "guid": "faabc721-8e69-1f67-f3af-51267a0e7a98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Got A Name - Jim Croce.mp4", + "title": "I Got A Name" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Jim Stafford", + "playlist_title": "Spiders & Snakes", + "found_song": { + "artist": "Jim Stafford", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c49003db-4a0f-2669-26c3-f4c604cce60b", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Stafford - Spiders & Snakes.mp4", + "title": "Spiders & Snakes" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Eddie Kendricks", + "playlist_title": "Keep On Truckin' (Part 1)", + "found_song": { + "artist": "Eddie Kendricks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "762708d7-270c-95a1-4245-d2fdeacda57c", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Kendricks - Keep On Truckin' (Part 1).mp4", + "title": "Keep On Truckin' (Part 1)" + }, + "match_type": "exact" + }, + { + "position": 42, + "playlist_artist": "Ann Peebles", + "playlist_title": "I Can't Stand The Rain", + "found_song": { + "artist": "Ann Peebles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "469c591a-6ee5-3322-f1f7-cdcef8cbb153", + "path": "z://MP4\\KaraokeOnVEVO\\Ann Peebles - I Cant Stand The Rain.mp4", + "title": "I Can't Stand The Rain" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "El Chicano", + "playlist_title": "Tell Her She's Lovely", + "found_song": { + "artist": "El Chicano", + "disabled": false, + "favorite": false, + "guid": "64a71f0c-a2b0-2a77-73d4-a1c0577e6db4", + "path": "z://MP4\\CerealKillerKaraoke\\CKK-VR - El Chicano - Tell Her She's Lovely (Karaoke).mp4", + "title": "Tell Her She's Lovely" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marie Osmond", + "playlist_title": "Paper Roses", + "found_song": { + "artist": "Marie Osmond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d3df2106-3163-1edf-e724-fefcdea0cb0f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marie Osmond - Paper Roses.mp4", + "title": "Paper Roses" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Merle Haggard", + "playlist_title": "If We Make It Through December", + "found_song": { + "artist": "Merle Haggard", + "disabled": false, + "favorite": false, + "guid": "747626a6-ffc4-86c7-0e22-be7ef618397e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If We Make It Through December - Merle Haggard.mp4", + "title": "If We Make It Through December" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "David Essex", + "playlist_title": "Rock On", + "found_song": { + "artist": "David Essex", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb5971a7-4c0b-f943-4c4e-5d2f9f85625f", + "path": "z://MP4\\KaraokeOnVEVO\\David Essex - Rock On.mp4", + "title": "Rock On" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Tom T. Hall", + "playlist_title": "I Love", + "found_song": { + "artist": "Tom T. Hall", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0fade696-4ffe-a54e-c3d5-3998f479c63a", + "path": "z://MP4\\KaraokeOnVEVO\\Tom T. Hall - I Love.mp4", + "title": "I Love" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Linda Ronstadt", + "playlist_title": "Love Has No Pride", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "feb22dfd-a1ad-851b-03b0-eda48003da10", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Love Has No Pride - Linda Ronstadt.mp4", + "title": "Love Has No Pride" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Steely Dan", + "playlist_title": "My Old School", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "4137b363-2ba6-dc08-4539-bfef494251a0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Old School - Steely Dan.mp4", + "title": "My Old School" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Coven", + "playlist_title": "One Tin Soldier, The Legend of Billy Jack", + "found_song": { + "artist": "Coven", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "410fe011-6b01-315e-18fc-66c18f22d46d", + "path": "z://MP4\\KaraokeOnVEVO\\Coven - One Tin Soldier, The Legend of Billy Jack.mp4", + "title": "One Tin Soldier, The Legend of Billy Jack" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "The Steve Miller Band", + "playlist_title": "The Joker", + "found_song": { + "artist": "The Steve Miller Band", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1cbb89f1-0b1e-0a21-455e-a921fb53329a", + "path": "z://MP4\\VocalStarKaraoke\\The Steve Miller Band - The Joker.mp4", + "title": "The Joker" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Barry White", + "playlist_title": "Never, Never Gonna Give Ya Up", + "found_song": { + "artist": "Barry White", + "disabled": false, + "favorite": false, + "guid": "e0ef4ba3-305e-cb9a-ee61-65538a7e1307", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never, Never Gonna Give You Up - Barry White.mp4", + "title": "Never, Never Gonna Give You Up" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 14, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I've Got To Use My Imagination", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "a56f26ea-c812-ecd5-81ce-46daa4e37e2f", + "path": "z://MP4\\Stingray Karaoke\\I've Got To Use My Imagination in the style of Gladys Knight & The Pips karaoke video.mp4", + "title": "I've Got To Use My Imagination" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 15, + "playlist_artist": "The Stylistics", + "playlist_title": "Rockin' Roll Baby", + "found_song": { + "artist": "Stylistics", + "disabled": false, + "favorite": false, + "guid": "f7d0d1c5-3e66-79a4-0869-dc7f087fe90f", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF091\\Stylistics - Rockin' Roll Baby - SF091 - 05.mp3", + "title": "Rockin' Roll Baby" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Paul McCartney & Wings", + "playlist_title": "Helen Wheels", + "found_song": { + "artist": "Paul McCartney ft. Wings", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4b958fe0-368b-5ab5-20c4-4291cf597b6b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Paul McCartney & Wings - Helen Wheels.mp4", + "title": "Helen Wheels" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Barbra Streisand", + "playlist_title": "The Way We Were", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "06822cb5-9ea9-e911-e5ed-d3f06cc98423", + "path": "z://MP4\\KaraFun Karaoke\\Barbra Streisand - The Way We Were.mp4", + "title": "The Way We Were" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "Midnight Train To Georgia", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "f7466c3d-b4e6-42a3-fdd5-94bfaac0fccb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Midnight Train To Georgia - Gladys Knight & The Pips.mp4", + "title": "Midnight Train To Georgia" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Kool & The Gang", + "playlist_title": "Jungle Boogie", + "found_song": { + "artist": "Kool & The Gang", + "disabled": false, + "favorite": false, + "guid": "a2979ff9-c786-ae17-f642-acf76a1b40bc", + "path": "z://CDG\\Various\\Kool & The Gang - Jungle Boogie.mp3", + "title": "Jungle Boogie" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 67, + "playlist_artist": "Electric Light Orchestra", + "playlist_title": "Showdown", + "found_song": { + "artist": "Electric Light Orchestra", + "disabled": false, + "favorite": false, + "guid": "d56f128c-c656-2f8b-1452-d19fee39ed39", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 912\\Electric Light Orchestra - Do Ya - SFMW912 - 01.mp3", + "title": "Do Ya" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Helen Reddy", + "title": "Leave Me Alone (ruby Red Dress)", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Love Unlimited Orchestra", + "title": "Love's Theme", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "War", + "title": "Me And Baby Brother", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Donny Osmond", + "title": "When I Fall In Love/Are You Lonesome Tonight", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Loggins & Messina", + "title": "My Music", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Billy Preston", + "title": "Space Race", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Al Green", + "title": "Livin' For You", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Tony Orlando & Dawn", + "title": "Who's In The Strawberry Patch With Sally", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Cheech & Chong", + "title": "Sister Mary Elephant (Shudd-Up!)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Grand Funk", + "title": "Walk Like A Man", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Ian Thomas", + "title": "Painted Ladies", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The DeFranco Family featuring Tony DeFranco", + "title": "Heartbeat - It's A Lovebeat", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Three Dog Night", + "title": "Let Me Serenade You", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Paul Simon", + "title": "American Tune", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bobby Blue Bland", + "title": "This Time I'm Gone For Good", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Chi-lites", + "title": "I Found Sunshine", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Persuaders", + "title": "Some Guys Have All The Luck", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Kris Kristofferson & Rita Coolidge", + "title": "A Song I'd Like To Sing", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Carole King", + "title": "Coraz??�n", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Earth, Wind & Fire", + "title": "Keep Your Head To The Sky", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.W. Stevenson", + "title": "The River Of Love", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "First Choice", + "title": "Smarty Pants", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Smokey Robinson", + "title": "Baby Come Close", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "The Intruders", + "title": "I Wanna Know Your Name", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The O'Jays", + "title": "Put Your Hands Together", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Isaac Hayes", + "title": "Joy Pt. I", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Frank Sinatra", + "title": "Let Me Try Again (Laisse Moi Le Temps)", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Joe Simon", + "title": "River", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Temptations", + "title": "Let Your Hair Down", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Black Oak Arkansas", + "title": "Jim Dandy", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Bachman-Turner Overdrive", + "title": "Blue Collar", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Bob Dylan", + "title": "A Fool Such As I", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Anne Murray", + "title": "Love Song", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Edgar Winter Group", + "title": "Hangin' Around", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Gregg Allman", + "title": "Midnight Rider", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Band", + "title": "Ain't Got No Home", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Wednesday", + "title": "Last Kiss", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "B.B. King", + "title": "I Like To Live The Love", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Who", + "title": "Love, Reign O'er Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Jim Croce", + "title": "It Doesn't Have To Be That Way", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown", + "title": "Stoned To The Bone - Part 1", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "John Denver", + "title": "Please, Daddy", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Keith Hampshire", + "title": "Big Time Operator", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Melanie", + "title": "Will You Love Me Tomorrow?", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Love Unlimited", + "title": "It May Be Winter Outside, (But In My Heart It's Spring)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Alice Cooper", + "title": "Teenage Lament '74", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Roy Clark", + "title": "Somewhere Between Love And Tomorrow", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Don Goodwin", + "title": "This Is Your Song", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Garfunkel", + "title": "I Shall Sing", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pointer Sisters", + "title": "Wang Dang Doodle", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Joni Mitchell", + "title": "Raised On Robbery", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The 5th Dimension", + "title": "Flashback", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Lamont Dozier", + "title": "Trying To Hold On To My Woman", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Gary & Dave", + "title": "Could You Ever Love Me Again", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Albert Hammond", + "title": "Half A Million Miles From Home", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The De Franco Family", + "title": "Abra-Ca-Dabra", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Dramatics", + "title": "Fell For You", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "J. Frank Wilson and The Cavaliers", + "title": "Last Kiss", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Isley Brothers", + "title": "What It Comes Down To", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Johnny Mathis", + "title": "Life Is A Song Worth Singing", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Curtis Mayfield", + "title": "Can't Say Nothin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 30, + "fuzzy_match_count": 9, + "missing_count": 61, + "needs_manual_review": 9 + } + }, + { + "playlist_title": "1972 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Billy Paul", + "playlist_title": "Me And Mrs. Jones", + "found_song": { + "artist": "Billy Paul", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3b4cbdd2-975e-434a-4f2b-8835c905b6af", + "path": "z://MP4\\ZoomKaraokeOfficial\\Billy Paul - Me And Mrs Jones.mp4", + "title": "Me And Mrs Jones" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Gilbert O'Sullivan", + "playlist_title": "Clair", + "found_song": { + "artist": "Gilbert O'Sullivan", + "disabled": false, + "favorite": false, + "guid": "f12b21af-4df1-ab5d-5f59-8518098ce3ba", + "path": "z://MP4\\KaraFun Karaoke\\Clair - Gilbert O'Sullivan Karaoke Version KaraFun.mp4", + "title": "Clair" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Al Green", + "playlist_title": "You Ought To Be With Me", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "744538c3-97bd-a9ba-fd8f-21ea99a954b4", + "path": "z://MP4\\Let's Sing Karaoke\\Green, Al - You Ought To Be With Me (Karaoke & Lyrics).mp4", + "title": "You Ought To Be With Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Carly Simon", + "playlist_title": "You're So Vain", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "guid": "b31261c5-14ac-0770-063c-2a2fe289753a", + "path": "z://MP4\\Stingray Karaoke\\You're So Vain Carly Simon Karaoke with Lyrics.mp4", + "title": "You're So Vain" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Albert Hammond", + "playlist_title": "It Never Rains In Southern California", + "found_song": { + "artist": "Albert Hammond", + "disabled": false, + "favorite": false, + "guid": "8db6601e-7ce4-96f3-071b-e624476cbeec", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It Never Rains In Southern California - Albert Hammond.mp4", + "title": "It Never Rains In Southern California" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donna Fargo", + "playlist_title": "Funny Face", + "found_song": { + "artist": "Donna Fargo", + "disabled": false, + "favorite": false, + "guid": "3c119ce4-7dc3-045f-3d53-915d6e2f8405", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Funny Face - Donna Fargo.mp4", + "title": "Funny Face" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Helen Reddy", + "playlist_title": "I Am Woman", + "found_song": { + "artist": "Helen Reddy", + "disabled": false, + "favorite": false, + "guid": "622d6395-55d9-5246-9d67-5dccdde2fd40", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am Woman - Helen Reddy.mp4", + "title": "I Am Woman" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Curtis Mayfield", + "playlist_title": "Superfly", + "found_song": { + "artist": "Curtis Mayfield", + "disabled": false, + "favorite": false, + "guid": "9d5f4dfb-028a-6f63-e338-ec290b2a0659", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Superfly - Curtis Mayfield.mp4", + "title": "Superfly" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Four Tops", + "playlist_title": "Keeper Of The Castle", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4a73e6be-4a54-aeee-65bc-67ed6ba2fc8f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Keeper Of The Castle.mp4", + "title": "Keeper Of The Castle" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Jethro Tull", + "playlist_title": "Living In The Past", + "found_song": { + "artist": "Jethro Tull", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d43c9f2-116e-17a0-a895-4cfb454a8b3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jethro Tull - Living In The Past.mp4", + "title": "Living In The Past" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Temptations", + "playlist_title": "Papa Was A Rollin' Stone", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e489222-6983-3a1e-676b-e513ebbefd1a", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Papa Was A Rollin Stone.mp4", + "title": "Papa Was A Rollin' Stone" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Superstition", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "e8f2c86c-11c0-5db7-ab70-29e4b6aebbf7", + "path": "z://MP4\\Sing King Karaoke\\Stevie Wonder - Superstition (Karaoke Version).mp4", + "title": "Superstition" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Elton John", + "playlist_title": "Crocodile Rock", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "779e40c1-544b-81e0-d61a-62e097970bbe", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crocodile Rock - Elton John.mp4", + "title": "Crocodile Rock" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "James Taylor", + "playlist_title": "Don't Let Me Be Lonely Tonight", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "79903b1d-d87d-50b2-a07c-f30f16db96f7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Don t Let Me Be Lonely Tonight - James Taylor.mp4", + "title": "Don t Let Me Be Lonely Tonight" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Nash", + "playlist_title": "I Can See Clearly Now", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "9cf36048-f45d-f51b-8edd-48b52936a0af", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Nash - I Can See Clearly Now (Karaoke).mp4", + "title": "I Can See Clearly Now" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "Three Dog Night", + "playlist_title": "Pieces Of April", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "766f5f3b-c8b1-be54-5f9b-161715f4f098", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Pieces Of April.mp4", + "title": "Pieces Of April" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Timmy Thomas", + "playlist_title": "Why Can't We Live Together", + "found_song": { + "artist": "Timmy Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1351569a-f1fc-5576-f152-f355ff64174b", + "path": "z://MP4\\KaraokeOnVEVO\\Timmy Thomas - Why Cant We Live Together.mp4", + "title": "Why Can't We Live Together" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Carole King", + "playlist_title": "Been To Canaan", + "found_song": { + "artist": "Carole King", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f3e568e-302f-b686-cf0c-5708cc7e16d7", + "path": "z://MP4\\KaraokeOnVEVO\\Carole King - Been To Canaan.mp4", + "title": "Been To Canaan" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Hurricane Smith", + "playlist_title": "Oh, Babe, What Would You Say?", + "found_song": { + "artist": "Hurricane Smith", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "87141556-f110-fe82-7d8c-fa479a7f15e1", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hurricane Smith - Oh Babe What Would You Say.mp4", + "title": "Oh Babe What Would You Say" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Elvis Presley", + "playlist_title": "Separate Ways", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9ba9f49a-b290-2300-1e5c-070a861a45a1", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Separate Ways - Elvis Presley.mp4", + "title": "Separate Ways" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "America", + "playlist_title": "Ventura Highway", + "found_song": { + "artist": "America", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b31c4f6-8e1e-8095-d89e-8d612cdf9aaa", + "path": "z://MP4\\ZoomKaraokeOfficial\\America - Ventura Highway.mp4", + "title": "Ventura Highway" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Steely Dan", + "playlist_title": "Do It Again", + "found_song": { + "artist": "Steely Dan", + "disabled": false, + "favorite": false, + "guid": "bf186305-ea78-86b1-c1a8-053726d78c78", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do It Again - Steely Dan.mp4", + "title": "Do It Again" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Stylistics", + "playlist_title": "I'm Stone In Love With You", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "f25e5ab0-01a2-66de-ca47-e930e7ccb8aa", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Stone In Love With You - The Stylistics.mp4", + "title": "I m Stone In Love With You" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "The Osmonds", + "playlist_title": "Crazy Horses", + "found_song": { + "artist": "The Osmonds", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88c8717e-1122-05d1-0294-8a609136ada3", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Osmonds - Crazy Horses.mp4", + "title": "Crazy Horses" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Joni Mitchell", + "playlist_title": "You Turn Me On, I'm A Radio", + "found_song": { + "artist": "Joni Mitchell", + "disabled": false, + "favorite": false, + "guid": "88a77813-74fd-ef9a-2ac8-9d6870300445", + "path": "z://MP4\\Stingray Karaoke\\You Turn Me On I'm A Radio Joni Mitchell Karaoke with Lyrics.mp4", + "title": "You Turn Me On I'm A Radio" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "John Denver", + "playlist_title": "Rocky Mountain High", + "found_song": { + "artist": "John Denver", + "disabled": false, + "favorite": false, + "guid": "bafcb602-84dd-1f92-35d5-ff9dae2052d9", + "path": "z://MP4\\KaraokeOnVEVO\\John Denver - Rocky Mountain High (Karaoke).mp4", + "title": "Rocky Mountain High" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Chuck Berry", + "playlist_title": "Reelin' & Rockin'", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "90508730-7a99-b666-6ba5-581b16fc52f4", + "path": "z://CDG\\Various\\Chuck Berry - Reelin' & Rockin'.mp3", + "title": "Reelin' & Rockin'" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Jim Croce", + "playlist_title": "Operator (That's Not the Way it Feels)", + "found_song": { + "artist": "Jim Croce", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d32b8d2b-74f4-4900-a23d-eb92be2167cd", + "path": "z://MP4\\KaraokeOnVEVO\\Jim Croce - Operator (Thats Not the Way it Feels.mp4", + "title": "Operator (That's Not the Way it Feels)" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Rod Stewart", + "playlist_title": "Angel", + "found_song": { + "artist": "Rod Stewart", + "disabled": false, + "favorite": false, + "guid": "994b1d51-d783-1845-1040-dcd566ee8a77", + "path": "z://CDG\\Various\\Rod Stewart - Angel.mp3", + "title": "Angel" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eagles", + "playlist_title": "Peaceful Easy Feeling", + "found_song": { + "artist": "Eagles", + "disabled": false, + "favorite": false, + "guid": "91dec07c-0d85-22fa-be2b-c63d135ebb3e", + "path": "z://MP4\\TheKARAOKEChannel\\Peaceful Easy Feeling Eagles Karaoke with Lyrics.mp4", + "title": "Peaceful Easy Feeling" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Dr. Hook And The Medicine Show", + "playlist_title": "The Cover Of Rolling Stone", + "found_song": { + "artist": "Dr. Hook And The Medicine Show", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2566cfb1-4988-fddc-8dbb-c084b846890f", + "path": "z://MP4\\KaraokeOnVEVO\\Dr. Hook And The Medicine Show - The Cover Of Rolling Stone.mp4", + "title": "The Cover Of Rolling Stone" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Slade", + "playlist_title": "Mama Weer All Crazee Now", + "found_song": { + "artist": "Slade", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "da0cf45a-1c3d-873e-17b0-94341e85e39e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Slade - Mama Weer All Crazee Now.mp4", + "title": "Mama Weer All Crazee Now" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Doobie Brothers", + "playlist_title": "Jesus Is Just Alright", + "found_song": { + "artist": "The Doobie Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f8b85-7305-221c-0512-02080cf9ce29", + "path": "z://MP4\\KaraokeOnVEVO\\The Doobie Brothers - Jesus Is Just Alright.mp4", + "title": "Jesus Is Just Alright" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Knock Knock Who's There", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14345e44-29fa-7eb1-ecad-88cfa40424e7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Knock Knock Whos There.mp4", + "title": "Knock Knock Who's There" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "I Never Said Goodbye", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ca06b2b-bfd6-d05a-b1a3-109156ade717", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - I Never Said Goodbye.mp4", + "title": "I Never Said Goodbye" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 8, + "playlist_artist": "Johnny Rivers", + "playlist_title": "Rockin' Pneumonia - Boogie Woogie Flu", + "found_song": { + "artist": "Johnny Rivers", + "disabled": false, + "favorite": false, + "guid": "2bbe8159-a591-4b9f-95d4-87f7547134d3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rockin Pneumonia And The Boogie Woogie Flu - Johnny Rivers.mp4", + "title": "Rockin Pneumonia And The Boogie Woogie Flu" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 43, + "playlist_artist": "King Harvest", + "playlist_title": "Dancing In The Moonlight", + "found_song": { + "artist": "King Harvest", + "disabled": false, + "favorite": false, + "guid": "09b04506-c965-88ab-a2bb-f818833412a6", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancin In The Moonlight - King Harvest.mp4", + "title": "Dancin In The Moonlight" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "The Who", + "playlist_title": "The Relay", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "97e3bb5b-9ae4-ca5a-af33-26415702ac28", + "path": "z://MP4\\CerealKillerKaraoke\\CKK - The Who - The Real Me (Karaoke).mp4", + "title": "The Real Me" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 72, + "playlist_artist": "Bette Midler", + "playlist_title": "Do You Want To Dance?", + "found_song": { + "artist": "Bette Midler", + "disabled": false, + "favorite": false, + "guid": "7a1850ae-d8f2-27fe-367e-384d298dedbb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Do You Wanna Dance - Bette Midler.mp4", + "title": "Do You Wanna Dance" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Spinners", + "playlist_title": "Could It Be I'm Falling In Love", + "found_song": { + "artist": "Spinners", + "disabled": false, + "favorite": false, + "guid": "8ed772d4-455d-20e8-c1e6-15ea58dd40bd", + "path": "z://CDG\\Various\\Spinners - Could It Be I'm Falling In Love.mp3", + "title": "Could It Be I'm Falling In Love" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 89, + "playlist_artist": "Limmie & Family Cookin'", + "playlist_title": "You Can Do Magic", + "found_song": { + "artist": "Limmie & Family Cookin'", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8010b8ae-821e-a3d7-7ff3-550e48aeec0b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Limmie and Family Cookin - You Can Do Magic.mp4", + "title": "You Can Do Magic" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 10, + "artist": "Kenny Loggins & Jim Messina", + "title": "Your Mama Don't Dance", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Austin Roberts", + "title": "Something's Wrong With Me", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Bread", + "title": "Sweet Surrender", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Neil Diamond", + "title": "Walk On Water", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Cat Stevens", + "title": "Sitting", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Harold Melvin And The Blue Notes", + "title": "If You Don't Know Me By Now", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Jackson 5", + "title": "Corner Of The Sky", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Wings", + "title": "Hi, Hi, Hi", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Raspberries", + "title": "I Wanna Be With You", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Seals & Crofts", + "title": "Summer Breeze", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Blue Haze", + "title": "Smoke Gets In Your Eyes", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Hollies", + "title": "Long Dark Road", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Marvin Gaye", + "title": "Trouble Man", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "War", + "title": "The World Is A Ghetto", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bee Gees", + "title": "Alive", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bulldog", + "title": "No", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bobby Womack & Peace", + "title": "Harry Hippie", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Brighter Side Of Darkness", + "title": "Love Jones", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Chicago", + "title": "Dialogue (Part I & II)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Blue Ridge Rangers", + "title": "Jambalaya (On The Bayou)", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Joe Simon", + "title": "Trouble In My Home/I Found My Dad", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Clean Living", + "title": "In Heaven There Is No Beer", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Bill Withers", + "title": "Let Us Love", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Peter Skellern", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jermaine Jackson", + "title": "Daddy's Home", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Dennis Yost And The Classics IV", + "title": "What Am I Crying For?", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Joe Cocker and The Chris Stainton Band", + "title": "Woman To Woman", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "James Brown", + "title": "I Got A Bag Of My Own", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Luther Ingram", + "title": "I'll Be Your Shelter (In Time Of Storm)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Chi-lites", + "title": "We Need Order", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Smokey Robinson & The Miracles", + "title": "I Can't Stand To See You Cry", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Mac Davis", + "title": "Everybody Loves A Love Song", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "Looking Through The Eyes Of Love", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Don McLean", + "title": "Dreidel", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The Main Ingredient", + "title": "You've Got To Take It (If You Want It)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The O'Jays", + "title": "992 Arguments", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Cornelius Brothers & Sister Rose", + "title": "I'm Never Gonna Be Alone Anymore", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Nilsson", + "title": "Remember (Christmas)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gary Glitter", + "title": "I Didn't Know I Loved You (Till I Saw You Rock And Roll)", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Dawn Featuring Tony Orlando", + "title": "You're A Lady", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Wayne Newton", + "title": "Anthem", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Keith Hampshire", + "title": "Daytime Night-Time", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "James Brown-Lyn Collins", + "title": "What My Baby Needs Now Is A Little More Lovin'", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Edward Bear", + "title": "Last Song", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lobo", + "title": "Don't Expect Me To Be Your Friend", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Cashman & West", + "title": "Songman", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Valerie Simpson", + "title": "Silly Wasn't I", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Glen Campbell", + "title": "One Last Time", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Emerson, Lake & Palmer", + "title": "Lucky Man", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Merry Clayton", + "title": "Oh No, Not My Baby", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Gallery", + "title": "Big City Miss Ruth Ann", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Kris Kristofferson", + "title": "Jesus Was A Capricorn", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Joey Heatherton", + "title": "I'm Sorry", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Paul Davis", + "title": "Boogie Woogie Man", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Barbra Streisand", + "title": "Didn't We", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Rita Coolidge", + "title": "Fever/My Crew", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Ten Years After", + "title": "Choo Choo Mama", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Vinton", + "title": "But I Do", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Brownsville Station", + "title": "The Red Back Spider", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 35, + "fuzzy_match_count": 6, + "missing_count": 59, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1971 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Melanie", + "playlist_title": "Brand New Key", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "460e4251-407d-579c-b86f-8181fbd5f182", + "path": "z://MP4\\KaraokeOnVEVO\\Melanie - Brand New Key.mp4", + "title": "Brand New Key" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Three Dog Night", + "playlist_title": "An Old Fashioned Love Song", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "a82042ce-a0c0-eff1-9a32-8b895b354aea", + "path": "z://MP4\\Let's Sing Karaoke\\Three Dog Night - An Old Fashioned Love Song (Karaoke & Lyrics).mp4", + "title": "An Old Fashioned Love Song" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "The Chi-lites", + "playlist_title": "Have You Seen Her", + "found_song": { + "artist": "The Chi-Lites", + "disabled": false, + "favorite": false, + "guid": "f011e231-adac-a897-4083-462e101a9831", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Have You Seen Her - The Chi-Lites.mp4", + "title": "Have You Seen Her" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Bread", + "playlist_title": "Baby I'm - A Want You", + "found_song": { + "artist": "Bread", + "disabled": false, + "favorite": false, + "guid": "03e76ecd-f7f5-519b-89ae-d2b091837582", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby I m-A Want You - Bread.mp4", + "title": "Baby I m-A Want You" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "The Staple Singers", + "playlist_title": "Respect Yourself", + "found_song": { + "artist": "The Staple Singers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1dede9b3-a62a-462f-3cf7-39fcd689f8af", + "path": "z://MP4\\KaraokeOnVEVO\\The Staple Singers - Respect Yourself.mp4", + "title": "Respect Yourself" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Stylistics", + "playlist_title": "You Are Everything", + "found_song": { + "artist": "The Stylistics", + "disabled": false, + "favorite": false, + "guid": "6f137d12-5bc7-fb09-5d76-9dfdcf60bc33", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are Everything - The Stylistics.mp4", + "title": "You Are Everything" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Isaac Hayes", + "playlist_title": "Theme From Shaft", + "found_song": { + "artist": "Isaac Hayes", + "disabled": false, + "favorite": false, + "guid": "642d0318-a690-05ff-7ba1-8da7cdf15a18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Theme From Shaft - Isaac Hayes.mp4", + "title": "Theme From Shaft" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The New Seekers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Cher", + "playlist_title": "Gypsys, Tramps & Thieves", + "found_song": { + "artist": "Cher", + "disabled": false, + "favorite": false, + "guid": "3e5f0ace-9ab4-ed19-89d7-e2fd10a2c129", + "path": "z://MP4\\Let's Sing Karaoke\\Cher - Gypsys, Tramps & Thieves (Karaoke & Lyrics) (2) (2).mp4", + "title": "Gypsys, Tramps & Thieves" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Al Green", + "playlist_title": "Let's Stay Together", + "found_song": { + "artist": "Al Green", + "disabled": false, + "favorite": false, + "guid": "ae928bb7-065d-d001-3d34-359c992a8723", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Stay Together - Al Green.mp4", + "title": "Let s Stay Together" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Rock Steady", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "f1961690-4ee2-2c2a-3806-d2304a16d6f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rock Steady - Aretha Franklin.mp4", + "title": "Rock Steady" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Who", + "playlist_title": "Behind Blue Eyes", + "found_song": { + "artist": "The Who", + "disabled": false, + "favorite": false, + "guid": "1d4d31d9-e36e-a0f5-aec7-3007d605bec3", + "path": "z://MP4\\TheKARAOKEChannel\\The Who - Behind Blue Eyes.mp4", + "title": "Behind Blue Eyes" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Charley Pride", + "playlist_title": "Kiss An Angel Good Mornin'", + "found_song": { + "artist": "Charley Pride", + "disabled": false, + "favorite": false, + "guid": "1a390492-0128-c1b6-5784-0dffd378f138", + "path": "z://MP4\\KtvEntertainment\\Charley Pride - Kiss An Angel Good Mornin' Karaoke Lyrics.mp4", + "title": "Kiss An Angel Good Mornin'" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Carly Simon", + "playlist_title": "Anticipation", + "found_song": { + "artist": "Carly Simon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04ae3530-180f-2ab5-9589-ebc690251c67", + "path": "z://MP4\\KaraokeOnVEVO\\Carly Simon - Anticipation.mp4", + "title": "Anticipation" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Jerry Lee Lewis", + "playlist_title": "Me And Bobby McGee", + "found_song": { + "artist": "Jerry Lee Lewis", + "disabled": false, + "favorite": false, + "guid": "0f5485cf-5629-2ec7-e01e-aaaa72da4913", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Me And Bobby McGee - Jerry Lee Lewis.mp4", + "title": "Me And Bobby McGee" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Redbone", + "playlist_title": "The Witch Queen Of New Orleans", + "found_song": { + "artist": "Redbone", + "disabled": false, + "favorite": false, + "guid": "822159fb-2160-0e36-c3cf-d1473458b97f", + "path": "z://MP4\\KaraFun Karaoke\\The Witch Queen of New Orleans - Redbone Karaoke Version KaraFun.mp4", + "title": "The Witch Queen of New Orleans" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Elton John", + "playlist_title": "Levon", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "8f92431e-6a63-4023-8abf-eef90f99d924", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Levon - Elton John.mp4", + "title": "Levon" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Grateful Dead", + "playlist_title": "Truckin'", + "found_song": { + "artist": "Grateful Dead", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "90967072-5bf7-c669-aa64-3790e05a0167", + "path": "z://MP4\\ZoomKaraokeOfficial\\Grateful Dead - Truckin.mp4", + "title": "Truckin'" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Black Dog", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "7009cab8-2f2d-0321-9d63-131a26765759", + "path": "z://MP4\\Let's Sing Karaoke\\Led Zeppelin - Black Dog (Karaoke & Lyrics).mp4", + "title": "Black Dog" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Nilsson", + "playlist_title": "Without You", + "found_song": { + "artist": "Nilsson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "3d887ad3-6c22-b7de-b2a1-906ed7d48433", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nilsson - Without You.mp4", + "title": "Without You" + }, + "match_type": "exact" + }, + { + "position": 78, + "playlist_artist": "The Coasters", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Coasters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f3876256-d059-2613-0043-439787f54eb1", + "path": "z://MP4\\KaraokeOnVEVO\\The Coasters - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Fire And Water", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "36da35cc-6c50-a44a-c343-a649c12e1c3f", + "path": "z://MP4\\KaraokeOnVEVO\\Wilson Pickett - Fire And Water (Karaoke).mp4", + "title": "Fire And Water" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Three Dog Night", + "playlist_title": "Never Been To Spain", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "guid": "04280fa9-61bc-0c97-ded8-235371cbca2a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Never Been to Spain - Three Dog Night.mp4", + "title": "Never Been to Spain" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Alice Cooper", + "playlist_title": "Under My Wheels", + "found_song": { + "artist": "Alice Cooper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3a13643-ddbc-8931-131d-4da4a445b691", + "path": "z://CDG\\Various\\Alice Cooper - Under My Wheels.mp3", + "title": "Under My Wheels" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Family Affair", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "3ceac0e1-1b33-0b06-39e1-14f7a13a52b3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Family Affair - Sly And The Family Stone.mp4", + "title": "Family Affair" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 5, + "playlist_artist": "Michael Jackson", + "playlist_title": "Got To Be There", + "found_song": { + "artist": "Michael Jackson", + "disabled": false, + "favorite": false, + "guid": "3439c7ad-f218-0a17-51a6-351a14baf92a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Be There - Michael Jackson.mp4", + "title": "Will You Be There" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 7, + "playlist_artist": "Sonny & Cher", + "playlist_title": "All I Ever Need Is You", + "found_song": { + "artist": "Sonny & Cher", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "09d0fc0e-2e3a-d47d-37af-f971d7766f6f", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny & Cher - All I Ever Need Is You.mp4", + "title": "All I Ever Need Is You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 21, + "playlist_artist": "The Hillside Singers", + "playlist_title": "I'd Like To Teach The World To Sing (In Perfect Harmony)", + "found_song": { + "artist": "The New Seekers", + "disabled": false, + "favorite": false, + "guid": "986862cc-58dc-3f57-cdf8-f8a021f51d0d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I d Like To Teach The World To Sing (In Perfect Harmony) - The New Seekers.mp4", + "title": "I d Like To Teach The World To Sing (In Perfect Harmony)" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Neil Diamond", + "playlist_title": "Stones/Crunchy Granola Suite", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "728d8bbe-ef54-a6a5-d5a2-729eb1af9538", + "path": "z://MP4\\ZoomKaraokeOfficial\\Neil Diamond - Crunchy Granola Suite.mp4", + "title": "Crunchy Granola Suite" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 28, + "playlist_artist": "Joe Simon", + "playlist_title": "Drowning In The Sea Of Love", + "found_song": { + "artist": "Eva Cassidy", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3596517-19b1-1b8d-e449-bb27b4c99906", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eva Cassidy - Drowning In The Sea Of Love.mp4", + "title": "Drowning In The Sea Of Love" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 59, + "playlist_artist": "Merle Haggard And The Strangers", + "playlist_title": "Carolyn", + "found_song": { + "artist": "Merle Haggard And The Strangers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b03a980c-2c30-63ca-f8a4-89c22e7e0be6", + "path": "z://MP4\\ZoomKaraokeOfficial\\Merle Haggard And The Strangers - Mama Tried.mp4", + "title": "Mama Tried" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Don McLean", + "title": "American Pie (Parts I & II)", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Dennis Coffey & The Detroit Guitar Band", + "title": "Scorpio", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "David Cassidy", + "title": "Cherish", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Donny Osmond", + "title": "Hey Girl/I Knew You When", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jonathan Edwards", + "title": "Sunshine", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Donnie Elbert", + "title": "Where Did Our Love Go", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Temptations", + "title": "Superstar (Remember How You Got Where You Are)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Honey Cone", + "title": "One Monkey Don't Stop No Show Part I", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Betty Wright", + "title": "Clean Up Woman", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Rod Stewart With Faces", + "title": "(I Know) I'm Losing You", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Badfinger", + "title": "Day After Day", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Peter Nero", + "title": "Theme From Summer Of '42", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Mickey Newbury", + "title": "An American Trilogy", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Jackson 5", + "title": "Sugar Daddy", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Rare Earth", + "title": "Hey Big Brother", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Sweathog", + "title": "Hallelujah", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Les Crane", + "title": "Desiderata", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Lou Rawls", + "title": "A Natural Man", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Bob Dylan", + "title": "George Jackson", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Lee Michaels", + "title": "Can I Get A Witness", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Bullet", + "title": "White Lies, Blue Eyes", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Tommy James", + "title": "Nothing To Hide", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "James Brown", + "title": "I'm A Greedy Man - Part I", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "It's One Of Those Nights (Yes Love)", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Think", + "title": "Once You Understand", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "John Denver", + "title": "Friends With You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gladys Knight And The Pips", + "title": "Make Me The Woman That You Go Home To", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Joan Baez", + "title": "Let It Be", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Yes", + "title": "Your Move (I've Seen All Good People)", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Smokey Robinson & The Miracles", + "title": "Satisfaction", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Guess Who", + "title": "Sour Suite", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Richard Harris", + "title": "My Boy", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "B.B. King", + "title": "Ain't Nobody Home", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The J. Geils Band", + "title": "Looking For A Love", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Carroll O'Connor And Jean Stapleton (As The Bunkers)", + "title": "Those Were The Days", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Womack & Peace", + "title": "That's The Way I Feel About Cha", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jefferson Airplane", + "title": "Pretty As You Feel", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Stampeders", + "title": "Devil You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ray Stevens", + "title": "Turn Your Radio On", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Little Johnny Taylor", + "title": "Everybody Knows About My Good Thing Pt. 1", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Hamilton, Joe Frank & Reynolds", + "title": "Daisy Mae", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Helen Reddy", + "title": "No Sad Song", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Lighthouse", + "title": "Take It Slow (Out In The Country)", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Curtis Mayfield", + "title": "Get Down", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Doors", + "title": "Tightrope Ride", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Merry Clayton", + "title": "After All This Time", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Isley Brothers", + "title": "Lay Lady Lay", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Carpenters", + "title": "Superstar/Bless The Beasts And Children", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jr. Walker & The All Stars", + "title": "Way Back Home", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Beverly Bremers", + "title": "Don't Say You Don't Remember", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Free Movement", + "title": "The Harder I Try (The Bluer I Get)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Emotions", + "title": "Show Me How", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Chase", + "title": "So Many People", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Poppy Family", + "title": "No Good To Cry", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Undisputed Truth", + "title": "You Make Your Own Heaven And Hell Right Here On Earth", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Dramatics", + "title": "Get Up And Get Down", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Ray Charles", + "title": "What Am I Living For", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "N.F. Porter", + "title": "Keep On Keeping On", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Heaven Bound with Tony Scotti", + "title": "Five Hundred Miles", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Johnny Paycheck", + "title": "She's All I Got", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Bar-Kays", + "title": "Son Of Shaft", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Jerry Butler & Brenda Lee Eager", + "title": "Ain't Understanding Mellow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The New Colony Six", + "title": "Long Time To Be Alone", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Judy Collins", + "title": "Open The Door (Song For Judith)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Persuaders", + "title": "Love Gonna Pack Up (And Walk Out)", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Rufus Thomas", + "title": "Do The Funky Penguin Part I", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Edgar Winter's White Trash", + "title": "Keep Playin' That Rock 'N' Roll", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ohio Players", + "title": "Pain (Part I)", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Assembled Multitude", + "title": "Medley From Superstar (A Rock Opera)", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 7, + "missing_count": 69, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1970 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The 5th Dimension", + "playlist_title": "One Less Bell To Answer", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "guid": "a763d4af-8553-62c1-d749-98817f382d45", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - One Less Bell To Answer (Karaoke).mp4", + "title": "One Less Bell To Answer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Dawn", + "playlist_title": "Knock Three Times", + "found_song": { + "artist": "Dawn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bfcd81f3-3f9a-7440-b07b-40b0bd35443c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Dawn - Knock Three Times.mp4", + "title": "Knock Three Times" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Santana", + "playlist_title": "Black Magic Woman", + "found_song": { + "artist": "Santana", + "disabled": false, + "favorite": false, + "guid": "362ec6fd-129e-8824-5441-2fe6de85929e", + "path": "z://MP4\\KtvEntertainment\\Santana - Black Magic Woman Karaoke Lyrics.mp4", + "title": "Black Magic Woman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Chicago", + "playlist_title": "Does Anybody Really Know What Time It Is?", + "found_song": { + "artist": "Chicago", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1d67c94b-3051-2b57-9036-a7ed705cf58c", + "path": "z://MP4\\KaraokeOnVEVO\\Chicago - Does Anybody Really Know What Time It Is.mp4", + "title": "Does Anybody Really Know What Time It Is?" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "Badfinger", + "playlist_title": "No Matter What", + "found_song": { + "artist": "Badfinger", + "disabled": false, + "favorite": false, + "guid": "e8a3345c-950c-ee3c-1849-d60a47f9018f", + "path": "z://MP4\\KaraokeOnVEVO\\Badfinger - No Matter What (Karaoke).mp4", + "title": "No Matter What" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Ray Price", + "playlist_title": "For The Good Times", + "found_song": { + "artist": "Ray Price", + "disabled": false, + "favorite": false, + "guid": "26552417-e645-ab9a-92da-2121e14d1fda", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For The Good Times - Ray Price.mp4", + "title": "For The Good Times" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Carpenters", + "playlist_title": "We've Only Just Begun", + "found_song": { + "artist": "Carpenters", + "disabled": false, + "favorite": false, + "guid": "85791d84-295b-64f8-a17f-1b475e0bba7a", + "path": "z://MP4\\Stingray Karaoke\\We've Only Just Begun in the Style of Carpenters karaoke video with lyrics (no lead vocal).mp4", + "title": "We've Only Just Begun" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Jackson 5", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c5bd371b-5fd7-1790-4586-a1c5eb3c42c7", + "path": "z://MP4\\KaraokeOnVEVO\\Jackson 5 - Ill Be There.mp4", + "title": "I'll Be There" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "King Floyd", + "playlist_title": "Groove Me", + "found_song": { + "artist": "King Floyd", + "disabled": false, + "favorite": false, + "guid": "9ab300c0-4b7a-9fbf-9b8e-1e99e41f8e59", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Groove Me - King Floyd.mp4", + "title": "Groove Me" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Perry Como", + "playlist_title": "It's Impossible", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "fa04d60b-aaf9-eddd-b92d-83a276da3d9f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Impossible - Perry Como.mp4", + "title": "It s Impossible" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Neil Diamond", + "playlist_title": "He Ain't Heavy...He's My Brother", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "f30ea4df-9e2e-f13a-3021-aab98962b538", + "path": "z://CDG\\Various\\Neil Diamond - He Ain't Heavy He's My Brother.mp3", + "title": "He Ain't Heavy He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bee Gees", + "playlist_title": "Lonely Days", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "cbceae51-ffa5-d357-dd4e-d88382c76d70", + "path": "z://CDG\\Various\\Bee Gees - Lonely Days.mp3", + "title": "Lonely Days" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Bobby Bloom", + "playlist_title": "Montego Bay", + "found_song": { + "artist": "Bobby Bloom", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "774ff8f6-4cf5-6dcf-7e40-70034554a6d0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Bloom - Montego Bay.mp4", + "title": "Montego Bay" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Immigrant Song", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "0e99d577-ffa0-a911-669d-676c0dc508fa", + "path": "z://CDG\\Various\\Led Zeppelin - Immigrant Song.mp3", + "title": "Immigrant Song" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Elton John", + "playlist_title": "Your Song", + "found_song": { + "artist": "Elton John", + "disabled": false, + "favorite": false, + "guid": "e8680961-1b41-06e3-891f-a988e4fd1674", + "path": "z://MP4\\Sing King Karaoke\\Elton John - Your Song (Karaoke Version).mp4", + "title": "Your Song" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "Lynn Anderson", + "playlist_title": "Rose Garden", + "found_song": { + "artist": "Lynn Anderson", + "disabled": false, + "favorite": false, + "guid": "393a0e56-5496-db22-82a1-f58b59247316", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rose Garden - Lynn Anderson.mp4", + "title": "Rose Garden" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "James Taylor", + "playlist_title": "Fire And Rain", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "ab5a0dca-c945-7b27-0ba9-1b2324cbe4bc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Fire And Rain - James Taylor.mp4", + "title": "Fire And Rain" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Eric Clapton", + "playlist_title": "After Midnight", + "found_song": { + "artist": "Eric Clapton", + "disabled": false, + "favorite": false, + "guid": "afc9be6e-e4aa-46dd-d532-5712c796a86b", + "path": "z://MP4\\Let's Sing Karaoke\\Clapton, Eric - After Midnight (Karaoke & Lyrics).mp4", + "title": "After Midnight" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Heaven Help Us All", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5bb61e7a-8b12-41b1-1c83-6cdb8fc0c2d7", + "path": "z://CDG\\SBI\\SBI-03\\SB25800 - Stevie Wonder - Heaven Help Us All.mp3", + "title": "Heaven Help Us All" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Neil Young", + "playlist_title": "Only Love Can Break Your Heart", + "found_song": { + "artist": "Neil Young", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb79504e-ae37-3842-9012-72e3bb0b8da9", + "path": "z://MP4\\VocalStarKaraoke\\Neil Young - Only Love Can Break Your Heart.mp4", + "title": "Only Love Can Break Your Heart" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Jerry Reed", + "playlist_title": "Amos Moses", + "found_song": { + "artist": "Jerry Reed", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5c28a915-0e9e-7076-a810-064b47ec6733", + "path": "z://MP4\\KaraokeOnVEVO\\Jerry Reed - Amos Moses.mp4", + "title": "Amos Moses" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Rare Earth", + "playlist_title": "Born To Wander", + "found_song": { + "artist": "Rare Earth", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "46f35e7e-2b22-c1d3-2b74-d76117fc94ff", + "path": "z://MP4\\KaraokeOnVEVO\\Rare Earth - Born To Wander.mp4", + "title": "Born To Wander" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Melanie", + "playlist_title": "Ruby Tuesday", + "found_song": { + "artist": "Melanie", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbd821ac-8f57-4ec5-b376-79a30a2ea5c2", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 802\\Melanie - Ruby Tuesday - SFMW 802 -11.mp3", + "title": "Ruby Tuesday" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Black Sabbath", + "playlist_title": "Paranoid", + "found_song": { + "artist": "Black Sabbath", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e972744b-f6cb-cddf-9f4e-07849e00d5ad", + "path": "z://MP4\\Sing King Karaoke\\Black Sabbath - Paranoid.mp4", + "title": "Paranoid" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Deep Purple", + "playlist_title": "Black Night", + "found_song": { + "artist": "Deep Purple", + "disabled": false, + "favorite": false, + "guid": "e3972bd1-2e9f-a79e-e4a5-e6871f3c30e4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Black Night - Deep Purple.mp4", + "title": "Black Night" + }, + "match_type": "exact" + }, + { + "position": 67, + "playlist_artist": "James Taylor", + "playlist_title": "Carolina In My Mind", + "found_song": { + "artist": "James Taylor", + "disabled": false, + "favorite": false, + "guid": "bfa7e86f-1773-bdb2-aa87-896a6af6a212", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Carolina In My Mind - James Taylor.mp4", + "title": "Carolina In My Mind" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Diana Ross", + "playlist_title": "Remember Me", + "found_song": { + "artist": "Diana Ross", + "disabled": false, + "favorite": false, + "guid": "fa840d6b-81dc-6352-ddef-89dba09a82cd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Remember Me - Diana Ross.mp4", + "title": "Remember Me" + }, + "match_type": "exact" + }, + { + "position": 76, + "playlist_artist": "Gordon Lightfoot", + "playlist_title": "If You Could Read My Mind", + "found_song": { + "artist": "Gordon Lightfoot", + "disabled": false, + "favorite": false, + "guid": "971a7b53-9b1e-c9bf-d499-6fcc191c9554", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke If You Could Read My Mind - Gordon Lightfoot.mp4", + "title": "If You Could Read My Mind" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Loretta Lynn", + "playlist_title": "Coal Miner's Daughter", + "found_song": { + "artist": "Loretta Lynn", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6ee99293-6553-b927-818e-0a6f8b930b30", + "path": "z://MP4\\KaraokeOnVEVO\\Loretta Lynn - Coal Miner's Daughter.mp4", + "title": "Coal Miner's Daughter" + }, + "match_type": "exact" + }, + { + "position": 88, + "playlist_artist": "Rufus Thomas", + "playlist_title": "(Do The) Push And Pull Part I", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b179db51-fa79-090a-9c06-ca92bfefbb0b", + "path": "z://MP4\\KaraokeOnVEVO\\Rufus Thomas - (Do The) Push And Pull Part I.mp4", + "title": "(Do The) Push And Pull Part I" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Dave Edmunds", + "playlist_title": "I Hear You Knocking", + "found_song": { + "artist": "Dave Edmunds", + "disabled": false, + "favorite": false, + "guid": "0883256c-eab8-fff8-2da8-6866b7839f98", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Hear You Knocking - Dave Edmunds.mp4", + "title": "I Hear You Knocking" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 7, + "playlist_artist": "The Supremes", + "playlist_title": "Stoned Love", + "found_song": { + "artist": "Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "96a21d5c-1202-f5c5-bc41-1c3a3cb14308", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 812\\Supremes - Stoned Love - SFMW 812 -14.mp3", + "title": "Stoned Love" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 24, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "If I Were Your Woman", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0f14a7fe-e9ac-a0a0-ed3d-6658959fd627", + "path": "z://MP4\\KaraokeOnVEVO\\Gladys Knight And The Pips - If I Were Your Woman.mp4", + "title": "If I Were Your Woman" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 25, + "playlist_artist": "Tom Jones", + "playlist_title": "Can't Stop Loving You", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5f61f704-53c8-c6d8-c093-5cd25417e1c2", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - I Cant Stop Loving You (Live).mp4", + "title": "I Can't Stop Loving You (Live)" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 31, + "playlist_artist": "Stephen Stills", + "playlist_title": "Love The One You're With", + "found_song": { + "artist": "Stephen Stills", + "disabled": false, + "favorite": false, + "guid": "b7f6be8a-3f1a-740e-575f-2cf8bc2457df", + "path": "z://MP4\\Let's Sing Karaoke\\Stills, Stephen - Love The One Your With (Karaoke & Lyrics).mp4", + "title": "Love The One Your With" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Elvis Presley", + "playlist_title": "You Don't Have To Say You Love Me/Patch It Up", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "9c7bcc67-ec63-f173-5d03-3c218082a05e", + "path": "z://CDG\\Various\\Elvis Presley - You Don't Have To Say You Love Me.mp3", + "title": "You Don't Have To Say You Love Me" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "Nitty Gritty Dirt Band", + "playlist_title": "Mr. Bojangles", + "found_song": { + "artist": "Nitty Gritty Dirt Band", + "disabled": false, + "favorite": false, + "guid": "2a384b30-761d-bd65-75c7-e94cd3c56777", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Bojangles - Nitty Gritty Dirt Band.mp4", + "title": "Mr. Bojangles" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "Johnny Cash", + "playlist_title": "Flesh And Blood", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "3bef1bed-6d29-fd67-8cc7-f56f643dabab", + "path": "z://CDG\\Various\\Johnny Cash - Flesh & Blood.mp3", + "title": "Flesh & Blood" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "George Harrison", + "title": "My Sweet Lord/Isn't It A Pity", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Smokey Robinson & The Miracles", + "title": "The Tears Of A Clown", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "The Partridge Family Starring Shirley Jones Featuring David Cassidy", + "title": "I Think I Love You", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Brian Hyland", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "The Presidents", + "title": "5-10-15-20 (25-30 Years Of Love)", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Van Morrison", + "title": "Domino", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Barbra Streisand", + "title": "Stoney End", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Supremes & Four Tops", + "title": "River Deep - Mountain High", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Andy Kim", + "title": "Be My Baby", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Three Dog Night", + "title": "One Man Band", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Chairmen Of The Board", + "title": "Pay To The Piper", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Guess Who", + "title": "Share The Land", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Flaming Ember", + "title": "I'm Not My Brothers Keeper", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Neil Diamond", + "title": "Do It", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Aretha Franklin", + "title": "Border Song (Holy Moses)/You And Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Redeye", + "title": "Games", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Runt", + "title": "We Gotta Get You A Woman", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Ray Charles", + "title": "If You Were Mine", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Michael Nesmith & The First National Band", + "title": "Silver Moon", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Dionne Warwick", + "title": "The Green Grass Starts To Grow", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jim Ed Brown", + "title": "Morning", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Curtis Mayfield", + "title": "(Don't Worry) If There's A Hell Below We're All Going To Go", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "B.J. Thomas", + "title": "Most Of All", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Edwin Starr", + "title": "Stop The War Now", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Free", + "title": "Stealer", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "O.V. Wright", + "title": "Ace Of Spade", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Clarence Carter", + "title": "It's All In Your Mind", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Elvis Presley", + "title": "I Really Don't Want To Know/There Goes My Everything", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Judy Collins", + "title": "Amazing Grace", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Moments", + "title": "All I Have", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Little Sister", + "title": "Somebody's Watching You", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Jackie Moore", + "title": "Precious, Precious", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Al Green", + "title": "I Can't Get Next To You", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Israel Popper Stopper Tolbert", + "title": "Big Leg Woman (With A Short Short Mini Skirt)", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Grass Roots", + "title": "Temptation Eyes", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Eric Burdon And War", + "title": "They Can't Take Away Our Music", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tommy James", + "title": "Church Street Soul Revival", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Gypsy", + "title": "Gypsy Queen - Part 1", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Grand Funk Railroad", + "title": "Mean Mistreater", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Frijid Pink", + "title": "Heartbreak Hotel", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Robert John", + "title": "When The Party Is Over", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Ray Stevens", + "title": "Bridget The Midget (The Queen Of The Blues)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Liz Damon's Orient Express", + "title": "1900 Yesterday", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Bobby Goldsboro", + "title": "Watching Scotty Grow", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Redbone", + "title": "Maggie", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Joe Simon", + "title": "Your Time To Cry", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Chi-lites", + "title": "Are You My Woman? (Tell Me So)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teegarden & Van Winkle", + "title": "Everything Is Going To Be Alright", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Anne Murray", + "title": "Sing High - Sing Low", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "The Originals", + "title": "God Bless Whoever Sent You", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Jr. Walker & The All Stars", + "title": "Holly Holy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Five Flights Up", + "title": "After The Feeling Is Gone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Buddy Miles", + "title": "We Got To Live Together - Part I", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Little Anthony And The Imperials", + "title": "Help Me Find A Way (To Say I Love You)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Mike Curb Congregation", + "title": "Burning Bridges", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Sandpipers", + "title": "Free To Carry On", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Main Ingredient", + "title": "I'm So Proud", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Brook Benton With The Dixie Flyers", + "title": "Shoes", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Jackie Wilson", + "title": "(I Can Feel Those Vibrations) This Love Is Real", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Wadsworth Mansion", + "title": "Sweet Mary", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Jazz Crusaders", + "title": "Way Back Home", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Betty Everett", + "title": "I Got To Tell Somebody", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 31, + "fuzzy_match_count": 7, + "missing_count": 62, + "needs_manual_review": 7 + } + }, + { + "playlist_title": "1969 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 3, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Raindrops Keep Fallin' On My Head", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "86a666f3-cf91-9d37-56ec-1791876f2ca9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Raindrops Keep Fallin On My Head - B. J. Thomas.mp4", + "title": "Raindrops Keep Fallin On My Head" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "Down On The Corner/Fortunate Son", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bf2d60c0-ba11-df85-7564-69f50bdf6f43", + "path": "z://MP4\\KaraokeOnVEVO\\Creedence Clearwater Revival - Down On The CornerFortunate Son.mp4", + "title": "Down On The Corner/Fortunate Son" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Steam", + "playlist_title": "Na Na Hey Hey Kiss Him Goodbye", + "found_song": { + "artist": "Steam", + "disabled": false, + "favorite": false, + "guid": "5cae7a39-3655-1ef1-436c-de3ad5bf618b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Na Na Hey Hey (Kiss Him Goodbye) - Steam.mp4", + "title": "Na Na Hey Hey (Kiss Him Goodbye)" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Neil Diamond", + "playlist_title": "Holly Holy", + "found_song": { + "artist": "Neil Diamond", + "disabled": false, + "favorite": false, + "guid": "131a14a5-b9ef-5e2a-3424-c1e23dce75bb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Holly Holy - Neil Diamond.mp4", + "title": "Holly Holy" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Jackson 5", + "playlist_title": "I Want You Back", + "found_song": { + "artist": "Jackson 5", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a139200a-f361-7109-4da7-051157a044e3", + "path": "z://MP4\\Sing King Karaoke\\Jackson 5 - I Want You Back.mp4", + "title": "I Want You Back" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Led Zeppelin", + "playlist_title": "Whole Lotta Love", + "found_song": { + "artist": "Led Zeppelin", + "disabled": false, + "favorite": false, + "guid": "26f513b0-1713-2560-43d2-05b78afc7b0e", + "path": "z://CDG\\Various\\Led Zeppelin - Whole Lotta Love.mp3", + "title": "Whole Lotta Love" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Three Dog Night", + "playlist_title": "Eli's Coming", + "found_song": { + "artist": "Three Dog Night", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d82dba66-3028-89de-e88c-48f9e6f1db7a", + "path": "z://MP4\\KaraokeOnVEVO\\Three Dog Night - Elis Coming.mp4", + "title": "Eli's Coming" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Yester-Me, Yester-You, Yesterday", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "bc0d66f9-d7d5-9130-bce2-12b7b92a127f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Yester-Me, Yester-You, Yesterday - Stevie Wonder.mp4", + "title": "Yester-Me, Yester-You, Yesterday" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "The Shocking Blue", + "playlist_title": "Venus", + "found_song": { + "artist": "The Shocking Blue", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9b4ddae9-4c55-41e0-f031-406b12763b3a", + "path": "z://MP4\\KaraokeOnVEVO\\The Shocking Blue - Venus.mp4", + "title": "Venus" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Tommy Roe", + "playlist_title": "Jam Up Jelly Tight", + "found_song": { + "artist": "Tommy Roe", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f22dd1d7-0805-3993-d130-bde5f9e14ef9", + "path": "z://MP4\\KaraokeOnVEVO\\Tommy Roe - Jam Up Jelly Tight.mp4", + "title": "Jam Up Jelly Tight" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "The 5th Dimension", + "playlist_title": "Wedding Bell Blues", + "found_song": { + "artist": "The 5th Dimension", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b86e5c93-9840-148e-70ba-c19c9e2aad54", + "path": "z://MP4\\KaraokeOnVEVO\\The 5th Dimension - Wedding Bell Blues.mp4", + "title": "Wedding Bell Blues" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Vanity Fare", + "playlist_title": "Early In The Morning", + "found_song": { + "artist": "Vanity Fare", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0824c73-abe4-aa62-5fb2-d89ef538d97f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Vanity Fare - Early In The Morning.mp4", + "title": "Early In The Morning" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Jimmy Cliff", + "playlist_title": "Wonderful World, Beautiful People", + "found_song": { + "artist": "Jimmy Cliff", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "895339da-36b1-a6ca-ec28-2f1b8e6b951d", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jimmy Cliff - Wonderful World Beautiful People.mp4", + "title": "Wonderful World Beautiful People" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Winter World Of Love", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "guid": "757a6e57-6122-d25d-eebc-73ab2b4019f4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Winter World Of Love - Engelbert Humperdinck.mp4", + "title": "Winter World Of Love" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Johnny Nash", + "playlist_title": "Cupid", + "found_song": { + "artist": "Johnny Nash", + "disabled": false, + "favorite": false, + "guid": "a780f5bc-54e1-5635-aa0c-1f0b7e0f176c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF087\\Johnny Nash - Cupid - SF087 - 04.mp3", + "title": "Cupid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "Tom Jones", + "playlist_title": "Without Love (There Is Nothing)", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0a4565d1-1541-9ecc-79d3-48df2ea5d1a0", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Without Love There Is Nothing.mp4", + "title": "Without Love There Is Nothing" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I'll Never Fall In Love Again", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "fd750d60-5736-62c1-b641-a60b0904246a", + "path": "z://MP4\\KaraokeOnVEVO\\Dionne Warwick - I'll Never Fall In Love Again (Karaoke).mp4", + "title": "I'll Never Fall In Love Again" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Jefferson Airplane", + "playlist_title": "Volunteers", + "found_song": { + "artist": "Jefferson Airplane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1b025ac5-f602-a538-124a-16fd21701119", + "path": "z://MP4\\ZoomKaraokeOfficial\\Jefferson Airplane - Volunteers.mp4", + "title": "Volunteers" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Eddie Holman", + "playlist_title": "Hey There Lonely Girl", + "found_song": { + "artist": "Eddie Holman", + "disabled": false, + "favorite": false, + "guid": "bc4f61eb-e24b-caee-e6c4-1676a351f4a0", + "path": "z://MP4\\KaraokeOnVEVO\\Eddie Holman - Hey There Lonely Girl (Karaoke).mp4", + "title": "Hey There Lonely Girl" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "The Hollies", + "playlist_title": "He Ain't Heavy, He's My Brother", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9f8e44a1-2cb1-6f62-f2c9-87e148be181d", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - He Aint Heavy, Hes My Brother.mp4", + "title": "He Ain't Heavy, He's My Brother" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "B.B. King", + "playlist_title": "The Thrill Is Gone", + "found_song": { + "artist": "B.B. King", + "disabled": false, + "favorite": false, + "guid": "55b3bbb0-1ee4-7b2b-7d61-d6c9e9bad700", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Thrill Is Gone - B.B. King.mp4", + "title": "The Thrill Is Gone" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 1, + "playlist_artist": "Diana Ross & The Supremes", + "playlist_title": "Someday We'll Be Together", + "found_song": { + "artist": "Diana Ross & The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d6c743e-06f9-e9d8-9b62-5167a2db8d41", + "path": "z://MP4\\KaraokeOnVEVO\\Diana Ross & The Supremes - Someday We'll Be Together.mp4", + "title": "Someday We'll Be Together" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 2, + "playlist_artist": "Peter, Paul & Mary", + "playlist_title": "Leaving On A Jet Plane", + "found_song": { + "artist": "Peter, Paul And Mary", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "de6c2511-6194-fadb-a691-4533c323344c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Peter, Paul And Mary - Leaving On A Jet Plane.mp4", + "title": "Leaving On A Jet Plane" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 26, + "playlist_artist": "The Band", + "playlist_title": "Up On Cripple Creek", + "found_song": { + "artist": "The Band", + "disabled": false, + "favorite": false, + "guid": "a05ba1a1-ecfa-3088-b424-8c0237572ebb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On Cripple Creek - The Band.mp4", + "title": "Up On Cripple Creek" + }, + "similarity": 0.95, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 52, + "playlist_artist": "Nancy Wilson", + "playlist_title": "Can't Take My Eyes Off You", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "80148322-e689-97ce-0614-cdba1973bf92", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Cant Take My Eyes Off You.mp4", + "title": "Can't Take My Eyes Off You" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Joe Cocker", + "playlist_title": "She Came In Through The Bathroom Window", + "found_song": { + "artist": "Beatles, The", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e807bb9-8213-4325-2060-3c08f72bd9ca", + "path": "z://CDG\\SBI\\SBI-04\\SB18126 - The Beatles - She Came In Through The Bathroom Window.mp3", + "title": "She Came In Through The Bathroom Window" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 7, + "artist": "The Beatles", + "title": "Come Together/Something", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "R.B. Greaves", + "title": "Take A Letter Maria", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ferrante & Teicher", + "title": "Midnight Cowboy", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Bobby Sherman", + "title": "La La La (If I Had You)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Blood, Sweat & Tears", + "title": "And When I Die", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jr. Walker & The All Stars", + "title": "These Eyes", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Gladys Knight And The Pips", + "title": "Friendship Train", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Mel And Tim", + "title": "Backfield In Motion", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Billy Joe Royal", + "title": "Cherry Hill Park", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Archies", + "title": "Jingle Jangle", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Elvis Presley", + "title": "Don't Cry Daddy/Rubberneckin'", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Flying Machine", + "title": "Smile A Little Smile For Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Originals", + "title": "Baby, I'm For Real", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Dusty Springfield", + "title": "A Brand New Me", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "CROW", + "title": "Evil Woman Don't Play Your Games With Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Grass Roots", + "title": "Heaven Knows", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Aretha Franklin", + "title": "Eleanor Rigby", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Plastic Ono Band", + "title": "Cold Turkey", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Tommy James And The Shondells", + "title": "She", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Oliver", + "title": "Sunday Mornin'", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "James Brown", + "title": "Ain't It Funky Now (Part 1)", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Friends Of Distinction", + "title": "Going In Circles", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Harlow Wilcox and the Oakies", + "title": "Groovy Grubworm", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Smokey Robinson & The Miracles", + "title": "Point It Out", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Merle Haggard And The Strangers", + "title": "Okie From Muskogee", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Jerry Butler", + "title": "Don't Let Love Hang You Up", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Four Tops", + "title": "Don't Let Him Take Your Love From Me", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Flaming Ember", + "title": "Mind, Body and Soul", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Mark Lindsay", + "title": "Arizona", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Janis Joplin", + "title": "Kozmic Blues", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "What You Gave Me", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Bobbie Gentry", + "title": "Fancy", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Jay & The Americans", + "title": "Walkin' In The Rain", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Wilbert Harrison", + "title": "Let's Work Together (Part 1)", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Rick Nelson", + "title": "She Belongs To Me", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Clique", + "title": "I'll Hold Out My Hand", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Gloria Taylor", + "title": "You Got To Pay The Price", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Johnny Cash", + "title": "Blistered/See Ruby Fall", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Dennis Yost And The Classics IV", + "title": "Midnight", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Original Caste", + "title": "One Tin Soldier", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Cuff Links", + "title": "When Julie Comes Around", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jefferson", + "title": "Baby Take Me In Your Arms", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "James Brown", + "title": "Let A Man Come In And Do The Popcorn (Part Two)", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "David Ruffin", + "title": "I'm So Glad I Fell For You", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Tokens", + "title": "She Lets Her Hair Down (Early In The Morning)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Judy Collins", + "title": "Turn! Turn! Turn!/To Everything There Is A Season", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Guess Who", + "title": "No Time", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Steppenwolf", + "title": "Monster", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Eydie Gorme", + "title": "Tonight I'll Say A Prayer", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Savoy Brown", + "title": "I'm Tired", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Lettermen", + "title": "Traces/Memories Medley", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Otis Leavill", + "title": "I Love You", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Johnnie Taylor", + "title": "Love Bones", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Turtles", + "title": "Lady-O", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Syl Johnson", + "title": "Is It Because I'm Black", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Meters", + "title": "Look-Ka Py Py", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Lou Christie", + "title": "Are You Getting Any Sunshine?", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Illusion", + "title": "Together", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Tommy Cash", + "title": "Six White Horses", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Sandpipers", + "title": "Come Saturday Morning", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Nina Simone", + "title": "To Be Young, Gifted And Black", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Ike & Tina Turner", + "title": "Bold Soul Sister", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Newbeats", + "title": "Groovin' (Out On Life)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Lulu", + "title": "Oh Me Oh My (I'm A Fool For You Baby)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Intrigues", + "title": "I'm Gonna Love You", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Simon Stokes/Nighthawks", + "title": "Voodoo Woman", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Al Martino", + "title": "I Started Loving You Again", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Archie Bell & The Drells", + "title": "A World Without Music", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "100 Proof Aged in Soul", + "title": "Too Many Cooks (Spoil The Soup)", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Brother Jack McDuff", + "title": "Theme From Electric Surfboard", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Betty Everett", + "title": "It's Been A Long Time", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Grand Funk Railroad", + "title": "Mr. Limousine Driver", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Kool & The Gang", + "title": "The Gangs Back Again", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Ruby Winters", + "title": "Guess Who", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 5, + "missing_count": 74, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1968 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Marvin Gaye", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1379215a-bca9-2a75-f243-47dd8cb408e5", + "path": "z://MP4\\Sing King Karaoke\\Marvin Gaye - I Heard It Through The Grapevine.mp4", + "title": "I Heard It Through The Grapevine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Stevie Wonder", + "playlist_title": "For Once In My Life", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "dffee986-76cf-fb4b-b827-6f6f5b9ec409", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke For Once In My Life - Stevie Wonder.mp4", + "title": "For Once In My Life" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Glen Campbell", + "playlist_title": "Wichita Lineman", + "found_song": { + "artist": "Glen Campbell", + "disabled": false, + "favorite": false, + "guid": "dc7ab7c2-e8e6-684c-e8e1-4a2709bedb7f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Wichita Lineman - Glen Campbell.mp4", + "title": "Wichita Lineman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnnie Taylor", + "playlist_title": "Who's Making Love", + "found_song": { + "artist": "Johnnie Taylor", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1d98d9c-9afb-b5e0-690e-1b718e9a2c19", + "path": "z://MP4\\KaraokeOnVEVO\\Johnnie Taylor - Whos Making Love.mp4", + "title": "Who's Making Love" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Bobby Vinton", + "playlist_title": "I Love How You Love Me", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "guid": "18fae4d6-c5ef-4b27-4338-d89913792710", + "path": "z://MP4\\KaraFun Karaoke\\I Love How You Love Me - Bobby Vinton Karaoke Version KaraFun.mp4", + "title": "I Love How You Love Me" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Temptations", + "playlist_title": "Cloud Nine", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a0aaaae1-bf68-9270-e4f9-d5c9da243ed6", + "path": "z://MP4\\KaraokeOnVEVO\\The Temptations - Cloud Nine.mp4", + "title": "Cloud Nine" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Judy Collins", + "playlist_title": "Both Sides Now", + "found_song": { + "artist": "Judy Collins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "7a7fe2a4-c6eb-943e-a26a-61a19ee2f14c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Judy Collins - Both Sides Now.mp4", + "title": "Both Sides Now" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "B.J. Thomas", + "playlist_title": "Hooked On A Feeling", + "found_song": { + "artist": "B. J. Thomas", + "disabled": false, + "favorite": false, + "guid": "6f9233b9-e46a-71ec-ace6-f6fcd83801d0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hooked On A Feeling - B. J. Thomas.mp4", + "title": "Hooked On A Feeling" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "The Beatles", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "f74dfc02-9406-5063-0928-33ceec3b49d8", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hey Jude (Karaoke Version).mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Bring It On Home To Me", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "615528de-9d2b-7f67-7c3c-7025228e9dfe", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF073\\Eddie Floyd - Bring It On Home To Me - SF073 - 13.mp3", + "title": "Bring It On Home To Me" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Steppenwolf", + "playlist_title": "Magic Carpet Ride", + "found_song": { + "artist": "Steppenwolf", + "disabled": false, + "favorite": false, + "guid": "62e29a5c-828f-afa1-93ab-2684c52b0a06", + "path": "z://MP4\\Let's Sing Karaoke\\Steppenwolf - Magic Carpet Ride (Karaoke & Lyrics).mp4", + "title": "Magic Carpet Ride" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Canned Heat", + "playlist_title": "Going Up The Country", + "found_song": { + "artist": "Canned Heat", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6547e253-3fab-79b7-a939-428172802db7", + "path": "z://MP4\\KaraokeOnVEVO\\Canned Heat - Going Up The Country.mp4", + "title": "Going Up The Country" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Dusty Springfield", + "playlist_title": "Son-Of-A Preacher Man", + "found_song": { + "artist": "Dusty Springfield", + "disabled": false, + "favorite": false, + "guid": "1b6df3e8-bff0-3e0a-6649-180bac606048", + "path": "z://MP4\\Sing King Karaoke\\Dusty Springfield - Son Of A Preacher Man (Karaoke Version).mp4", + "title": "Son Of A Preacher Man" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Leapy Lee", + "playlist_title": "Little Arrows", + "found_song": { + "artist": "Leapy Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5835e17-68f3-b34f-146d-95d2a5e18c3f", + "path": "z://MP4\\ZoomKaraokeOfficial\\Leapy Lee - Little Arrows.mp4", + "title": "Little Arrows" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Mary Hopkin", + "playlist_title": "Those Were The Days", + "found_song": { + "artist": "Mary Hopkin", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "940657bb-229d-11e3-5778-732fc8bf0b0e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Mary Hopkin - Those Were The Days.mp4", + "title": "Those Were The Days" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Elvis Presley", + "playlist_title": "If I Can Dream", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "cad8a27d-2d4b-5c78-d5dc-9f891b1f8f9e", + "path": "z://MP4\\Sing King Karaoke\\Elvis Presley - If I Can Dream (Karaoke Version).mp4", + "title": "If I Can Dream" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Tammy Wynette", + "playlist_title": "Stand By Your Man", + "found_song": { + "artist": "Tammy Wynette", + "disabled": false, + "favorite": false, + "guid": "b6033139-93a9-45f8-5304-3dfcb1cc406b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stand By Your Man - Tammy Wynette.mp4", + "title": "Stand By Your Man" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Bee Gees", + "playlist_title": "I Started A Joke", + "found_song": { + "artist": "Bee Gees", + "disabled": false, + "favorite": false, + "guid": "48717ff2-9082-e331-f7a2-dab2150c77a2", + "path": "z://CDG\\Various\\Bee Gees - I Started A Joke.mp3", + "title": "I Started A Joke" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Hey Jude", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "90eed85c-7009-5130-da40-c0b9fda6eb99", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Hey Jude - Wilson Pickett.mp4", + "title": "Hey Jude" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Creedence Clearwater Revival", + "playlist_title": "I Put A Spell On You", + "found_song": { + "artist": "Creedence Clearwater Revival", + "disabled": false, + "favorite": false, + "guid": "b1acd598-1787-72b8-33d0-b923ca74940d", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Put A Spell On You - Creedence Clearwater Revival.mp4", + "title": "I Put A Spell On You" + }, + "match_type": "exact" + }, + { + "position": 64, + "playlist_artist": "Johnny Cash", + "playlist_title": "Daddy Sang Bass", + "found_song": { + "artist": "Johnny Cash", + "disabled": false, + "favorite": false, + "guid": "07704770-9244-628a-2750-623dd3fa56e6", + "path": "z://MP4\\KaraFun Karaoke\\Daddy Sang Bass - Johnny Cash Karaoke Version KaraFun.mp4", + "title": "Daddy Sang Bass" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "The Doors", + "playlist_title": "Touch Me", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "745041b0-7e08-5b70-5714-b1fb0858ce8d", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Touch Me (Karaoke & Lyrics) (2).mp4", + "title": "Touch Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Tom Jones", + "playlist_title": "A Minute Of Your Time", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5558ef05-c2c7-1a49-e992-1a656b23026e", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - A Minute Of Your Time.mp4", + "title": "A Minute Of Your Time" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 36, + "playlist_artist": "Aretha Franklin", + "playlist_title": "My Song", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "4d06fe9e-b729-dbb2-1b79-5a8106b41421", + "path": "z://MP4\\Stingray Karaoke\\Border Song Aretha Franklin Karaoke with Lyrics.mp4", + "title": "Border Song" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 42, + "playlist_artist": "Sly & The Family Stone", + "playlist_title": "Everyday People", + "found_song": { + "artist": "Sly & The Family Stone", + "disabled": false, + "favorite": false, + "guid": "35f4fd51-891b-908f-92a8-e7a0ac1f60ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Everyday People - Sly And The Family Stone.mp4", + "title": "Everyday People" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 74, + "playlist_artist": "Sammy Davis Jr.", + "playlist_title": "I've Gotta Be Me", + "found_song": { + "artist": "Sammy Jr. Davis", + "disabled": false, + "favorite": false, + "guid": "98b7f229-6ba3-9666-b466-7c59cc5eb40d", + "path": "z://CDG\\Various\\Sammy Jr. Davis - I've Gotta Be Me.mp3", + "title": "I've Gotta Be Me" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 90, + "playlist_artist": "Jay & The Americans", + "playlist_title": "This Magic Moment", + "found_song": { + "artist": "Jay and The Americans", + "disabled": false, + "favorite": false, + "guid": "7e43b5de-05af-906e-42ad-b4a46c8fd887", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke This Magic Moment - Jay and The Americans.mp4", + "title": "This Magic Moment" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 99, + "playlist_artist": "Al Martino", + "playlist_title": "I Can't Help It (If I'm Still In Love With You)", + "found_song": { + "artist": "Linda Ronstadt", + "disabled": false, + "favorite": false, + "guid": "ffade7e1-3ab7-0b4c-907a-31b2c4f33c15", + "path": "z://MP4\\KaraFun Karaoke\\I Can't Help It (If I'm Still in Love with You) - Linda Ronstadt Karaoke Version KaraFun.mp4", + "title": "I Can't Help It (If I'm Still in Love with You)" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Diana Ross & The Supremes", + "title": "Love Child", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Classics IV Featuring Dennis Yost", + "title": "Stormy", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion", + "title": "Abraham, Martin And John", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Diana Ross And The Supremes & The Temptations", + "title": "I'm Gonna Make You Love Me", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Derek", + "title": "Cinnamon", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Aretha Franklin", + "title": "See Saw", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Young-Holt Unlimited", + "title": "Soulful Strut", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Ohio Express", + "title": "Chewy Chewy", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Clarence Carter", + "title": "Too Weak To Fight", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Otis Redding", + "title": "Papa's Got A Brand New Bag", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Rene & Rene", + "title": "Lo Mucho Que Te Quiero (The More I Love You)", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Sergio Mendes & Brasil '66", + "title": "Scarborough Fair", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Tommy James And The Shondells", + "title": "Crimson And Clover", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Magic Lanterns", + "title": "Shame, Shame", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "The Vogues", + "title": "Till", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Rascals", + "title": "A Ray Of Hope", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Andy Williams with the St. Charles Borromeo Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Dionne Warwick", + "title": "Promises, Promises", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "The Chambers Brothers", + "title": "I Can't Turn You Loose", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Impressions", + "title": "This Is My Country", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Tymes", + "title": "People", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Booker T. & The MG's", + "title": "Hang 'Em High", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Lettermen", + "title": "Put Your Head On My Shoulder", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Deep Purple", + "title": "Kentucky Woman", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Grass Roots", + "title": "Bella Linda", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "My Favorite Things", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Royal Guardsmen", + "title": "Baby Let's Wait", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Archie Bell & The Drells", + "title": "There's Gonna Be A Showdown", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Delfonics", + "title": "Ready Or Not Here I Come (Can't Hide From Love)", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Bobby Taylor & The Vancouvers", + "title": "Malinda", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dean Martin", + "title": "Not Enough Indians", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Brooklyn Bridge", + "title": "Worst That Could Happen", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Autry Inman", + "title": "Ballad Of Two Brothers", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Jeannie C. Riley", + "title": "The Girl Most Likely", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Jimi Hendrix Experience", + "title": "Crosstown Traffic", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Jerry Butler", + "title": "Are You Happy", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Petula Clark", + "title": "American Boys", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Bobby Bland", + "title": "Rockin' In The Same Old Boat", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Beach Boys", + "title": "Bluebirds Over The Mountain", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The 5th Dimension", + "title": "California Soul", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "O.C. Smith", + "title": "Isn't It Lonely Together", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Vanilla Fudge", + "title": "Season Of The Witch, Pt. 1", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Tyrone Davis", + "title": "Can I Change My Mind", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Eric Burdon & The Animals", + "title": "White Houses", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Barbara Acklin", + "title": "Just Ain't No Love", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Bobby Womack", + "title": "California Dreamin'", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Sam & Dave", + "title": "Soul Sister, Brown Sugar", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Unifics", + "title": "The Beginning Of My End", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Bob Seger System", + "title": "Ramblin' Gamblin' Man", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The O'Kaysions", + "title": "Love Machine", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Nancy Sinatra", + "title": "Good Time Girl", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Paul Mauriat", + "title": "Chitty Chitty Bang Bang", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Merrilee Rush", + "title": "Reach Out", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Roger Miller", + "title": "Vance", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Johnny Nash", + "title": "You Got Soul", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Johnny Adams", + "title": "Release Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Electric Stories", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Andy Kim", + "title": "Rainbow Ride", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Moments", + "title": "Not On The Outside", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "James Brown", + "title": "Tit For Tat (Ain't No Taking Back)", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "John Wesley Ryles, I", + "title": "Kay", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Archies", + "title": "Feelin' So Good (S.k.o.o.b.y-D.o.o)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Box Tops", + "title": "Sweet Cream Ladies, Forward March", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Five Stairsteps & Cubie", + "title": "Stay Close To Me", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Barry Ryan", + "title": "Eloise", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Esquires", + "title": "You've Got The Power", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "The Dells", + "title": "Does Anybody Know I'm Here", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crystal Mansion", + "title": "The Thought Of Loving You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Chambers Brothers", + "title": "Shout! - Part 1", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Goodees", + "title": "Condition Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Bobby Vee", + "title": "I'm Into Lookin' For Someone To Love Me", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "New Colony Six", + "title": "Things I'd Like To Say", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 5, + "missing_count": 72, + "needs_manual_review": 5 + } + }, + { + "playlist_title": "1967 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "Hello Goodbye", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "68ecdff9-9cf3-f842-27a7-6e9c4ec3427c", + "path": "z://MP4\\Sing King Karaoke\\The Beatles - Hello, Goodbye (Karaoke Version).mp4", + "title": "Hello, Goodbye" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Monkees", + "playlist_title": "Daydream Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "e98e49cf-3fbc-a369-c962-44ff037e1a97", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Daydream Believer - The Monkees.mp4", + "title": "Daydream Believer" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "John Fred And The Playboys", + "playlist_title": "Judy In Disguise (With Glasses)", + "found_song": { + "artist": "John Fred And The Playboys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0161bc4c-d41c-2a56-2115-ae5dbaaeb2db", + "path": "z://MP4\\KaraokeOnVEVO\\John Fred And The Playboys - Judy In Disguise (With Glasses).mp4", + "title": "Judy In Disguise (With Glasses)" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aretha Franklin", + "playlist_title": "Chain Of Fools", + "found_song": { + "artist": "Aretha Franklin", + "disabled": false, + "favorite": false, + "guid": "edcf4df2-7421-a4a7-9b8d-fc0f7f0edb91", + "path": "z://MP4\\KaraFun Karaoke\\Aretha Franklin - Chain Of Fools.mp4", + "title": "Chain Of Fools" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Dionne Warwick", + "playlist_title": "I Say A Little Prayer", + "found_song": { + "artist": "Dionne Warwick", + "disabled": false, + "favorite": false, + "guid": "5909f4fc-eb0d-ed00-dde2-5392fb32b3b2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Say A Little Prayer - Dionne Warwick.mp4", + "title": "I Say A Little Prayer" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Box Tops", + "playlist_title": "Neon Rainbow", + "found_song": { + "artist": "The Box Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e5ceddcc-178f-2005-45a7-03fbe2da23f0", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Box Tops - Neon Rainbow.mp4", + "title": "Neon Rainbow" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "The Lemon Pipers", + "playlist_title": "Green Tambourine", + "found_song": { + "artist": "The Lemon Pipers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff789855-bce5-70d3-4949-549ed61763c9", + "path": "z://MP4\\KaraokeOnVEVO\\The Lemon Pipers - Green Tambourine.mp4", + "title": "Green Tambourine" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Doors", + "playlist_title": "Love Me Two Times", + "found_song": { + "artist": "The Doors", + "disabled": false, + "favorite": false, + "guid": "b077fc3e-79a9-3146-6f3e-b0b38e75b6b3", + "path": "z://MP4\\Let's Sing Karaoke\\Doors, The - Love Me Two Times (Karaoke & Lyrics) (2).mp4", + "title": "Love Me Two Times" + }, + "match_type": "exact" + }, + { + "position": 39, + "playlist_artist": "Lulu", + "playlist_title": "To Sir With Love", + "found_song": { + "artist": "Lulu", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "db5f4d3f-9c35-6d72-5bf2-c2cd7a25cca8", + "path": "z://MP4\\KaraokeOnVEVO\\Lulu - To Sir With Love.mp4", + "title": "To Sir With Love" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Etta James", + "playlist_title": "Tell Mama", + "found_song": { + "artist": "Etta James", + "disabled": false, + "favorite": false, + "guid": "edb8bd44-334f-4174-a020-27fe1555a303", + "path": "z://MP4\\Let's Sing Karaoke\\James, Etta - Tell Mama (Karaoke & Lyrics).mp4", + "title": "Tell Mama" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Dean Martin", + "playlist_title": "In The Misty Moonlight", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "024e69f2-5eac-d437-efa4-61dbea34fa20", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In The Misty Moonlight - Dean Martin.mp4", + "title": "In The Misty Moonlight" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Small Faces", + "playlist_title": "Itchycoo Park", + "found_song": { + "artist": "Small Faces", + "disabled": false, + "favorite": false, + "guid": "d5b35794-dfad-778f-f822-103534173170", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Itchycoo Park - Small Faces.mp4", + "title": "Itchycoo Park" + }, + "match_type": "exact" + }, + { + "position": 54, + "playlist_artist": "Engelbert Humperdinck", + "playlist_title": "Am I That Easy To Forget", + "found_song": { + "artist": "Engelbert Humperdinck", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cfbe025a-ccde-43ad-1f30-00db4684720a", + "path": "z://MP4\\KaraokeOnVEVO\\Engelbert Humperdinck - Am I That Easy To Forget.mp4", + "title": "Am I That Easy To Forget" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Everybody Knows", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d242bdd2-3c07-cda3-fd34-e353fe968eea", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Dave Clark Five - Everybody Knows.mp4", + "title": "Everybody Knows" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "The Beach Boys", + "playlist_title": "Darlin'", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48bf516c-f3d7-775f-79b9-bda40882e116", + "path": "z://MP4\\KaraokeOnVEVO\\The Beach Boys - Darlin'.mp4", + "title": "Darlin'" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "The Foundations", + "playlist_title": "Baby, Now That I've Found You", + "found_song": { + "artist": "The Foundations", + "disabled": false, + "favorite": false, + "guid": "ce53ad2d-1584-5b4b-71e6-eae84efc8c68", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby, Now That I ve Found You - The Foundations.mp4", + "title": "Baby, Now That I ve Found You" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Henson Cargill", + "playlist_title": "Skip A Rope", + "found_song": { + "artist": "Henson Cargill", + "disabled": false, + "favorite": false, + "guid": "f99a5dd6-acb2-6977-ed89-ab8bc0e29cd5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Skip A Rope - Henson Cargill.mp4", + "title": "Skip A Rope" + }, + "match_type": "exact" + }, + { + "position": 70, + "playlist_artist": "Classics IV", + "playlist_title": "Spooky", + "found_song": { + "artist": "Classics IV", + "disabled": false, + "favorite": false, + "guid": "0123fded-b088-33f3-987d-4279b1b5e651", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spooky - Classics IV.mp4", + "title": "Spooky" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "The Beatles", + "playlist_title": "I Am The Walrus", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "bfe8f8f0-1931-6649-3e11-273ee6e0a576", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Am The Walrus - The Beatles.mp4", + "title": "I Am The Walrus" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Rolling Stones", + "playlist_title": "She's A Rainbow", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "88e63a82-800a-9354-294e-cdc04a6e7d9f", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Rolling Stones - Shes A Rainbow.mp4", + "title": "She's A Rainbow" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Tom Jones", + "playlist_title": "I'm Coming Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "64178efe-a2ee-152e-8cff-438b8d3bc2d7", + "path": "z://MP4\\ZoomKaraokeOfficial\\Tom Jones - Im Coming Home.mp4", + "title": "I'm Coming Home" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 2, + "playlist_artist": "Gladys Knight And The Pips", + "playlist_title": "I Heard It Through The Grapevine", + "found_song": { + "artist": "Gladys Knight & The Pips", + "disabled": false, + "favorite": false, + "guid": "72cb1730-ffa3-efef-83d0-2e25b3b4ddcf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Heard It Through The Grapevine - Gladys Knight & The Pips.mp4", + "title": "I Heard It Through The Grapevine" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "Jimi Hendrix", + "playlist_title": "Foxey Lady", + "found_song": { + "artist": "Jimi Hendrix", + "disabled": false, + "favorite": false, + "guid": "c04ad96a-14fb-e866-4279-b17855daa346", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Foxy Lady - Jimi Hendrix.mp4", + "title": "Foxy Lady" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "Smokey Robinson & The Miracles", + "title": "I Second That Emotion", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "The Union Gap Featuring Gary Puckett", + "title": "Woman, Woman", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The American Breed", + "title": "Bend Me, Shape Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Fantastic Johnny C", + "title": "Boogaloo Down Broadway", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Joe Tex", + "title": "Skinny Legs And All", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Martha Reeves & The Vandellas", + "title": "Honey Chile", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Cher", + "title": "You Better Sit Down Kids", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Strawberry Alarm Clock", + "title": "Incense And Peppermints", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Cowsills", + "title": "The Rain, The Park & Other Things", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Johnny Rivers", + "title": "Summer Rain", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Rose Garden", + "title": "Next Plane To London", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Marvin Gaye & Tammi Terrell", + "title": "If I Could Build My Whole World Around You", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Stone Poneys Featuring Linda Ronstadt", + "title": "Different Drum", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "The Turtles", + "title": "She's My Girl", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Diana Ross & The Supremes", + "title": "In And Out Of Love", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "The Esquires", + "title": "And Get Away", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Donovan", + "title": "Wear Your Love Like Heaven", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Young Rascals", + "title": "It's Wonderful", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Bee Gees", + "title": "(The Lights Went Out In) Massachusetts", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jay And The Techniques", + "title": "Keep The Ball Rollin'", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Buckinghams", + "title": "Susan", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Jr. Walker & The All Stars", + "title": "Come See About Me", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Petula Clark", + "title": "The Other Man's Grass Is Always Greener", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Eric Burdon & The Animals", + "title": "Monterey", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Glen Campbell", + "title": "By The Time I Get To Phoenix", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Brenton Wood", + "title": "Baby You Got It", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Too Much Of Nothing", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Ed Ames", + "title": "Who Will Answer?", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "James Brown And The Famous Flames", + "title": "I Can't Stand Myself (When You Touch Me)", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Jackie Wilson", + "title": "Since You Showed Me How To Be Happy", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Sandpebbles", + "title": "Love Power", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Percy Sledge", + "title": "Cover Me", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Wes Montgomery", + "title": "Windy", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Wilson Pickett", + "title": "I'm In Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Lulu", + "title": "Best Of Both Worlds", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Lettermen", + "title": "Goin' Out Of My Head/Can't Take My Eyes Off You", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Dusty Springfield", + "title": "What's It Gonna Be", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Hollies", + "title": "Dear Eloise", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Marvelettes", + "title": "My Baby Must Be A Magician", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "The Mamas & The Papas", + "title": "Dancing Bear", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Kenny O'Dell", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Peaches & Herb", + "title": "Two Little Kids", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Bobby Vee And The Strangers", + "title": "Beautiful People", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Billy Vera & Judy Clay", + "title": "Storybook Children", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Sonny & Cher", + "title": "Good Combination", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Jefferson Airplane", + "title": "Watch Her Ride", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Human Beinz", + "title": "Nobody But Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Soul Survivors", + "title": "Explosion (In Your Soul)", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Dells", + "title": "O-O, I Love You", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "The O'Jays", + "title": "I'll Be Sweeter Tomorrow (Than I Was Today)", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Vikki Carr", + "title": "The Lesson", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Bill Cosby", + "title": "Hooray For The Salvation Army Band", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Tommy Boyce & Bobby Hart", + "title": "I Wonder What She's Doing Tonite", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Al Greene & The Soul Mate's", + "title": "Back Up Train", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Hugh Masekela", + "title": "Up-Up And Away", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Harpers Bizarre", + "title": "Chattanooga Choo Choo", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Frankie Valli", + "title": "To Give (The Reason I Live)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Strawberry Alarm Clock", + "title": "Tomorrow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Carla Thomas", + "title": "Pick Up The Pieces", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Bobby Vinton", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Jerry Butler", + "title": "Lost", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Al Martino", + "title": "A Voice In The Choir", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "King Curtis & The Kingpins", + "title": "I Was Made To Love Her", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Ronnie Dove", + "title": "Dancin' Out Of My Heart", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Bill Wyman", + "title": "In Another Land", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "5 Stairsteps and Cubie", + "title": "Something's Missing", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Bruce Channel", + "title": "Mr. Bus Driver", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Billy Stewart", + "title": "Cross My Heart", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Music Makers", + "title": "United (Part 1)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Leon Haywood", + "title": "Mellow Moonlight", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Aretha Franklin", + "title": "Mockingbird", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Barbara Mason", + "title": "Oh, How It Hurts", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Epic Splendor", + "title": "A Little Rain Must Fall", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Manhattans", + "title": "I Call It Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Laura Lee", + "title": "Up Tight, Good Man", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Impressions", + "title": "We're A Winner", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Fireballs", + "title": "Bottle Of Wine", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 2, + "missing_count": 77, + "needs_manual_review": 2 + } + }, + { + "playlist_title": "1966 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Monkees", + "playlist_title": "I'm A Believer", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "cacc68b9-fe9d-eac6-decd-8f8131b0b847", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m A Believer - The Monkees.mp4", + "title": "I m A Believer" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Frank Sinatra", + "playlist_title": "That's Life", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "2ba8364b-c362-1a88-5bb4-670131d1143a", + "path": "z://MP4\\Sing King Karaoke\\Frank Sinatra - That's Life (Karaoke Version).mp4", + "title": "That's Life" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Nancy Sinatra", + "playlist_title": "Sugar Town", + "found_song": { + "artist": "Nancy Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6d4147d0-124a-9949-69a1-8cfea5344c5b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Nancy Sinatra - Sugar Town.mp4", + "title": "Sugar Town" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Donovan", + "playlist_title": "Mellow Yellow", + "found_song": { + "artist": "Donovan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fbc35976-4ce8-dc04-dc17-669510850308", + "path": "z://MP4\\ZoomKaraokeOfficial\\Donovan - Mellow Yellow.mp4", + "title": "Mellow Yellow" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Aaron Neville", + "playlist_title": "Tell It Like It Is", + "found_song": { + "artist": "Aaron Neville", + "disabled": false, + "favorite": false, + "guid": "f6af5295-6e25-6661-2941-a0c26a394069", + "path": "z://MP4\\Let's Sing Karaoke\\Neville, Aaron - Tell It Like It Is (Karaoke & Lyrics).mp4", + "title": "Tell It Like It Is" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "The Temptations", + "playlist_title": "(I Know) I'm Losing You", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "929d7a96-a19c-4ee4-f6f5-41e28b5318d9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I Know) I m Losing You - The Temptations.mp4", + "title": "(I Know) I m Losing You" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Stevie Wonder", + "playlist_title": "A Place In The Sun", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "b4826cb8-347e-35b2-521e-f1cc4b0d7c22", + "path": "z://CDG\\Various\\Stevie Wonder - A Place In The Sun.mp3", + "title": "A Place In The Sun" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Beach Boys", + "playlist_title": "Good Vibrations", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "06c1ba2a-c832-9d84-1abf-383bea110a8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Good Vibrations - The Beach Boys.mp4", + "title": "Good Vibrations" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Supremes", + "playlist_title": "You Keep Me Hangin' On", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "be114f50-883f-1d61-30bd-437904b3427f", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - You Keep Me Hangin On.mp4", + "title": "You Keep Me Hangin' On" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Four Tops", + "playlist_title": "Standing In The Shadows Of Love", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ef858151-6b97-4101-4bf8-010ba3d57d22", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Standing In The Shadows Of Love.mp4", + "title": "Standing In The Shadows Of Love" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Wilson Pickett", + "playlist_title": "Mustang Sally", + "found_song": { + "artist": "Wilson Pickett", + "disabled": false, + "favorite": false, + "guid": "ff41754b-9d7b-8e9b-8dc9-623ee581d79e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mustang Sally - Wilson Pickett.mp4", + "title": "Mustang Sally" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Monkees", + "playlist_title": "(I'm Not Your) Steppin' Stone", + "found_song": { + "artist": "The Monkees", + "disabled": false, + "favorite": false, + "guid": "2cc54713-3e7e-0a75-274c-2ea0dce8dd09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke (I m Not Your) Steppin Stone - The Monkees.mp4", + "title": "(I m Not Your) Steppin Stone" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Otis Redding", + "playlist_title": "Try A Little Tenderness", + "found_song": { + "artist": "Otis Redding", + "disabled": false, + "favorite": false, + "guid": "55dcc440-8fa0-a2e3-f46c-f78b2d98efc5", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Try A Little Tenderness - Otis Redding.mp4", + "title": "Try A Little Tenderness" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Seekers", + "playlist_title": "Georgy Girl", + "found_song": { + "artist": "The Seekers", + "disabled": false, + "favorite": false, + "guid": "54655cb6-0b56-a203-db30-33cf88d3d4d7", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Georgy Girl - The Seekers.mp4", + "title": "Georgy Girl" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Stop Stop Stop", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a1377fd4-5acc-dc8a-5c8b-576988ee3d0c", + "path": "z://MP4\\KaraokeOnVEVO\\The Hollies - Stop Stop Stop.mp4", + "title": "Stop Stop Stop" + }, + "match_type": "exact" + }, + { + "position": 53, + "playlist_artist": "Eddie Floyd", + "playlist_title": "Knock On Wood", + "found_song": { + "artist": "Eddie Floyd", + "disabled": false, + "favorite": false, + "guid": "3319eaa4-820e-cbce-86b3-c15001a05db2", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Knock On Wood - Eddie Floyd.mp4", + "title": "Knock On Wood" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Roy Orbison", + "playlist_title": "Communication Breakdown", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2d2cbcd2-2a17-134c-0613-ea84f430ae2b", + "path": "z://MP4\\KaraokeOnVEVO\\Roy Orbison - Communication Breakdown.mp4", + "title": "Communication Breakdown" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Tom Jones", + "playlist_title": "Green, Green Grass Of Home", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "663614e2-efcd-ad58-3d07-dc1272a9886e", + "path": "z://MP4\\Sing King Karaoke\\Tom Jones - Green Green Grass Of Home (Karaoke Version).mp4", + "title": "Green Green Grass Of Home" + }, + "match_type": "exact" + }, + { + "position": 75, + "playlist_artist": "Gene Pitney", + "playlist_title": "Just One Smile", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9137dc20-85e1-880a-89a8-8a8729f399ff", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Just One Smile.mp4", + "title": "Just One Smile" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "The Buckinghams", + "playlist_title": "Kind Of A Drag", + "found_song": { + "artist": "The Buckinghams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "79487683-b8ca-eaae-aab6-8ed36aac869a", + "path": "z://MP4\\VocalStarKaraoke\\The Buckinghams - Kind Of A Drag.mp4", + "title": "Kind Of A Drag" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "The Spencer Davis Group", + "playlist_title": "Gimme Some Lovin'", + "found_song": { + "artist": "The Spencer Davis Group", + "disabled": false, + "favorite": false, + "guid": "bbc253e8-6cf1-b610-7f4a-56f07d684226", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Gimme Some Lovin - The Spencer Davis Group.mp4", + "title": "Gimme Some Lovin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 12, + "playlist_artist": "Sandy Posey", + "playlist_title": "Single Girl", + "found_song": { + "artist": "Sandy Posey", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1183ba3c-777c-7b07-1062-f1076ea90242", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandy Posey - Single Girl.mp4", + "title": "Single Girl" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 46, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "A Hazy Shade Of Winter", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "guid": "db2a248d-d000-2c72-318a-d5069bf3ce5d", + "path": "z://CDG\\Various\\Simon & Garfunkel - Hazy Shade Of Winter.mp3", + "title": "Hazy Shade Of Winter" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 77, + "playlist_artist": "The Mamas & The Papas", + "playlist_title": "Dancing In The Street", + "found_song": { + "artist": "The Mamas And The Papas", + "disabled": false, + "favorite": false, + "guid": "e86cf1be-0fc0-93b9-6e4b-20904c813a66", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Dancing In The Street - The Mamas And The Papas.mp4", + "title": "Dancing In The Street" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Royal Guardsmen", + "title": "Snoopy Vs. The Red Baron", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "The New Vaudeville Band", + "title": "Winchester Cathedral", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Good Thing", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Devil With A Blue Dress On & Good Golly Miss Molly", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Music Machine", + "title": "Talk Talk", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Bobby Vinton", + "title": "Coming Home Soldier", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ronnie Dove", + "title": "Cry", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Mamas & The Papas", + "title": "Words Of Love", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Roger Williams", + "title": "Born Free", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Jackie Wilson", + "title": "Whispers (Gettin' Louder)", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "? (Question Mark) & The Mysterians", + "title": "I Need Somebody", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Tell It To The Rain", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Mame", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Peter And Gordon", + "title": "Lady Godiva", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Herman's Hermits", + "title": "East West", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jimmy Ruffin", + "title": "I've Passed This Way Before", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Eric Burdon & The Animals", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Yardbirds", + "title": "Happenings Ten Years Time Ago", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Neil Diamond", + "title": "I Got The Feelin' (Oh No No)", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The Lovin' Spoonful", + "title": "Nashville Cats", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Miracles", + "title": "(Come 'Round Here) I'm The One You Need", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Association", + "title": "Pandora's Golden Heebie Jeebies", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Petula Clark", + "title": "Color My World", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Tommy James And The Shondells", + "title": "It's Only Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Percy Sledge", + "title": "It Tears Me Up", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Blues Magoos", + "title": "(We Ain't Got) Nothin' Yet", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Innocence", + "title": "There's Got To Be A Word!", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Senator Everett McKinley Dirksen", + "title": "Gallant Men", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Bobby Goldsboro", + "title": "Blue Autumn", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Martha & The Vandellas", + "title": "I'm Ready For Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Keith", + "title": "98.6", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Terry Knight and The Pack", + "title": "I (Who Have Nothing)", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Gene Chandler", + "title": "I Fooled You This Time", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Gary Lewis And The Playboys", + "title": "Where Will The Words Come From", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dr. West's Medicine Show and Junk Band", + "title": "The Eggplant That Ate Chicago", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Electric Prunes", + "title": "I Had Too Much To Dream (Last Night)", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Critters", + "title": "Bad Misunderstanding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Happenings", + "title": "Goodnight My Love", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Baja Marimba Band", + "title": "Ghost Riders In The Sky", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Spyder Turner", + "title": "Stand By Me", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Joe Tex", + "title": "Papa Was Too", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lou Rawls", + "title": "You Can Bring Me All Your Heartaches", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Sam The Sham and the Pharaohs", + "title": "How Do You Catch A Girl", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Drifters", + "title": "Baby What I Mean", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "The Emperor's", + "title": "Karate", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Pozo Seco Singers", + "title": "Look What You've Done", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Outsiders", + "title": "Help Me Girl", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bobby Darin", + "title": "The Girl That Stood Beside Me", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dean Martin", + "title": "(Open Up The Door) Let The Good Times In", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Young Holt Trio", + "title": "Wack Wack", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Baby Ray", + "title": "There's Something On Your Mind", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "The Youngbloods", + "title": "Grizzly Bear", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Peter And Gordon", + "title": "Knight In Rusty Armour", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Dionne Warwick", + "title": "Another Night", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Alvin Cash & The Registers", + "title": "Alvin's Boo-Ga-Loo", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Ramsey Lewis", + "title": "Day Tripper", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Damita Jo", + "title": "If You Go Away", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Artistics", + "title": "I'm Gonna Miss You", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "The Gunter Kallmann Chorus", + "title": "Wish Me A Rainbow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Cyrkle", + "title": "Please Don't Ever Leave Me", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Sergio Mendes & Brasil '66", + "title": "Constant Rain (Chove Chuva)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Tommy Roe", + "title": "It's Now Winters Day", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "The Seeds", + "title": "Pushin' Too Hard", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Bob Crewe Generation", + "title": "Music To Watch Girls By", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Howard Tate", + "title": "Look At Granny Run, Run", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Freddy Scott", + "title": "Are You Lonely For Me", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "J.J. Jackson", + "title": "I Dig Girls", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Sopwith Camel", + "title": "Hello Hello", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Peaches & Herb", + "title": "Let's Fall In Love", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Take Me For A Little While", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Boots Randolph", + "title": "The Shadow Of Your Smile", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Jimmy Castor", + "title": "Hey, Leroy, Your Mama's Callin' You", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Bobby Hebb", + "title": "Love Me", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Sam & Dave", + "title": "You Got Me Hummin'", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Don Ho and the Aliis", + "title": "Tiny Bubbles", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Hardtimes", + "title": "Fortune Teller", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 21, + "fuzzy_match_count": 3, + "missing_count": 76, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1965 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Dave Clark Five", + "playlist_title": "Over And Over", + "found_song": { + "artist": "The Dave Clark Five", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d566cd09-a589-e0d5-6b37-1a2073b787d5", + "path": "z://MP4\\KaraokeOnVEVO\\The Dave Clark Five - Over And Over.mp4", + "title": "Over And Over" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Eddy Arnold", + "playlist_title": "Make The World Go Away", + "found_song": { + "artist": "Eddy Arnold", + "disabled": false, + "favorite": false, + "guid": "4cd71ff7-f05d-b153-23c8-4a032541284c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make The World Go Away - Eddy Arnold.mp4", + "title": "Make The World Go Away" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Roger Miller", + "playlist_title": "England Swings", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c3e81e84-3704-24c9-535f-47d879a0d831", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - England Swings.mp4", + "title": "England Swings" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "Ebb Tide", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "10206fa1-36c8-14c1-a9a2-e50312e3b888", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ebb Tide - The Righteous Brothers.mp4", + "title": "Ebb Tide" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Beatles", + "playlist_title": "We Can Work It Out", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "3315f41a-ef1d-7825-539b-3be70c710782", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke We Can Work It Out - The Beatles.mp4", + "title": "We Can Work It Out" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "The Statler Brothers", + "playlist_title": "Flowers On The Wall", + "found_song": { + "artist": "The Statler Brothers", + "disabled": false, + "favorite": false, + "guid": "52770daf-dab7-9456-7115-cf55ac835109", + "path": "z://CDG\\KaraokeBook\\CB\\CB-1- - Statler Brothers, The - Flowers On The Wall.mp3", + "title": "Flowers On The Wall" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Dean Martin", + "playlist_title": "I Will", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "b7ed8be5-bcfd-9014-408a-a25fa6fb0f5a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Will - Dean Martin.mp4", + "title": "I Will" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Supremes", + "playlist_title": "I Hear A Symphony", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6be089ee-0f63-7148-0027-9e8720fb2205", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - I Hear A Symphony.mp4", + "title": "I Hear A Symphony" + }, + "match_type": "exact" + }, + { + "position": 23, + "playlist_artist": "The Lovin' Spoonful", + "playlist_title": "You Didn't Have To Be So Nice", + "found_song": { + "artist": "The Lovin' Spoonful", + "disabled": false, + "favorite": false, + "guid": "ae124cbd-3f9d-8211-13ff-00d450808096", + "path": "z://MP4\\KaraokeOnVEVO\\The Lovin' Spoonful - You Didn't Have To Be So Nice (Karaoke).mp4", + "title": "You Didn't Have To Be So Nice" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "The Animals", + "playlist_title": "It's My Life", + "found_song": { + "artist": "The Animals", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6dd77b27-41c6-2cb6-2a5a-4ebc12353a07", + "path": "z://MP4\\KaraokeOnVEVO\\The Animals - Its My Life.mp4", + "title": "It's My Life" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Len Barry", + "playlist_title": "1-2-3", + "found_song": { + "artist": "Len Barry", + "disabled": false, + "favorite": false, + "guid": "e295cd96-1829-3cb6-4a17-fbfd7524d47e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke 1-2-3 - Len Barry.mp4", + "title": "1-2-3" + }, + "match_type": "exact" + }, + { + "position": 28, + "playlist_artist": "The Beatles", + "playlist_title": "Day Tripper", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "895679a1-575a-f11d-49d5-ed48befa84b4", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Day Tripper - The Beatles.mp4", + "title": "Day Tripper" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Al Martino", + "playlist_title": "Spanish Eyes", + "found_song": { + "artist": "Al Martino", + "disabled": false, + "favorite": false, + "guid": "04c7ad43-d9a8-67d1-491b-77d40303579a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Spanish Eyes - Al Martino.mp4", + "title": "Spanish Eyes" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "Four Tops", + "playlist_title": "Something About You", + "found_song": { + "artist": "Four Tops", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fd176396-79b6-50b3-6129-c3069e15c89f", + "path": "z://MP4\\KaraokeOnVEVO\\Four Tops - Something About You.mp4", + "title": "Something About You" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Get Off Of My Cloud", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "4e85ab90-510d-6f36-7d90-16c19868a187", + "path": "z://MP4\\Stingray Karaoke\\Get Off Of My Cloud in the Style of The Rolling Stones karaoke with lyrics (no lead vocal).mp4", + "title": "Get Off Of My Cloud" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "Gene Pitney", + "playlist_title": "Princess In Rags", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1ad486b7-8c56-d947-022d-7ad597a0e7b5", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Princess In Rags.mp4", + "title": "Princess In Rags" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Fontella Bass", + "playlist_title": "Rescue Me", + "found_song": { + "artist": "Fontella Bass", + "disabled": false, + "favorite": false, + "guid": "d6cbc2bf-c39a-3c7f-ba9f-9274d87741ed", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Rescue Me - Fontella Bass.mp4", + "title": "Rescue Me" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Tom Jones", + "playlist_title": "Thunderball", + "found_song": { + "artist": "Tom Jones", + "disabled": false, + "favorite": false, + "guid": "f6278b80-4d18-2075-d00c-c49bbf945687", + "path": "z://CDG\\Various\\Tom Jones - Thunderball.mp3", + "title": "Thunderball" + }, + "match_type": "exact" + }, + { + "position": 46, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Ain't That Peculiar", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "c5fd0a79-4d6b-eba6-f8aa-d64bec7a9937", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ain t That Peculiar - Marvin Gaye.mp4", + "title": "Ain t That Peculiar" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Herman's Hermits", + "playlist_title": "A Must To Avoid", + "found_song": { + "artist": "Herman's Hermits", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9c4a36f4-d529-a26e-2d74-02b1b69b5f53", + "path": "z://MP4\\ZoomKaraokeOfficial\\Hermans Hermits - A Must To Avoid.mp4", + "title": "A Must To Avoid" + }, + "match_type": "exact" + }, + { + "position": 50, + "playlist_artist": "The Hollies", + "playlist_title": "Look Through Any Window", + "found_song": { + "artist": "The Hollies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc4f38ff-51f4-f1dd-16ad-71bc292d92b8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Hollies - Look Through Any Window.mp4", + "title": "Look Through Any Window" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "The Fortunes", + "playlist_title": "Here It Comes Again", + "found_song": { + "artist": "The Fortunes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "646f1624-0ce0-3421-4ffb-9383f47eb4e6", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Fortunes - Here It Comes Again.mp4", + "title": "Here It Comes Again" + }, + "match_type": "exact" + }, + { + "position": 61, + "playlist_artist": "Ray Charles", + "playlist_title": "Crying Time", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "75cccfe6-3924-5158-e2a2-a6b5b99a1f4b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Crying Time - Ray Charles.mp4", + "title": "Crying Time" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "Frank Sinatra", + "playlist_title": "It Was A Very Good Year", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "95cea314-b0f9-a78a-b95b-ecef1386397a", + "path": "z://MP4\\KaraokeOnVEVO\\Frank Sinatra - It Was A Very Good Year.mp4", + "title": "It Was A Very Good Year" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Petula Clark", + "playlist_title": "My Love", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "guid": "a3654096-2dbb-e649-19b2-3c2733f18020", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - My Love (Karaoke).mp4", + "title": "My Love" + }, + "match_type": "exact" + }, + { + "position": 92, + "playlist_artist": "The Temptations", + "playlist_title": "Don't Look Back", + "found_song": { + "artist": "The Temptations", + "disabled": false, + "favorite": false, + "guid": "3e13c940-787f-8b26-1fbf-28d8d4893bae", + "path": "z://MP4\\KtvEntertainment\\The Temptations - Don't Look Back Karaoke Lyrics.mp4", + "title": "Don't Look Back" + }, + "match_type": "exact" + }, + { + "position": 93, + "playlist_artist": "Lou Christie", + "playlist_title": "Lightnin' Strikes", + "found_song": { + "artist": "Lou Christie", + "disabled": false, + "favorite": false, + "guid": "7835cd46-adfb-7991-d248-a08f459c0101", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF093\\Lou Christie - Lightnin' Strikes - SF093 - 12.mp3", + "title": "Lightnin' Strikes" + }, + "match_type": "exact" + }, + { + "position": 95, + "playlist_artist": "Stevie Wonder", + "playlist_title": "Uptight (Everything's Alright)", + "found_song": { + "artist": "Stevie Wonder", + "disabled": false, + "favorite": false, + "guid": "6045a5fa-fa2f-5f47-edbc-6cc08a373821", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Uptight (Everything s Alright) - Stevie Wonder.mp4", + "title": "Uptight (Everything s Alright)" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "Simon & Garfunkel", + "playlist_title": "The Sound Of Silence", + "found_song": { + "artist": "Simon & Garfunkel", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5eb0c353-d0c2-a098-2622-7fbbbbf01b92", + "path": "z://MP4\\KaraokeOnVEVO\\Simon & Garfunkel - The Sound Of Silence.mp4", + "title": "The Sound Of Silence" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 66, + "playlist_artist": "Hedgehoppers Anonymous", + "playlist_title": "It's Good News Week", + "found_song": { + "artist": "Hedge Hoppers Anonymous", + "disabled": false, + "favorite": false, + "guid": "250cea0d-9b1a-60c5-9f8f-93779dc5f490", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF086\\Hedge Hoppers Anonymous - It's Good News Week - SF086 - 07.mp3", + "title": "It's Good News Week" + }, + "similarity": 0.99, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 76, + "playlist_artist": "Barbra Streisand", + "playlist_title": "Second Hand Rose", + "found_song": { + "artist": "Barbra Streisand", + "disabled": false, + "favorite": false, + "guid": "81c74a53-7ae8-39c8-d921-5b232c6a0ad0", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD042 - Barbra Streisand\\Barbra Streisand - Second Hand Rose - SFG042 - 13.mp3", + "title": "Second Hand Rose" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 79, + "playlist_artist": "The Rolling Stones", + "playlist_title": "As Tears Go By", + "found_song": { + "artist": "Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "a3ca5351-ab70-996f-0f6f-8071438abbc5", + "path": "z://CDG\\Various\\Rolling Stones - As Tears Go By.mp3", + "title": "As Tears Go By" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 87, + "playlist_artist": "Maxine Brown", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 94, + "playlist_artist": "The Young Rascals", + "playlist_title": "I Ain't Gonna Eat Out My Heart Anymore", + "found_song": { + "artist": "Young Rascals", + "disabled": false, + "favorite": false, + "guid": "1e8167d2-0202-d26a-4d35-f7f9ac8d3e77", + "path": "z://CDG\\Various\\Young Rascals - I Ain't Gonna Eat Out My Heart A.mp3", + "title": "I Ain't Gonna Eat Out My Heart A" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "The Byrds", + "title": "Turn! Turn! Turn! (To Everything There Is A Season)", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "James Brown And The Famous Flames", + "title": "I Got You (I Feel Good)", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "The 4 Seasons Featuring the Sound of Frankie Valli", + "title": "Let's Hang On!", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The McCoys", + "title": "Fever", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "The Shangri-Las", + "title": "I Can Never Go Home Anymore", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Wonder Who?", + "title": "Don't Think Twice", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Elvis Presley With The Jordanaires", + "title": "Puppet On A String", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Ramsey Lewis Trio", + "title": "Hang On Sloopy", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Vogues", + "title": "Five O'Clock World", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Barry Young", + "title": "One Has My Name (The Other Has My Heart)", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Jay & The Americans", + "title": "Sunday And Me", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Beach Boys", + "title": "The Little Girl I Once Knew", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Gary Lewis And The Playboys", + "title": "She's Just My Style", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "The Yardbirds", + "title": "I'm A Man", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Taste Of Honey", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Jackie Lee", + "title": "The Duck", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "We Five", + "title": "Let's Get Together", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Roy Head And The Traits", + "title": "Apple Of My Eye", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The T-Bones", + "title": "No Matter What Shape (Your Stomach's In)", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Bobby Vinton", + "title": "Satin Pillows", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Paul Revere & The Raiders Featuring Mark Lindsay", + "title": "Just Like Me", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Newbeats", + "title": "Run, Baby Run (Back Into My Arms)", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Impressions", + "title": "You've Been Cheatin'", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "The Viscounts", + "title": "Harlem Nocturne", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Don Covay & The Goodtimers", + "title": "Seesaw", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Joe Tex", + "title": "A Sweet Woman Like You", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Connie Francis", + "title": "Jealous Heart", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Ronny And The Daytonas", + "title": "Sandy", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Vic Dana", + "title": "Crystal Chandelier", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Knickerbockers", + "title": "Lies", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Billy Joe Royal", + "title": "I've Got To Be Somebody", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ronnie Dove", + "title": "Kiss Away", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Noel Harrison", + "title": "A Young Girl", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Kinks", + "title": "A Well Respected Man", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Dionne Warwick", + "title": "Are You There (With Another Girl)", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "The Toys", + "title": "Attack", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Buck Owens and The Buckaroos", + "title": "Buckaroo", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Packers", + "title": "Hole In The Wall", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "James Brown At The Organ", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Wilson Pickett", + "title": "Don't Fight It", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Mitch Ryder And The Detroit Wheels", + "title": "Jenny Take A Ride!", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Dino, Desi & Billy", + "title": "Please Don't Fight It", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Bobby Goldsboro", + "title": "Broomstick Cowboy", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Brook Benton", + "title": "Mother Nature, Father Time", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Lou Johnson", + "title": "A Time To Love-A Time To Cry (Petite Fleur)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The C.O.D.'s", + "title": "Michael", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Patti LaBelle And The Blue Belles", + "title": "All Or Nothing", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Johnny Tillotson", + "title": "Our World", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Johnny Rivers", + "title": "Under Your Spell Again", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jack Jones", + "title": "Love Bug", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Bobby Powell", + "title": "C.C. Rider", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Mike Douglas", + "title": "The Men In My Little Girl's Life", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Johnny Thunder", + "title": "Everybody Do The Sloopy", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Zorba The Greek", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Fontella Bass", + "title": "Recovery", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Miracles", + "title": "Going To A Go-Go", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Otis Redding", + "title": "Just One More Day", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Herb Alpert & The Tijuana Brass", + "title": "Tijuana Taxi", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The 4 Seasons", + "title": "Little Boy (In Grown Up Clothes)", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Marianne Faithfull", + "title": "Go Away From My World", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Martha & The Vandellas", + "title": "Love (Makes Me Do Foolish Things)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Lowell Fulsom", + "title": "Black Nights", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Beau Brummels", + "title": "Good Time Music", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Johnny Mathis", + "title": "On A Clear Day You Can See Forever", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Tony Bennett", + "title": "Love Theme From The Sandpiper (The Shadow Of Your Smile)", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "King Curtis", + "title": "Spanish Harlem", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 28, + "fuzzy_match_count": 6, + "missing_count": 66, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1964 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Beatles", + "playlist_title": "I Feel Fine", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "89fd3aeb-1dcf-8372-3855-d9214de52084", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Feel Fine - The Beatles.mp4", + "title": "I Feel Fine" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "The Supremes", + "playlist_title": "Come See About Me", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "guid": "f79cca65-cec1-0a42-8901-9dba9b0a68e9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Come See About Me - The Supremes.mp4", + "title": "Come See About Me" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Beatles", + "playlist_title": "She's A Woman", + "found_song": { + "artist": "The Beatles", + "disabled": false, + "favorite": false, + "guid": "a4adf696-6af2-c414-4204-fdcdd965c96c", + "path": "z://MP4\\singsongsmusic\\She s a Woman - Karaoke HD (In the style of The Beatles).mp4", + "title": "She s a Woman" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Zombies", + "playlist_title": "She's Not There", + "found_song": { + "artist": "The Zombies", + "disabled": false, + "favorite": false, + "guid": "cdbebaa6-7da7-c596-5556-4c2f66beffe3", + "path": "z://MP4\\Stingray Karaoke\\She's Not There in the Style of The Zombies karaoke video with lyrics (no lead vocal).mp4", + "title": "She's Not There" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Goin' Out Of My Head", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "guid": "fd8b5c2f-ce43-20b3-f002-0cb074b7bc8c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Goin Out Of My Head - Little Anthony And The Imperials.mp4", + "title": "Goin Out Of My Head" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Rolling Stones", + "playlist_title": "Time Is On My Side", + "found_song": { + "artist": "The Rolling Stones", + "disabled": false, + "favorite": false, + "guid": "06234893-f61e-f474-f00d-3b0d61d7bf04", + "path": "z://MP4\\KaraokeOnVEVO\\The Rolling Stones - Time Is On My Side (Karaoke).mp4", + "title": "Time Is On My Side" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "The Searchers", + "playlist_title": "Love Potion Number Nine", + "found_song": { + "artist": "The Searchers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b98316e4-ab0d-2c03-c28b-6c342fc22dfd", + "path": "z://MP4\\KaraokeOnVEVO\\The Searchers - Love Potion Number Nine.mp4", + "title": "Love Potion Number Nine" + }, + "match_type": "exact" + }, + { + "position": 13, + "playlist_artist": "Manfred Mann", + "playlist_title": "Sha La La", + "found_song": { + "artist": "Manfred Mann", + "disabled": false, + "favorite": false, + "guid": "b04fe4e7-8f7b-9e22-e38f-35cbaf97f037", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF084\\Manfred Mann - Sha La La - SF084 - 05.mp3", + "title": "Sha La La" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Gene Pitney", + "playlist_title": "I'm Gonna Be Strong", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "guid": "6275424c-e373-cd6d-c6cd-6b691e342682", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF094\\Gene Pitney - I'm Gonna Be Strong - SF094 - 15.mp3", + "title": "I'm Gonna Be Strong" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Herman's Hermits", + "playlist_title": "I'm Into Something Good", + "found_song": { + "artist": "Herman s Hermits", + "disabled": false, + "favorite": false, + "guid": "5d3e3342-cf28-9319-9d89-398cc6cfb589", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I m Into Something Good - Herman s Hermits.mp4", + "title": "I m Into Something Good" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "The Kinks", + "playlist_title": "You Really Got Me", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a77c2508-2512-8a1e-acb6-0c13cc5fdf7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Kinks - You Really Got Me.mp4", + "title": "You Really Got Me" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "The Shangri-Las", + "playlist_title": "Leader Of The Pack", + "found_song": { + "artist": "The Shangri-Las", + "disabled": false, + "favorite": false, + "guid": "7dfa48df-962e-16b2-80c4-6087ab266e32", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Leader Of The Pack - The Shangri-Las.mp4", + "title": "Leader Of The Pack" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Marvin Gaye", + "playlist_title": "How Sweet It Is To Be Loved By You", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "guid": "bcf0df83-fc34-7784-7a02-6c6628021e68", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD024 - Motown\\Marvin Gaye - How Sweet It Is (to Be Loved By You) - SFG024 - 04.mp3", + "title": "How Sweet It Is (to Be Loved By You)" + }, + "match_type": "exact" + }, + { + "position": 33, + "playlist_artist": "The Supremes", + "playlist_title": "Baby Love", + "found_song": { + "artist": "The Supremes", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28251b11-502e-caf1-1146-1385733fa34b", + "path": "z://MP4\\KaraokeOnVEVO\\The Supremes - Baby Love.mp4", + "title": "Baby Love" + }, + "match_type": "exact" + }, + { + "position": 34, + "playlist_artist": "The Righteous Brothers", + "playlist_title": "You've Lost That Lovin' Feelin'", + "found_song": { + "artist": "The Righteous Brothers", + "disabled": false, + "favorite": false, + "guid": "1f9ebc24-e99d-a016-4175-5126465760dc", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF046\\The Righteous Brothers - You've Lost That Lovin' Feelin' - SF046 - 10.mp3", + "title": "You've Lost That Lovin' Feelin'" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "The Ronettes", + "playlist_title": "Walking In The Rain", + "found_song": { + "artist": "The Ronettes", + "disabled": false, + "favorite": false, + "guid": "71d164eb-2448-96c2-d2b6-fd7810481268", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking In The Rain - The Ronettes.mp4", + "title": "Walking In The Rain" + }, + "match_type": "exact" + }, + { + "position": 40, + "playlist_artist": "Matt Monro", + "playlist_title": "Walk Away", + "found_song": { + "artist": "Matt Monro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "eb4c2a78-a43b-b559-07dd-2be85392de21", + "path": "z://MP4\\ZoomKaraokeOfficial\\Matt Monro - Walk Away.mp4", + "title": "Walk Away" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Petula Clark", + "playlist_title": "Downtown", + "found_song": { + "artist": "Petula Clark", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ff4cdcbd-d10f-3c02-fd9b-fe7480fcd8f5", + "path": "z://MP4\\KaraokeOnVEVO\\Petula Clark - Downtown.mp4", + "title": "Downtown" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Roger Miller", + "playlist_title": "Do-Wacka-Do", + "found_song": { + "artist": "Roger Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "72673677-0268-d881-a1a7-04f450544631", + "path": "z://MP4\\KaraokeOnVEVO\\Roger Miller - Do-Wacka-Do.mp4", + "title": "Do-Wacka-Do" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Dean Martin", + "playlist_title": "You're Nobody Till Somebody Loves You", + "found_song": { + "artist": "Dean Martin", + "disabled": false, + "favorite": false, + "guid": "f6deb0b7-27a8-df88-300f-5a103221f137", + "path": "z://MP4\\KaraFun Karaoke\\Dean Martin - You're Nobody Till Somebody Loves You.mp4", + "title": "You're Nobody Till Somebody Loves You" + }, + "match_type": "exact" + }, + { + "position": 60, + "playlist_artist": "Shirley Ellis", + "playlist_title": "The Name Game", + "found_song": { + "artist": "Shirley Ellis", + "disabled": false, + "favorite": false, + "guid": "4e553279-d6f7-06be-4081-7c4688044c18", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Name Game - Shirley Ellis.mp4", + "title": "The Name Game" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Kinks", + "playlist_title": "All Day And All Of The Night", + "found_song": { + "artist": "The Kinks", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "48ef4eac-601c-36db-f43f-f4d79506a95c", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Kinks - All Day And All Of The Night.mp4", + "title": "All Day And All Of The Night" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Sonny James", + "playlist_title": "You're The Only World I Know", + "found_song": { + "artist": "Sonny James", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "a942a35d-cdcb-b35f-df27-ac12c4f3cc48", + "path": "z://MP4\\KaraokeOnVEVO\\Sonny James - Youre The Only World I Know.mp4", + "title": "You're The Only World I Know" + }, + "match_type": "exact" + }, + { + "position": 98, + "playlist_artist": "The Bachelors", + "playlist_title": "No Arms Can Ever Hold You", + "found_song": { + "artist": "The Bachelors", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8c085b86-4912-81d6-c018-4ef742c71583", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Bachelors - No Arms Can Ever Hold You.mp4", + "title": "No Arms Can Ever Hold You" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 20, + "playlist_artist": "The Drifters", + "playlist_title": "Saturday Night At The Movies", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b370f9f7-e13c-2a0c-97b2-e55ecd5d2a65", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Saturday Night At The Movies - The Drifters.mp4", + "title": "Saturday Night At The Movies" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 30, + "playlist_artist": "Andy Williams", + "playlist_title": "Dear Heart", + "found_song": { + "artist": "Andy Williams", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1f23928c-e106-8727-d916-e06373c1af3c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Andy Williams - Happy Heart.mp4", + "title": "Happy Heart" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 51, + "playlist_artist": "Gerry And The Pacemakers", + "playlist_title": "I'll Be There", + "found_song": { + "artist": "Gerry & The Pacemakers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac26528e-1f6c-8021-4d3f-997f109584a4", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gerry & The Pacemakers - Ill Be There.mp4", + "title": "I'll Be There" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 54, + "playlist_artist": "Sandie Shaw", + "playlist_title": "(There's) Always Something There To Remind Me", + "found_song": { + "artist": "Sandie Shaw", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c39e03d2-7e94-6768-510e-4d1c4eb5f471", + "path": "z://MP4\\ZoomKaraokeOfficial\\Sandie Shaw - (Theres) Always Something There To Remind Me.mp4", + "title": "(There's) Always Something There To Remind Me" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 3, + "artist": "Bobby Vinton", + "title": "Mr. Lonely", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Lorne Greene", + "title": "Ringo", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The Beach Boys", + "title": "Dance, Dance, Dance", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "The Larks", + "title": "The Jerk", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "The Impressions", + "title": "Amen", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Julie Rogers", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Johnny Rivers", + "title": "Mountain Of Love", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "The Dave Clark Five", + "title": "Any Way You Want It", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Robert Goulet", + "title": "My Love, Forgive Me (Amore, Scusami)", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Del Shannon", + "title": "Keep Searchin' (We'll Follow The Sun)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Chad & Jeremy", + "title": "Willow Weep For Me", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Maxine Brown", + "title": "Oh No Not My Baby", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Marianne Faithfull", + "title": "As Tears Go By", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Detergents", + "title": "Leader Of The Laundromat", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "The Marvelettes", + "title": "Too Many Fish In The Sea", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Johnny Tillotson", + "title": "She Understands Me", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Dick and DeeDee", + "title": "Thou Shalt Not Steal", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Ray Charles Singers", + "title": "One More Time", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Ronnie Dove", + "title": "Right Or Wrong", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Jack Jones", + "title": "Dear Heart", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Martha & The Vandellas", + "title": "Wild One", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobbi Martin", + "title": "Don't Forget I Still Love You", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "The Gestures", + "title": "Run, Run, Run", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Betty Everett & Jerry Butler", + "title": "Smile", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The You Know Who Group!", + "title": "Roses Are Red My Love", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Chuck Jackson", + "title": "Since I Don't Have You", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene Chandler", + "title": "What Now", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Animals", + "title": "Boom Boom", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Elvis Presley With The Jordanaires", + "title": "Ask Me", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "The Waikikis", + "title": "Hawaii Tattoo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Candy & The Kisses", + "title": "The 81", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Chuck Berry", + "title": "Promised Land", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Four Tops", + "title": "Without The One You Love (Life's Not Worth While)", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Hullaballoos", + "title": "I'm Gonna Love You Too", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Joe Tex", + "title": "Hold What You've Got", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Gale Garnett", + "title": "Lovin' Place", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Ray Charles", + "title": "Makin' Whoopee", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ben E. King", + "title": "Seven Letters", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Major Lance", + "title": "Sometimes I Wonder", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Miracles", + "title": "Come On Do The Jerk", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Betty Everett", + "title": "Getting Mighty Crowded", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Solomon Burke", + "title": "The Price", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Honeycombs", + "title": "I Can't Stop", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Brook Benton", + "title": "Do It Right", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Irma Thomas", + "title": "He's My Guy", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Walter Jackson", + "title": "It's All Over", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Jo Ann & Troy", + "title": "I Found A Love Oh What A Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Harold Betters", + "title": "Do Anything You Wanna (Part I)", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jerry Vale", + "title": "Have You Looked Into Your Heart", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Frank Sinatra", + "title": "Somewhere In Your Heart", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Contours", + "title": "Can You Jerk Like Me", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Henry Mancini And His Orchestra", + "title": "Dear Heart", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Dean Martin", + "title": "You'll Always Be The One I Love", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Travis Wammack", + "title": "Scratchy", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Jay & The Americans", + "title": "Let's Lock The Door (And Throw Away The Key)", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Patti LaBelle And The Blue Belles", + "title": "Danny Boy", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "The Shangri-Las", + "title": "Give Him A Great Big Kiss", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Dolphins", + "title": "Hey-Da-Da-Dow", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Ronny And The Daytonas", + "title": "Bucket T", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Lee Morgan", + "title": "The Sidewinder, Part 1", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Willie Mitchell", + "title": "Percolatin'", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Dixie Cups", + "title": "Little Bell", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Bobby Vee", + "title": "(There'll Come A Day When) Ev'ry Little Bit Hurts", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Lesley Gore", + "title": "Look Of Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Hondells", + "title": "My Buddy Seat", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Shangri-Las", + "title": "Maybe", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Hank Williams Jr.", + "title": "Endless Sleep", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "James Brown And The Famous Flames", + "title": "Have Mercy Baby", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Radiants", + "title": "Voice Your Choice", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Don Covay", + "title": "Take This Hurt Off Me", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "The Shirelles", + "title": "Are You Still My Baby", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Ned Miller", + "title": "Do What You Do Do Well", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 4, + "missing_count": 72, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1963 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Bobby Vinton", + "playlist_title": "There! I've Said It Again", + "found_song": { + "artist": "Bobby Vinton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bc6cf99f-8a91-757c-3051-14d96dc8d569", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Vinton - There! Ive Said It Again.mp4", + "title": "There! I've Said It Again" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "The Kingsmen", + "playlist_title": "Louie Louie", + "found_song": { + "artist": "The Kingsmen", + "disabled": false, + "favorite": false, + "guid": "0b6fae33-371f-fd15-c16c-9443072c1d09", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Louie, Louie - The Kingsmen.mp4", + "title": "Louie, Louie" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Lenny Welch", + "playlist_title": "Since I Fell For You", + "found_song": { + "artist": "Lenny Welch", + "disabled": false, + "favorite": false, + "guid": "9c818105-5150-19c2-194f-de9a860977dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Since I Fell For You - Lenny Welch.mp4", + "title": "Since I Fell For You" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Forget Him", + "found_song": { + "artist": "Bobby Rydell", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2048f294-2144-59bd-9227-697b995f6267", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Rydell - Forget Him.mp4", + "title": "Forget Him" + }, + "match_type": "exact" + }, + { + "position": 10, + "playlist_artist": "The Beach Boys", + "playlist_title": "Be True To Your School", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "031794d6-beef-6d7c-d200-02eb6acff053", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be True To Your School - The Beach Boys.mp4", + "title": "Be True To Your School" + }, + "match_type": "exact" + }, + { + "position": 15, + "playlist_artist": "Jack Jones", + "playlist_title": "Wives And Lovers", + "found_song": { + "artist": "Jack Jones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "21a76bf0-07bf-1030-45fa-9ce5587589ab", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 819\\Jack Jones - Wives And Lovers - SFMW 819 -04.mp3", + "title": "Wives And Lovers" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Roy Orbison", + "playlist_title": "Pretty Paper", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "guid": "f93ec318-6868-5348-88ac-33ad1c29ab06", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Pretty Paper - Roy Orbison.mp4", + "title": "Pretty Paper" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Brenda Lee", + "playlist_title": "As Usual", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ac88fde5-cd5a-8e3f-765e-ccb02ce7a403", + "path": "z://MP4\\ZoomKaraokeOfficial\\Brenda Lee - As Usual.mp4", + "title": "As Usual" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "The Trashmen", + "playlist_title": "Surfin' Bird", + "found_song": { + "artist": "The Trashmen", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52f5f3de-3692-968d-145a-70aa41a18906", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Trashmen - Surfin Bird.mp4", + "title": "Surfin' Bird" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marvin Gaye", + "playlist_title": "Can I Get A Witness", + "found_song": { + "artist": "Marvin Gaye", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "985d8086-fba4-f301-5f01-6446d498aacd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Marvin Gaye - Can I Get A Witness.mp4", + "title": "Can I Get A Witness" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "The Beach Boys", + "playlist_title": "In My Room", + "found_song": { + "artist": "The Beach Boys", + "disabled": false, + "favorite": false, + "guid": "31b9b09b-a04c-f07f-e532-bef647bca066", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke In My Room - The Beach Boys.mp4", + "title": "In My Room" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Rufus Thomas", + "playlist_title": "Walking The Dog", + "found_song": { + "artist": "Rufus Thomas", + "disabled": false, + "favorite": false, + "guid": "602409e0-e1a4-eb03-4ddb-f4a141e5bcc8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walking The Dog - Rufus Thomas.mp4", + "title": "Walking The Dog" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "The Impressions", + "playlist_title": "It's All Right", + "found_song": { + "artist": "The Impressions", + "disabled": false, + "favorite": false, + "guid": "46baa50a-c6e1-5977-f71f-150e82b7b85e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All Right - The Impressions.mp4", + "title": "It s All Right" + }, + "match_type": "exact" + }, + { + "position": 72, + "playlist_artist": "Lesley Gore", + "playlist_title": "You Don't Own Me", + "found_song": { + "artist": "Lesley Gore", + "disabled": false, + "favorite": false, + "guid": "c641afd1-d47f-e41b-6841-1e36744e4b11", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Don t Own Me - Lesley Gore.mp4", + "title": "You Don t Own Me" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Marty Robbins", + "playlist_title": "Begging To You", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "6c56c681-27de-627e-8b46-b674cf054345", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Begging To You.mp4", + "title": "Begging To You" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Mary Wells", + "playlist_title": "What's Easy For Two Is So Hard For One", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9aaef371-7e1d-1955-8498-c5131176cc16", + "path": "z://MP4\\KaraokeOnVEVO\\Mary Wells - Whats Easy For Two Is So Hard For One.mp4", + "title": "What's Easy For Two Is So Hard For One" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The Caravelles", + "playlist_title": "You Don't Have To Be A Baby To Cry", + "found_song": { + "artist": "Caravelles", + "disabled": false, + "favorite": false, + "guid": "deaafc64-34be-1e63-9615-2c12cb836ee9", + "path": "z://MP4\\KaraokeOnVEVO\\Caravelles - You Don't Have To Be A Baby To Cry (Karaoke).mp4", + "title": "You Don't Have To Be A Baby To Cry" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 16, + "playlist_artist": "Dale & Grace", + "playlist_title": "I'm Leaving It Up To You", + "found_song": { + "artist": "Dale & Grace", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cbea1ee0-0192-179c-7b56-7a083ca3fe2f", + "path": "z://MP4\\KaraokeOnVEVO\\Dale & Grace - Im Leaving It Up To You.mp4", + "title": "I'm Leaving It Up To You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 33, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Bad Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "similarity": 0.86, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 63, + "playlist_artist": "The Ronettes", + "playlist_title": "Baby, I Love You", + "found_song": { + "artist": "The Ramones", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1c750c78-ad93-5ac2-4880-84831274b4a8", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Ramones - Baby I Love You.mp4", + "title": "Baby I Love You" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Singing Nun (Soeur Sourire)", + "title": "Dominique", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Dion Di Muci", + "title": "Drip Drop", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "The Murmaids", + "title": "Popsicles And Icicles", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Johnny Tillotson", + "title": "Talk Back Trembling Lips", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Joey Powers", + "title": "Midnight Mary", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Martha & The Vandellas", + "title": "Quicksand", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Shirley Ellis", + "title": "The Nitty Gritty", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Chubby Checker", + "title": "Loddy Lo", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Tommy Roe", + "title": "Everybody", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Secrets", + "title": "The Boy Next Door", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Duprees featuring Joey Vann", + "title": "Have You Heard", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Jan & Dean", + "title": "Drag City", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Trini Lopez", + "title": "Kansas City", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Robin Ward", + "title": "Wonderful Summer", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Lesley Gore", + "title": "She's A Fool", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Dick and DeeDee", + "title": "Turn Around", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Garnet Mimms & The Enchanters", + "title": "For Your Precious Love", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ray Charles", + "title": "That Lucky Old Sun", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sam Cooke", + "title": "Little Red Rooster", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Peter, Paul & Mary", + "title": "Stewball", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Garnet Mimms & The Enchanters", + "title": "Baby Don't You Weep", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Nino Tempo & April Stevens", + "title": "Whispering", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The Marketts", + "title": "Out Of Limits", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Jerry Butler", + "title": "Need To Belong", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "The Supremes", + "title": "When The Lovelight Starts Shining Through His Eyes", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "The Chiffons", + "title": "I Have A Boyfriend", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Tymes", + "title": "Somewhere", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Al Martino", + "title": "Living A Lie", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Gene Pitney", + "title": "Twenty Four Hours From Tulsa", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Miracles", + "title": "I Gotta Dance To Keep From Crying", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Rip Chords", + "title": "Hey Little Cobra", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Sugar Shack", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Dean And Jean", + "title": "Tra La La La Suzy", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Sunny & The Sunliners", + "title": "Rags To Riches", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Cookies", + "title": "Girls Grow Up Faster Than Boys", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Jimmy Gilmer And The Fireballs", + "title": "Daisy Petal Pickin'", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Murry Kellum", + "title": "Long Tall Texan", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "The Dynamics", + "title": "Misery", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Chubby Checker", + "title": "Hooka Tooka", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Chad Mitchell Trio", + "title": "The Marvelous Toy", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "Little Peggy March", + "title": "The Impossible Happened", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Marvelettes", + "title": "As Long As I Know He's Mine", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Rick Nelson", + "title": "Today's Teardrops", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Cliff Richard", + "title": "It's All In The Game", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Rick Nelson", + "title": "For You", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Kingston Trio", + "title": "Ally Ally Oxen Free", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Dionne Warwick", + "title": "Anyone Who Had A Heart", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Henry Mancini And His Orchestra", + "title": "Charade", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Bobby Darin", + "title": "Be Mad Little Girl", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Steve & Eydie", + "title": "I Can't Stop Talking About You", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "The Raindrops", + "title": "That Boy John", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The David Rockingham Trio", + "title": "Dawn", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Ginny Arnell", + "title": "Dumb Head", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Orlons", + "title": "Bon-Doo-Wah", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Baja Marimba Band", + "title": "Comin' In The Back Door", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "The Tams", + "title": "What Kind Of Fool (Do You Think I Am)", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Jay & The Americans", + "title": "Come Dance With Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Brooks O'Dell", + "title": "Watch Your Step", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Burl Ives", + "title": "True Love Goes On And On", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Frank Ifield", + "title": "Please", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Tony Bennett", + "title": "The Little Boy", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jimmy Velvet", + "title": "We Belong Together", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Dale Ward", + "title": "Letter From Sherry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Girlfriends", + "title": "My One And Only, Jimmy Boy", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Connie Francis", + "title": "In The Summer Of His Years", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Paul Petersen", + "title": "The Cheer Leader", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Gene Thomas", + "title": "Baby's Gone", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Pixies Three", + "title": "Cold Cold Winter", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Brothers Four", + "title": "Hootenanny Saturday Night", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Johnny Mathis", + "title": "I'll Search My Heart", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Sammy Davis Jr.", + "title": "The Shelter Of Your Arms", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Paul Anka", + "title": "Did You Have A Happy Birthday?", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Tracey Dey", + "title": "Here Comes The Boy", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Bob And Earl", + "title": "Harlem Shuffle", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Crescents Featuring Chiyo", + "title": "Pink Dominos", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Barbara Lewis", + "title": "Snap Your Fingers", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Bobby Bland", + "title": "The Feeling Is Gone", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Cascades", + "title": "For Your Sweet Love", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Bobby Vee", + "title": "Never Love A Robin", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Lettermen", + "title": "Where Or When", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 16, + "fuzzy_match_count": 4, + "missing_count": 80, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1962 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "Chubby Checker", + "playlist_title": "Limbo Rock", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "657961a3-8890-dcd6-da75-1eac2de7d439", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Limbo Rock - Chubby Checker.mp4", + "title": "Limbo Rock" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marcie Blane", + "playlist_title": "Bobby's Girl", + "found_song": { + "artist": "Marcie Blane", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b6044754-541e-4eba-78c2-7a1bf6a3ccee", + "path": "z://MP4\\KaraokeOnVEVO\\Marcie Blane - Bobbys Girl.mp4", + "title": "Bobby's Girl" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "Steve Lawrence", + "playlist_title": "Go Away Little Girl", + "found_song": { + "artist": "Steve Lawrence", + "disabled": false, + "favorite": false, + "guid": "82e4d18f-2c68-7ac3-0a11-3410ed42c8dc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Go Away Little Girl - Steve Lawrence.mp4", + "title": "Go Away Little Girl" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Ray Charles", + "playlist_title": "You Are My Sunshine", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "8650b55d-743d-d12b-2b88-0446f2856bb8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke You Are My Sunshine - Ray Charles.mp4", + "title": "You Are My Sunshine" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "The Exciters", + "playlist_title": "Tell Him", + "found_song": { + "artist": "The Exciters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2ecd6b3e-d256-bafd-3bec-004b9301413e", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Exciters - Tell Him.mp4", + "title": "Tell Him" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Cookies", + "playlist_title": "Chains", + "found_song": { + "artist": "The Cookies", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c17998c4-e117-fd12-fdca-8e3c14dafb28", + "path": "z://MP4\\KaraokeOnVEVO\\The Cookies - Chains.mp4", + "title": "Chains" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Mary Wells", + "playlist_title": "Two Lovers", + "found_song": { + "artist": "Mary Wells", + "disabled": false, + "favorite": false, + "guid": "e8bcba41-605b-2648-d8da-1b277d355d93", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Two Lovers - Mary Wells.mp4", + "title": "Two Lovers" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Bobby Vee", + "playlist_title": "The Night Has A Thousand Eyes", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "521661ca-bdc2-692c-61c5-f41c66b2c6fd", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - The Night Has A Thousand Eyes.mp4", + "title": "The Night Has A Thousand Eyes" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Marty Robbins", + "playlist_title": "Ruby Ann", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "23188b79-c8f4-57cc-b01e-afca7a1f05d9", + "path": "z://MP4\\KaraokeOnVEVO\\Marty Robbins - Ruby Ann.mp4", + "title": "Ruby Ann" + }, + "match_type": "exact" + }, + { + "position": 30, + "playlist_artist": "Rick Nelson", + "playlist_title": "It's Up To You", + "found_song": { + "artist": "Rick Nelson", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "78672fc2-20f4-0f6e-ca18-6c9ace8ef844", + "path": "z://MP4\\KaraokeOnVEVO\\Rick Nelson - Its Up To You.mp4", + "title": "It's Up To You" + }, + "match_type": "exact" + }, + { + "position": 38, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Gene Pitney", + "playlist_title": "Half Heaven - Half Heartache", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ed7fe23c-a82b-e193-ea72-8bef9f6b53bb", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Half Heaven Half Heartache.mp4", + "title": "Half Heaven Half Heartache" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "Ray Stevens", + "playlist_title": "Santa Claus Is Watching You", + "found_song": { + "artist": "Ray Stevens", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "0e8efe24-fb9e-4e06-1e78-c4f46a451fbf", + "path": "z://MP4\\KaraokeOnVEVO\\Ray Stevens - Santa Claus Is Watching You.mp4", + "title": "Santa Claus Is Watching You" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "The Crystals", + "playlist_title": "He's A Rebel", + "found_song": { + "artist": "The Crystals", + "disabled": false, + "favorite": false, + "guid": "f70290e3-6f18-f25d-c838-a5886d49debc", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke He s A Rebel - The Crystals.mp4", + "title": "He s A Rebel" + }, + "match_type": "exact" + }, + { + "position": 56, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Brenda Lee", + "playlist_title": "All Alone Am I", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "13f5d8e0-712e-cff1-7e17-05a95df2b373", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Alone Am I - Brenda Lee.mp4", + "title": "All Alone Am I" + }, + "match_type": "exact" + }, + { + "position": 59, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 63, + "playlist_artist": "Tony Bennett", + "playlist_title": "I Left My Heart In San Francisco", + "found_song": { + "artist": "Tony Bennett", + "disabled": false, + "favorite": false, + "guid": "b32c5778-a063-f85d-b585-d3be7e76e3c9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke I Left My Heart In San Francisco - Tony Bennett.mp4", + "title": "I Left My Heart In San Francisco" + }, + "match_type": "exact" + }, + { + "position": 65, + "playlist_artist": "Nat King Cole", + "playlist_title": "The Christmas Song (Merry Christmas To You)", + "found_song": { + "artist": "Nat King Cole", + "disabled": false, + "favorite": false, + "guid": "41514f10-e87c-0df9-4584-7f2add6750aa", + "path": "z://MP4\\Sing King Karaoke\\Nat King Cole - The Christmas Song (Merry Christmas To You) (Karaoke Version).mp4", + "title": "The Christmas Song (Merry Christmas To You)" + }, + "match_type": "exact" + }, + { + "position": 69, + "playlist_artist": "The Miracles", + "playlist_title": "You've Really Got A Hold On Me", + "found_song": { + "artist": "The Miracles", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "cb557a16-ff82-f35d-85d6-96013b86c6db", + "path": "z://MP4\\KaraokeOnVEVO\\The Miracles - Youve Really Got A Hold On Me.mp4", + "title": "You've Really Got A Hold On Me" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Frank Ifield", + "playlist_title": "Lovesick Blues", + "found_song": { + "artist": "Frank Ifield", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "65580409-9508-6bc0-bc3e-78a707fe06dc", + "path": "z://MP4\\ZoomKaraokeOfficial\\Frank Ifield - Lovesick Blues.mp4", + "title": "Lovesick Blues" + }, + "match_type": "exact" + }, + { + "position": 81, + "playlist_artist": "Del Shannon", + "playlist_title": "Little Town Flirt", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fac3e7b6-a410-5d7e-e227-d4e4474dd4e8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Del Shannon - Little Town Flirt.mp4", + "title": "Little Town Flirt" + }, + "match_type": "exact" + }, + { + "position": 83, + "playlist_artist": "Ned Miller", + "playlist_title": "From A Jack To A King", + "found_song": { + "artist": "Ned Miller", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "05a86699-1ff2-e25b-c06c-2f1dbe83271b", + "path": "z://MP4\\ZoomKaraokeOfficial\\Ned Miller - From A Jack To A King.mp4", + "title": "From A Jack To A King" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 5, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Big Girls Don't Cry", + "found_song": { + "artist": "Frankie Valli & The Four Seasons", + "disabled": false, + "favorite": false, + "guid": "914719d3-56bd-8ffe-7d81-dd95ad11bb20", + "path": "z://CDG\\Sunfly Collection\\Sunfly Gold\\SFGD040 - Dirty Dancing\\Frankie Valli & The Four Seasons - Big Girls Don't Cry - SFG040 - 15.mp3", + "title": "Big Girls Don't Cry" + }, + "similarity": 0.93, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "The 4 Seasons", + "playlist_title": "Santa Claus Is Coming To Town", + "found_song": { + "artist": "The Jackson 5", + "disabled": false, + "favorite": false, + "guid": "10de1d9a-376d-ba56-c407-243c81db0ebf", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Santa Claus Is Coming To Town - The Jackson 5.mp4", + "title": "Santa Claus Is Coming To Town" + }, + "similarity": 0.89, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 29, + "playlist_artist": "The Drifters", + "playlist_title": "Up On The Roof", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "b178f3f4-66c4-362e-cf1f-36d0199bab00", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Up On The Roof - The Drifters.mp4", + "title": "Up On The Roof" + }, + "similarity": 0.91, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 32, + "playlist_artist": "Ray Charles", + "playlist_title": "Your Cheating Heart", + "found_song": { + "artist": "Ray Charles", + "disabled": false, + "favorite": false, + "guid": "60dfc044-0123-e267-5fee-5668b1706c64", + "path": "z://CDG\\Various\\Ray Charles - Your Cheatin' Heart.mp3", + "title": "Your Cheatin' Heart" + }, + "similarity": 0.97, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 40, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 85, + "playlist_artist": "Bobby Goldsboro", + "playlist_title": "Molly", + "found_song": { + "artist": "Bobby Goldsboro", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "f34dfa24-e736-8fa2-52d2-113d87c8c451", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Goldsboro - Honey.mp4", + "title": "Honey" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Tornadoes", + "title": "Telstar", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Elvis Presley With The Jordanaires", + "title": "Return To Sender", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Esther Phillips Little Esther", + "title": "Release Me", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Bob B. Soxx And The Blue Jeans", + "title": "Zip-A-Dee Doo-Dah", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Brook Benton", + "title": "Hotel Happiness", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Lou Monte", + "title": "Pepino The Italian Mouse", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Little Eva", + "title": "Keep Your Hands Off My Baby", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Nat King Cole", + "title": "Dear Lonely Hearts", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "The Tijuana Brass", + "title": "The Lonely Bull (El Solo Torro)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "The Orlons", + "title": "Don't Hang Up", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Dion", + "title": "Love Came To Me", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Paul Petersen", + "title": "My Dad", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Les Cooper and the Soul Rockers", + "title": "Wiggle Wobble", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Dee Dee Sharp", + "title": "Ride!", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Johnny Crawford", + "title": "Rumors", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "The Shirelles", + "title": "Everybody Loves A Lover", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Bobby Boris Pickett And The Crypt-Kickers", + "title": "Monsters' Holiday", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Duane Eddy and the Rebelettes", + "title": "(Dance With The) Guitar Man", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Jerry Wallace", + "title": "Shutters And Boards", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Routers", + "title": "Let's Go (pony)", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Mel Torme", + "title": "Comin' Home Baby", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Stan Getz/Charlie Byrd", + "title": "Desafinado", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Dickey Lee", + "title": "I Saw Linda Yesterday", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Mark Valentino", + "title": "The Push And Kick", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Bobby Vinton", + "title": "Let's Kiss And Make Up", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "LaVern Baker", + "title": "See See Rider", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Dionne Warwick", + "title": "Don't Make Me Over", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Gene McDaniels", + "title": "Spanish Lace", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Bobby Vinton", + "title": "Trouble Is My Middle Name", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "The Beach Boys", + "title": "Ten Little Indians", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "Connie Francis", + "title": "I'm Gonna' Be Warm This Winter", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Chris Montez", + "title": "Some Kinda Fun", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Timi Yuro", + "title": "The Love Of A Boy", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Gene Chandler", + "title": "You Threw A Lucky Punch", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Excellents", + "title": "Coney Island Baby", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "The Earls", + "title": "Remember Then", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Gabriel And The Angels", + "title": "That's Life (That's Tough)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Johnny Thunder", + "title": "Loop De Loop", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Jimmie Rodgers", + "title": "Rainbow At Midnight", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Frank Sinatra & Sammy Davis Jr.", + "title": "Me And My Shadow", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Ben Colder", + "title": "Don't Go Near The Eskimos", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Kitty Kallen", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Lester Flatt, Earl Scruggs & The Foggy Mountain Boys", + "title": "The Ballad Of Jed Clampett", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Brian Hyland", + "title": "I May Not Live To See Tomorrow", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Contours", + "title": "Shake Sherry", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Marvelettes", + "title": "Strange I Know", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Lonnie Russ", + "title": "My Wife Can't Cook", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Vince Guaraldi Trio", + "title": "Cast Your Fate To The Wind", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Barbara Lynn", + "title": "You're Gonna Need Me", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Jimmy Dean", + "title": "Gonna Raise A Rukus Tonight", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Pastel Six", + "title": "The Cinnamon Cinder (It's A Very Nice Dance)", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Sandy Stewart", + "title": "My Coloring Book", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Emotions", + "title": "Echo", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "The Rebels", + "title": "Wild Weekend", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Floyd Cramer", + "title": "Java", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Rick Nelson", + "title": "I Need You", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Aretha Franklin", + "title": "Trouble In Mind", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Toy Dolls", + "title": "Little Tin Soldier", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Marion Worth", + "title": "Shake Me I Rattle (Squeeze Me I Cry)", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Joe Harnell And His Orchestra", + "title": "Fly Me To The Moon - Bossa Nova", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "The Ventures", + "title": "The 2,000 Pound Bee (Part 2)", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "The Crystals", + "title": "He's Sure The Boy I Love", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Dean Martin & Sammy Davis Jr.", + "title": "Sam's Song", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Cleftones", + "title": "Lover Come Back To Me", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Paul and Paula", + "title": "Hey Paula", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "The Dells", + "title": "The (Bossa Nova) Bird", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Mike Clifford", + "title": "What To Do With Laurie", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Mahalia Jackson", + "title": "Silent Night, Holy Night", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Don Covay", + "title": "The Popeye Waddle", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 23, + "fuzzy_match_count": 6, + "missing_count": 71, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1961 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "The Tokens", + "playlist_title": "The Lion Sleeps Tonight", + "found_song": { + "artist": "The Tokens", + "disabled": false, + "favorite": false, + "guid": "cc03a869-4f7e-5abf-d0f2-bc70338d6354", + "path": "z://MP4\\Stingray Karaoke\\The Lion Sleeps Tonight The Tokens Karaoke with Lyrics.mp4", + "title": "The Lion Sleeps Tonight" + }, + "match_type": "exact" + }, + { + "position": 2, + "playlist_artist": "Bobby Vee", + "playlist_title": "Run To Him", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "guid": "e3a468a8-e579-aa6d-f499-a638b46e9012", + "path": "z://MP4\\TheKARAOKEChannel\\Run To Him in the style of Bobby Vee.mp4", + "title": "Run To Him" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Chubby Checker", + "playlist_title": "The Twist", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "52c72379-1c4d-fb1b-a1f9-b1ad9440b0ef", + "path": "z://MP4\\KaraokeOnVEVO\\Chubby Checker - The Twist.mp4", + "title": "The Twist" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Leroy Van Dyke", + "playlist_title": "Walk On By", + "found_song": { + "artist": "Leroy Van Dyke", + "disabled": false, + "favorite": false, + "guid": "894f761a-62b4-de27-4b19-46cc1cff4510", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Walk On By - Leroy Van Dyke.mp4", + "title": "Walk On By" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "The Marvelettes", + "playlist_title": "Please Mr. Postman", + "found_song": { + "artist": "The Marvelettes", + "disabled": false, + "favorite": false, + "guid": "2776a90a-d6e3-40c3-9fa4-6002e9a80329", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Please Mr. Postman - The Marvelettes.mp4", + "title": "Please Mr. Postman" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Happy Birthday, Sweet Sixteen", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "guid": "05f069f1-a2fc-aaf1-8a41-57de3d6db3ee", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Happy Birthday, Sweet Sixteen - Neil Sedaka.mp4", + "title": "Happy Birthday, Sweet Sixteen" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jimmy Dean", + "playlist_title": "Big Bad John", + "found_song": { + "artist": "Jimmy Dean", + "disabled": false, + "favorite": false, + "guid": "7decab9d-aa5c-5971-043d-b234bb14f92e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Big Bad John - Jimmy Dean.mp4", + "title": "Big Bad John" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Chubby Checker", + "playlist_title": "Let's Twist Again", + "found_song": { + "artist": "Chubby Checker", + "disabled": false, + "favorite": false, + "guid": "61f63cee-edfb-99bb-5ea7-de27c6933686", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Let s Twist Again - Chubby Checker.mp4", + "title": "Let s Twist Again" + }, + "match_type": "exact" + }, + { + "position": 31, + "playlist_artist": "Jimmy Elledge", + "playlist_title": "Funny How Time Slips Away", + "found_song": { + "artist": "Jimmy Elledge", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "465a791f-cfef-740b-6f13-05879cb92d06", + "path": "z://MP4\\KaraokeOnVEVO\\Jimmy Elledge - Funny How Time Slips Away.mp4", + "title": "Funny How Time Slips Away" + }, + "match_type": "exact" + }, + { + "position": 35, + "playlist_artist": "Fats Domino", + "playlist_title": "Jambalaya (On The Bayou)", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "d2a40204-8be6-b983-f9cd-cb7cf7b74014", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Jambalaya (On The Bayou) - Fats Domino.mp4", + "title": "Jambalaya (On The Bayou)" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Gene Pitney", + "playlist_title": "Town Without Pity", + "found_song": { + "artist": "Gene Pitney", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "01295299-513c-1c51-7ec4-efae7d1c1356", + "path": "z://MP4\\ZoomKaraokeOfficial\\Gene Pitney - Town Without Pity.mp4", + "title": "Town Without Pity" + }, + "match_type": "exact" + }, + { + "position": 37, + "playlist_artist": "The Highwaymen", + "playlist_title": "Cotton Fields", + "found_song": { + "artist": "The Highwaymen", + "disabled": false, + "favorite": false, + "guid": "348861de-05d5-679e-3719-c17004ff3e7a", + "path": "z://MP4\\KaraokeOnVEVO\\The Highwaymen - Cotton Fields (Karaoke).mp4", + "title": "Cotton Fields" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Dion", + "playlist_title": "The Wanderer", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "232ce56c-596e-99ea-9f01-26c9017b819e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Wanderer - Dion.mp4", + "title": "The Wanderer" + }, + "match_type": "exact" + }, + { + "position": 44, + "playlist_artist": "Del Shannon", + "playlist_title": "Hey! Little Girl", + "found_song": { + "artist": "Del Shannon", + "disabled": false, + "favorite": false, + "guid": "e0029bec-1e5d-5a4b-702c-316afb9d0c06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF069\\Del Shannon - Hey Little Girl - SF069 - 10.mp3", + "title": "Hey Little Girl" + }, + "match_type": "exact" + }, + { + "position": 45, + "playlist_artist": "The Shirelles", + "playlist_title": "Baby It's You", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "8e3a794d-b0cb-0897-8348-88b0e4454fd8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Baby It s You - The Shirelles.mp4", + "title": "Baby It s You" + }, + "match_type": "exact" + }, + { + "position": 49, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 52, + "playlist_artist": "Burl Ives", + "playlist_title": "A Little Bitty Tear", + "found_song": { + "artist": "Burl Ives", + "disabled": false, + "favorite": false, + "guid": "1cb277fc-d28e-b031-6077-4ad0fe470a6f", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke A Little Bitty Tear - Burl Ives.mp4", + "title": "A Little Bitty Tear" + }, + "match_type": "exact" + }, + { + "position": 55, + "playlist_artist": "Dion", + "playlist_title": "Runaround Sue", + "found_song": { + "artist": "Dion", + "disabled": false, + "favorite": false, + "guid": "ff4a2c79-c0ec-bb68-bc59-35343cebb706", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Runaround Sue - Dion.mp4", + "title": "Runaround Sue" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Patsy Cline", + "playlist_title": "Crazy", + "found_song": { + "artist": "Patsy Cline", + "disabled": false, + "favorite": false, + "guid": "d1ed16cb-a6bc-cc77-8c0b-8f3d61408a90", + "path": "z://MP4\\Sing King Karaoke\\Patsy Cline - Crazy (Karaoke Version).mp4", + "title": "Crazy" + }, + "match_type": "exact" + }, + { + "position": 58, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 74, + "playlist_artist": "Bobby Vee", + "playlist_title": "Walkin' With My Angel", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2faf26df-6ba2-a09a-a8c6-c2c87708eaf8", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Walkin With My Angel.mp4", + "title": "Walkin' With My Angel" + }, + "match_type": "exact" + }, + { + "position": 77, + "playlist_artist": "The Dovells", + "playlist_title": "Bristol Stomp", + "found_song": { + "artist": "The Dovells", + "disabled": false, + "favorite": false, + "guid": "182de878-47e9-c6fc-02ed-95a216f302f9", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Bristol Stomp - The Dovells.mp4", + "title": "Bristol Stomp" + }, + "match_type": "exact" + }, + { + "position": 85, + "playlist_artist": "Charles Brown", + "playlist_title": "Please Come Home For Christmas", + "found_song": { + "artist": "Charles Brown", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "4739858d-abd9-2b2d-ac02-5fa39f906794", + "path": "z://MP4\\KaraokeOnVEVO\\Charles Brown - Please Come Home For Christmas.mp4", + "title": "Please Come Home For Christmas" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 6, + "playlist_artist": "Joey Dee & the Starliters", + "playlist_title": "Peppermint Twist - Part I", + "found_song": { + "artist": "Joey Dee & the Starliters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "13c6e91f-ce32-743d-7bc0-f7252af8f32d", + "path": "z://MP4\\KaraokeOnVEVO\\Joey Dee & the Starliters - Peppermint Twist Part I.mp4", + "title": "Peppermint Twist - Part I" + }, + "similarity": 0.88, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 39, + "playlist_artist": "James Ray", + "playlist_title": "If You Gotta Make A Fool Of Somebody", + "found_song": { + "artist": "Freddie & The Dreamers", + "disabled": false, + "favorite": false, + "guid": "57293928-d64b-47d8-cb45-99cecec2544d", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF038\\Freddie & The Dreamers - If You Gotta Make A Fool Of Somebody - SF038 - 12.mp3", + "title": "If You Gotta Make A Fool Of Somebody" + }, + "similarity": 0.87, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 47, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 83, + "playlist_artist": "Bobby Darin", + "playlist_title": "Multiplication", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "de39442d-fbcc-ff65-b2e9-40c563734e06", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF074\\Bobby Darin - Multiplacation - SF074 - 09.mp3", + "title": "Multiplacation" + }, + "similarity": 0.96, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 4, + "artist": "James Darren", + "title": "Goodbye Cruel World", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Sandy Nelson", + "title": "Let There Be Drums", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Elvis Presley With The Jordanaires", + "title": "Can't Help Falling In Love", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Henry Mancini And His Orchestra", + "title": "Moon River", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Linda Scott", + "title": "I Don't Know Why", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "The Lettermen", + "title": "When I Fall In Love", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Ray Charles and his Orchestra", + "title": "Unchain My Heart", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Connie Francis", + "title": "When The Boy In Your Arms (Is The Boy In Your Heart)", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Jerry Butler", + "title": "Moon River", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "The Angels", + "title": "'Til", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Ferrante & Teicher", + "title": "Tonight", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "The Impressions", + "title": "Gypsy Woman", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Brook Benton", + "title": "Revenge", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Crystals", + "title": "There's No Other (Like My Baby)", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Kenny Dino", + "title": "Your Ma Said You Cried In Your Sleep Last Night", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Elvis Presley With The Jordanaires", + "title": "Rock-A-Hula Baby", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Barbara George", + "title": "I Know (You Don't Love Me No More)", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Bobby Rydell/Chubby Checker", + "title": "Jingle Bell Rock", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Brenda Lee", + "title": "Fool #1", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Solomon Burke", + "title": "Just Out Of Reach (Of My Two Open Arms)", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "The Chantels", + "title": "Well, I Told You", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Phil McLean", + "title": "Small Sad Sam", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "The G-Clefs", + "title": "I Understand (Just How You Feel)", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Pat Boone", + "title": "Johnny Will", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "The Highwaymen", + "title": "The Gypsy Rover", + "reason": "No matches found" + }, + { + "position": 43, + "artist": "Connie Francis", + "title": "Baby's First Christmas", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Ike & Tina Turner", + "title": "Poor Fool", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Vic Dana", + "title": "Little Altar Boy", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Gary U.S. Bonds", + "title": "Dear Lady Twist", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Sims Twins", + "title": "Soothe Me", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Dion", + "title": "The Majestic", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Dinah Washington", + "title": "September In The Rain", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "John D. Loudermilk", + "title": "Language Of Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Sue Thompson", + "title": "Norman", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Bobby Bland", + "title": "Turn On Your Love Light", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Glen Campbell", + "title": "Turn Around, Look At Me", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Bobby Darin", + "title": "Irresistible You", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Frank Sinatra", + "title": "Pocketful Of Miracles", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Bill Black's Combo", + "title": "Twist-Her", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Lee Dorsey", + "title": "Do-Re-Mi", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Si Zentner And His Orchestra", + "title": "Up A Lazy River", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Roger Williams", + "title": "Maria", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Frank Slay And His Orchestra", + "title": "Flying Circle", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Gladys Knight And The Pips", + "title": "Letter Full Of Tears", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Linda Scott", + "title": "It's All Because", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "The Drifters", + "title": "Room Full Of Tears", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Johnny Tillotson", + "title": "Dreamy Eyes", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Jimmy McCracklin", + "title": "Just Got To Know", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Ral Donner", + "title": "She's Everything (I Wanted You To Be)", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Showmen", + "title": "It Will Stand", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Marcels", + "title": "Heartaches", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Gene McDaniels", + "title": "Tower Of Strength", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Chubby Checker", + "title": "Twistin' U.S.A.", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "The Dave Brubeck Quartet", + "title": "Unsquare Dance", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "David Seville And The Chipmunks", + "title": "Alvin's Harmonica", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Dick Dale and The Del-Tones", + "title": "Let's Go Trippin'", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Anthony Newley", + "title": "Pop Goes The Weasel", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Danny Peppermint and the Jumping Jacks", + "title": "The Peppermint Twist", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Ray Peterson", + "title": "I Could Have Loved You So Well", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "James Brown And The Famous Flames", + "title": "Lost Someone", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Patti Page", + "title": "Go On Home", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Ace Cannon", + "title": "Tuff", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Sleepy King", + "title": "Pushin' Your Luck", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Marty Robbins", + "title": "I Told The Brook", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "The Corsairs Featuring Jay Bird Uzzell", + "title": "Smoky Places", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Troy Shondell", + "title": "Tears From An Angel", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Johnny Preston", + "title": "Free Me", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The Belmonts", + "title": "I Need Some One", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Dickie Goodman", + "title": "Santa & The Touchables", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Jimmie Beaumont", + "title": "Ev'rybody's Cryin'", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 24, + "fuzzy_match_count": 4, + "missing_count": 72, + "needs_manual_review": 4 + } + }, + { + "playlist_title": "1960 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 6, + "playlist_artist": "Johnny Horton", + "playlist_title": "North To Alaska", + "found_song": { + "artist": "Johnny Horton", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "14973725-80aa-7bf8-af95-e9ca550ed150", + "path": "z://MP4\\KaraokeOnVEVO\\Johnny Horton - North To Alaska.mp4", + "title": "North To Alaska" + }, + "match_type": "exact" + }, + { + "position": 8, + "playlist_artist": "Johnny Burnette", + "playlist_title": "You're Sixteen", + "found_song": { + "artist": "Johnny Burnette", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "c42194ae-3a80-9aa8-f21a-d9f23327352c", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Burnette - Youre Sixteen.mp4", + "title": "You're Sixteen" + }, + "match_type": "exact" + }, + { + "position": 14, + "playlist_artist": "Brenda Lee", + "playlist_title": "Rockin' Around The Christmas Tree", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "d1293527-6a46-7cdb-2c59-ffeb42abc2b1", + "path": "z://MP4\\Sing King Karaoke\\Brenda Lee - Rockin Around The Christmas Tree (Karaoke Version).mp4", + "title": "Rockin Around The Christmas Tree" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Bobby Vee", + "playlist_title": "Rubber Ball", + "found_song": { + "artist": "Bobby Vee", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b97bc15a-9ed8-26d4-53da-b49382005bc9", + "path": "z://MP4\\ZoomKaraokeOfficial\\Bobby Vee - Rubber Ball.mp4", + "title": "Rubber Ball" + }, + "match_type": "exact" + }, + { + "position": 18, + "playlist_artist": "Johnny Tillotson", + "playlist_title": "Poetry In Motion", + "found_song": { + "artist": "Johnny Tillotson", + "disabled": false, + "favorite": false, + "guid": "41e702d7-2196-9d23-ab98-b72e0548d84a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Poetry In Motion - Johnny Tillotson.mp4", + "title": "Poetry In Motion" + }, + "match_type": "exact" + }, + { + "position": 20, + "playlist_artist": "The Shirelles", + "playlist_title": "Will You Love Me Tomorrow", + "found_song": { + "artist": "The Shirelles", + "disabled": false, + "favorite": false, + "guid": "67016874-ff96-ff33-28c6-1038cfa94122", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Will You Love Me Tomorrow - The Shirelles.mp4", + "title": "Will You Love Me Tomorrow" + }, + "match_type": "exact" + }, + { + "position": 26, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 36, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Jim Reeves", + "playlist_title": "Am I Losing You", + "found_song": { + "artist": "Jim Reeves", + "disabled": false, + "favorite": false, + "guid": "511753e9-6ce3-6182-0d59-23daba8e2684", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Am I Losing You - Jim Reeves.mp4", + "title": "Am I Losing You" + }, + "match_type": "exact" + }, + { + "position": 51, + "playlist_artist": "Roy Orbison", + "playlist_title": "I'm Hurtin'", + "found_song": { + "artist": "Roy Orbison", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8d29afa3-b600-3393-3ae8-0a5668552a16", + "path": "z://MP4\\ZoomKaraokeOfficial\\Roy Orbison - Im Hurtin.mp4", + "title": "I'm Hurtin'" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Calendar Girl", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "9fc1276d-372c-ba86-2895-fd0c4abdc099", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - Calendar Girl.mp4", + "title": "Calendar Girl" + }, + "match_type": "exact" + }, + { + "position": 68, + "playlist_artist": "Skeeter Davis", + "playlist_title": "My Last Date (With You)", + "found_song": { + "artist": "Skeeter Davis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2264ce7c-78ec-4b14-2a93-c0f5975aad94", + "path": "z://MP4\\KaraokeOnVEVO\\Skeeter Davis - My Last Date (With You.mp4", + "title": "My Last Date (With You)" + }, + "match_type": "exact" + }, + { + "position": 97, + "playlist_artist": "Perry Como", + "playlist_title": "Make Someone Happy", + "found_song": { + "artist": "Perry Como", + "disabled": false, + "favorite": false, + "guid": "10bac1c5-caee-8793-28ea-e9e17a360892", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Make Someone Happy - Perry Como.mp4", + "title": "Make Someone Happy" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 4, + "playlist_artist": "Kathy Young with The Innocents", + "playlist_title": "A Thousand Stars", + "found_song": { + "artist": "Kathy Young With The Innocents", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "92a17c52-3a99-e41b-3592-9f49291218ef", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 876\\Kathy Young With The Innocents - Thousand Stars - SFMW 876 -10.mp3", + "title": "Thousand Stars" + }, + "similarity": 0.98, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 10, + "playlist_artist": "Ray Peterson", + "playlist_title": "Corinna, Corinna", + "found_song": { + "artist": "Ray Peterson", + "disabled": false, + "favorite": false, + "guid": "4ae3a3e7-bdc9-067c-df9e-16b8213600f3", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Corrina, Corrina - Ray Peterson.mp4", + "title": "Corrina, Corrina" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 23, + "playlist_artist": "Bobby Rydell", + "playlist_title": "Sway", + "found_song": { + "artist": "Bobbie Rydell", + "disabled": false, + "favorite": false, + "guid": "fba1bae1-96ad-1eb5-a01f-4013e0a01489", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF137\\Bobbie Rydell - Sway - SF137 - 07.mp3", + "title": "Sway" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 44, + "playlist_artist": "The Drifters", + "playlist_title": "Save The Last Dance For Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "guid": "266cd681-d60a-3d21-3de0-70ead8fc34be", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Save The Last Dance For Me - The Drifters.mp4", + "title": "Save The Last Dance For Me" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 60, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 78, + "playlist_artist": "The Blue Diamonds", + "playlist_title": "Ramona", + "found_song": { + "artist": "Blue Diamonds", + "disabled": false, + "favorite": false, + "guid": "acff2317-8b62-91bb-7cf2-373efd6cc0dd", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Ramona - Blue Diamonds.mp4", + "title": "Ramona" + }, + "similarity": 0.92, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "Elvis Presley With The Jordanaires", + "title": "Are You Lonesome To-night?", + "reason": "No matches found" + }, + { + "position": 2, + "artist": "Bert Kaempfert And His Orchestra", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 3, + "artist": "Floyd Cramer", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 5, + "artist": "Ferrante & Teicher", + "title": "Exodus", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "Connie Francis", + "title": "Many Tears Ago", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Lolita", + "title": "Sailor (Your Home Is The Sea)", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Jerry Butler", + "title": "He Will Break Your Heart", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Dion", + "title": "Lonely Teenager", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Rosie And The Originals", + "title": "Angel Baby", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "The Ventures", + "title": "Perfidia", + "reason": "No matches found" + }, + { + "position": 17, + "artist": "Louis Prima", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "U.S. Bonds", + "title": "New Orleans", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "David Seville And The Chipmunks", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Fats Domino", + "title": "My Girl Josephine", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Bill Black's Combo", + "title": "Blue Tango", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Anita Bryant", + "title": "Wonderland By Night", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Jackie Wilson", + "title": "Alone At Last", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Brook Benton", + "title": "Fools Rush In (Where Angels Fear To Tread)", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Maurice Williams & The Zodiacs", + "title": "Stay", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Donnie Brooks", + "title": "Doll House", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Ray Charles", + "title": "Ruby", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "Hank Ballard And The Midnighters", + "title": "Let's Go, Let's Go, Let's Go", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sam Cooke", + "title": "Sad Mood", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Ferlin Husky", + "title": "Wings Of A Dove", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Damita Jo", + "title": "I'll Save The Last Dance For You", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Marty Robbins", + "title": "Ballad Of The Alamo", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Elvis Presley With The Jordanaires", + "title": "I Gotta Know", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Chubby Checker", + "title": "The Hucklebuck", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Lawrence Welk And His Orchestra", + "title": "Last Date", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Lawrence Welk And His Orchestra", + "title": "Calcutta", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "Bing Crosby", + "title": "Adeste Fideles (Oh, Come, All Ye Faithful)", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Frank Sinatra", + "title": "Ol' Mac Donald", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Everly Brothers", + "title": "Like Strangers", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "The Innocents", + "title": "Gee Whiz", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Chimes", + "title": "Once In Awhile", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Frankie Avalon", + "title": "A Perfect Love", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "James Booker", + "title": "Gonzo", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Miracles (featuring Bill Smokey Robinson)", + "title": "Shop Around", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Bing Crosby", + "title": "Silent Night", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "The Drifters", + "title": "I Count The Tears", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "The Olympics", + "title": "Dance By The Light Of The Moon", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bobby Darin", + "title": "Christmas Auld Lang Syne", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "LaVern Baker", + "title": "Bumble Bee", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Santo & Johnny", + "title": "Twistin' Bells", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "The Shells", + "title": "Baby Oh Baby", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Ricky Nelson", + "title": "You Are The Only One", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Jackie Wilson", + "title": "Am I The Man", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Fats Domino", + "title": "Natural Born Lover", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "The Flamingos", + "title": "Your Other Love", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Al Caiola And His Orchestra", + "title": "The Magnificent Seven", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Frankie Avalon", + "title": "The Puppet Song", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Mantovani & His Orch.", + "title": "Main Theme from Exodus (Ari's Theme)", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "The Melodeers", + "title": "Rudolph The Red Nosed Reindeer", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Hank Ballard And The Midnighters", + "title": "The Hoochi Coochi Coo", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "The Ramblers", + "title": "Rambling", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Adam Wade", + "title": "Gloria's Theme", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Johnny Mathis", + "title": "How To Handle A Woman", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "The Browns featuring Jim Edward Brown", + "title": "Send Me The Pillow You Dream On", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Larry Verne", + "title": "Mister Livingston", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "Andy Williams", + "title": "You Don't Want My Love", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Bill Doggett", + "title": "(Let's Do) The Hully Gully Twist", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Little Willie John", + "title": "Walk Slow", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Jerry Murad's Harmonicats", + "title": "Cherry Pink And Apple Blossom White", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Joni James", + "title": "My Last Date (With You)", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Teresa Brewer", + "title": "Have You Ever Been Lonely (Have You Ever Been Blue)", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Jimmy Charles", + "title": "The Age For Love", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Marv Johnson", + "title": "Happy Days", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Frank Gari", + "title": "Utopia", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Pepe", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Buddy Knox", + "title": "Lovey Dovey", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Ike & Tina Turner", + "title": "I Idolize You", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "The Viscounts", + "title": "Wabash Blues", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Annette With The Afterbeats", + "title": "Talk To Me Baby", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Brook Benton", + "title": "Someday You'll Want Me To Want You", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Shelby Flint", + "title": "Angel On My Shoulder", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bobby Darin", + "title": "Child Of God", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Dinah Washington", + "title": "We Have Love", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Jerry Wallace", + "title": "There She Goes", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Jeanne Black", + "title": "Oh, How I Miss You Tonight", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "Etta & Harvey", + "title": "Spoonful", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 13, + "fuzzy_match_count": 6, + "missing_count": 81, + "needs_manual_review": 6 + } + }, + { + "playlist_title": "1959 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 1, + "playlist_artist": "Guy Mitchell", + "playlist_title": "Heartaches By The Number", + "found_song": { + "artist": "Guy Mitchell", + "disabled": false, + "favorite": false, + "guid": "ea1e7a82-aac1-aef4-9655-535df6a2b073", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Heartaches By The Number - Guy Mitchell.mp4", + "title": "Heartaches By The Number" + }, + "match_type": "exact" + }, + { + "position": 3, + "playlist_artist": "Marty Robbins", + "playlist_title": "El Paso", + "found_song": { + "artist": "Marty Robbins", + "disabled": false, + "favorite": false, + "guid": "77a1beea-b3fa-33c9-d152-1cd2039e4dfb", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke El Paso - Marty Robbins.mp4", + "title": "El Paso" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "Freddie Cannon", + "playlist_title": "Way Down Yonder In New Orleans", + "found_song": { + "artist": "Freddie Cannon", + "disabled": false, + "favorite": false, + "guid": "ab8db552-c55d-fb03-189e-b93346d3e71c", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF064\\Freddie Cannon - Way Down Yonder In New Orleans - SF064 - 13.mp3", + "title": "Way Down Yonder In New Orleans" + }, + "match_type": "exact" + }, + { + "position": 7, + "playlist_artist": "Bobby Darin", + "playlist_title": "Mack The Knife", + "found_song": { + "artist": "Bobby Darin", + "disabled": false, + "favorite": false, + "guid": "3477148c-7525-a49c-6c3b-cc2a334409e4", + "path": "z://MP4\\KaraFun Karaoke\\Bobby Darin - Mack The Knife.mp4", + "title": "Mack The Knife" + }, + "match_type": "exact" + }, + { + "position": 16, + "playlist_artist": "Neil Sedaka", + "playlist_title": "Oh! Carol", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "2b7f4c9f-0abf-cde8-0d8f-5e88db3eb62b", + "path": "z://MP4\\VocalStarKaraoke\\Neil Sedaka - Oh Carol.mp4", + "title": "Oh Carol" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "The Fleetwoods", + "playlist_title": "Mr. Blue", + "found_song": { + "artist": "The Fleetwoods", + "disabled": false, + "favorite": false, + "guid": "c3f643c3-d0ca-7b55-b1be-deb7f6bd5db0", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Mr. Blue - The Fleetwoods.mp4", + "title": "Mr. Blue" + }, + "match_type": "exact" + }, + { + "position": 21, + "playlist_artist": "Fats Domino", + "playlist_title": "Be My Guest", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "78bc4d35-46aa-39a4-f4ae-626fceff798a", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Be My Guest - Fats Domino.mp4", + "title": "Be My Guest" + }, + "match_type": "exact" + }, + { + "position": 22, + "playlist_artist": "Johnny Mathis", + "playlist_title": "Misty", + "found_song": { + "artist": "Johnny Mathis", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "8cda023b-cfae-4f5e-e4f4-3a56b7646215", + "path": "z://MP4\\ZoomKaraokeOfficial\\Johnny Mathis - Misty.mp4", + "title": "Misty" + }, + "match_type": "exact" + }, + { + "position": 24, + "playlist_artist": "Johnny Preston", + "playlist_title": "Running Bear", + "found_song": { + "artist": "Johnny Preston", + "disabled": false, + "favorite": false, + "guid": "323fac76-156c-b4f9-cfd3-fcb9417b364e", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Running Bear - Johnny Preston.mp4", + "title": "Running Bear" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Paul Anka", + "playlist_title": "Put Your Head On My Shoulder", + "found_song": { + "artist": "Paul Anka", + "disabled": false, + "favorite": false, + "guid": "89a54a76-fbec-b983-86bc-4b76289bd5dc", + "path": "z://MP4\\KaraFun Karaoke\\Put Your Head On My Shoulder - Paul Anka Karaoke Version KaraFun.mp4", + "title": "Put Your Head On My Shoulder" + }, + "match_type": "exact" + }, + { + "position": 48, + "playlist_artist": "Wink Martindale", + "playlist_title": "Deck Of Cards", + "found_song": { + "artist": "Wink Martindale", + "disabled": false, + "favorite": false, + "guid": "6eabda62-1600-c414-152f-27e12876da97", + "path": "z://CDG\\Sunfly Collection\\Sunfly Hits\\SF131\\Wink Martindale - Deck Of Cards - SF131 - 04.mp3", + "title": "Deck Of Cards" + }, + "match_type": "exact" + }, + { + "position": 90, + "playlist_artist": "Little Anthony And The Imperials", + "playlist_title": "Shimmy, Shimmy, Ko-Ko-Bop", + "found_song": { + "artist": "Little Anthony And The Imperials", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "ecd08f8d-9101-b14c-e2e0-1424a79737f1", + "path": "z://MP4\\KaraokeOnVEVO\\Little Anthony And The Imperials - Shimmy, Shimmy, Ko-Ko-Bop.mp4", + "title": "Shimmy, Shimmy, Ko-Ko-Bop" + }, + "match_type": "exact" + }, + { + "position": 99, + "playlist_artist": "Brenda Lee", + "playlist_title": "Sweet Nothin's", + "found_song": { + "artist": "Brenda Lee", + "disabled": false, + "favorite": false, + "guid": "ae1b2f75-5275-09c9-865c-87c2ac5e72e8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Sweet Nothin s - Brenda Lee.mp4", + "title": "Sweet Nothin s" + }, + "match_type": "exact" + }, + { + "position": 100, + "playlist_artist": "Mark Dinning", + "playlist_title": "Teen Angel", + "found_song": { + "artist": "Mark Dinning", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "aebfadaa-78f0-dbfb-746e-16c459c4c8bf", + "path": "z://MP4\\KaraokeOnVEVO\\Mark Dinning - Teen Angel.mp4", + "title": "Teen Angel" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 33, + "playlist_artist": "The Drifters", + "playlist_title": "Dance With Me", + "found_song": { + "artist": "The Drifters", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "5a8c76fb-a044-d46f-2bbf-b4ba278ba7c5", + "path": "z://MP4\\ZoomKaraokeOfficial\\The Drifters - Dance With Me.mp4", + "title": "Dance With Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 58, + "playlist_artist": "Frank Sinatra", + "playlist_title": "Talk To Me", + "found_song": { + "artist": "Frank Sinatra", + "disabled": false, + "favorite": false, + "guid": "d65b04f2-4a45-4d3b-12e3-2526c4632b67", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke All Of Me - Frank Sinatra.mp4", + "title": "All Of Me" + }, + "similarity": 0.9, + "match_type": "fuzzy", + "needs_manual_review": true + }, + { + "position": 68, + "playlist_artist": "David Seville And The Chipmunks", + "playlist_title": "The Chipmunk Song (Christmas Don't Be Late)", + "found_song": { + "artist": "Alvin and the Chipmunks", + "disabled": false, + "favorite": false, + "guid": "6e597677-7854-5274-fe9f-500950b77833", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke The Chipmunk Song (Christmas Don t Be Late) - Alvin and the Chipmunks.mp4", + "title": "The Chipmunk Song (Christmas Don t Be Late)" + }, + "similarity": 0.85, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 2, + "artist": "Frankie Avalon", + "title": "Why", + "reason": "No matches found" + }, + { + "position": 4, + "artist": "Miss Toni Fisher", + "title": "The Big Hurt", + "reason": "No matches found" + }, + { + "position": 6, + "artist": "Paul Anka", + "title": "It's Time To Cry", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Bobby Rydell", + "title": "We Got Love", + "reason": "No matches found" + }, + { + "position": 9, + "artist": "Connie Francis", + "title": "Among My Souvenirs", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Fabian", + "title": "Hound Dog Man", + "reason": "No matches found" + }, + { + "position": 11, + "artist": "Ernie Fields & Orch.", + "title": "In The Mood", + "reason": "No matches found" + }, + { + "position": 12, + "artist": "Fabian", + "title": "This Friendly World", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Della Reese", + "title": "Don't You Know", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "The Browns", + "title": "Scarlet Ribbons (For Her Hair)", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Brook Benton", + "title": "So Many Ways", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 2", + "reason": "No matches found" + }, + { + "position": 19, + "artist": "Steve Lawrence", + "title": "Pretty Blue Eyes", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Ricky Nelson", + "title": "I Wanna Be Loved", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "Santo & Johnny", + "title": "Tear Drop", + "reason": "No matches found" + }, + { + "position": 25, + "artist": "Marv Johnson", + "title": "You Got What It Takes", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "Lloyd Price and His Orchestra", + "title": "Come Into My Heart", + "reason": "No matches found" + }, + { + "position": 27, + "artist": "Conway Twitty", + "title": "Danny Boy", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Bill Black's Combo", + "title": "Smokie - Part 2", + "reason": "No matches found" + }, + { + "position": 29, + "artist": "Larry Hall", + "title": "Sandy", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "Johnny And The Hurricanes", + "title": "Reveille Rock", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Rocco Granata and the International Quintet", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 32, + "artist": "Annette With The Afterbeats", + "title": "First Name Initial", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Sammy Turner", + "title": "Always", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "Jimmy Clanton", + "title": "Go, Jimmy, Go", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Connie Francis", + "title": "God Bless America", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Bob Beckham", + "title": "Just As Much As Ever", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Ricky Nelson", + "title": "Mighty Good", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "The Drifters", + "title": "(If You Cry) True Love, True Love", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Royal Teens", + "title": "Believe Me", + "reason": "No matches found" + }, + { + "position": 41, + "artist": "Paul Evans and the Curls", + "title": "(Seven Little Girls) Sitting In The Back Seat", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Dinah Washington", + "title": "Unforgettable", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Jackie Wilson", + "title": "Talk That Talk", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "The Nutty Squirrels", + "title": "Uh! Oh! Part 1", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "Willy Alberti", + "title": "Marina", + "reason": "No matches found" + }, + { + "position": 47, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "Tommy Facenda", + "title": "High School U.S.A.", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Jerry Wallace With The Jewels", + "title": "Primrose Lane", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Spacemen", + "title": "The Clouds", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Della Reese", + "title": "Not One Minute More", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "The Clovers", + "title": "Love Potion No. 9", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Sarah Vaughan", + "title": "Smooth Operator", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "Ray Charles and his Orchestra", + "title": "I'm Movin' On", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Andy Williams", + "title": "The Village Of St. Bernadette", + "reason": "No matches found" + }, + { + "position": 57, + "artist": "The Crests", + "title": "A Year Ago Tonight", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Andy Williams", + "title": "Lonely Street", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Lloyd Price and His Orchestra", + "title": "Wont'cha Come Home", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "Dee Clark", + "title": "How About That", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Fireflies", + "title": "You Were Mine", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Fats Domino", + "title": "I've Been Around", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "Ray Peterson", + "title": "Goodnight My Love (Pleasant Dreams)", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "The Coasters", + "title": "What About Us", + "reason": "No matches found" + }, + { + "position": 66, + "artist": "Don Costa And His Orchestra And Chorus", + "title": "I'll Walk The Line", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "Rock-A-Teens", + "title": "Woo-Hoo", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "Cliff Richard and The Drifters", + "title": "Living Doll", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Kitty Kallen", + "title": "If I Give My Heart To You", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Pat Boone", + "title": "Beyond The Sunset", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Fireballs", + "title": "Torquay", + "reason": "No matches found" + }, + { + "position": 73, + "artist": "Hugo & Luigi", + "title": "Just Come Home", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "LaVern Baker", + "title": "Tiny Tim", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Mitch Miller", + "title": "Do-Re-Mi", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Dancer, Prancer And Nervous", + "title": "The Happy Reindeer", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "The Revels", + "title": "Midnight Stroll", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "Tommy Edwards", + "title": "(New In) The Ways Of Love", + "reason": "No matches found" + }, + { + "position": 79, + "artist": "The Islanders", + "title": "The Enchanted Sea", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "Tommy Edwards", + "title": "Honestly And Truly", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Rod Bernard", + "title": "One More Chance", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Tony Bennett", + "title": "Climb Ev'ry Mountain", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Titus Turner", + "title": "We Told You Not To Marry", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Carl Dobkins, Jr.", + "title": "Lucky Devil", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Dorothy Collins", + "title": "Baciare Baciare (Kissing Kissing)", + "reason": "No matches found" + }, + { + "position": 86, + "artist": "Jane Morgan", + "title": "Happy Anniversary", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "The Mormon Tabernacle Choir", + "title": "Battle Hymn Of The Republic", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Coasters", + "title": "Run Red Run", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "The Bluenotes", + "title": "I Don't Know What It Is", + "reason": "No matches found" + }, + { + "position": 91, + "artist": "Johnny Cash", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Sandy Nelson", + "title": "Teen Beat", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Frankie Avalon", + "title": "Swingin' On A Rainbow", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Clyde McPhatter", + "title": "Let's Try Again", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Bill Haley And His Comets", + "title": "Joey's Song", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "Brook Benton", + "title": "This Time Of The Year", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Bonnie Guitar", + "title": "Candy Apple Red", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "Rod Lauren", + "title": "If I Had A Girl", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 14, + "fuzzy_match_count": 3, + "missing_count": 83, + "needs_manual_review": 3 + } + }, + { + "playlist_title": "1958 - Hot 100", + "total_songs": 100, + "exact_matches": [ + { + "position": 2, + "playlist_artist": "The Platters", + "playlist_title": "Smoke Gets In Your Eyes", + "found_song": { + "artist": "The Platters", + "disabled": false, + "favorite": false, + "guid": "de1ba92f-aaa5-7e0d-a934-fa6c25a6bd76", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Smoke Gets In Your Eyes - The Platters.mp4", + "title": "Smoke Gets In Your Eyes" + }, + "match_type": "exact" + }, + { + "position": 4, + "playlist_artist": "The Everly Brothers", + "playlist_title": "Problems", + "found_song": { + "artist": "The Everly Brothers", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "061bccb6-db5f-da4f-b6e8-d398c1ac12f2", + "path": "z://MP4\\KaraokeOnVEVO\\The Everly Brothers - Problems.mp4", + "title": "Problems" + }, + "match_type": "exact" + }, + { + "position": 5, + "playlist_artist": "The Kingston Trio", + "playlist_title": "Tom Dooley", + "found_song": { + "artist": "The Kingston Trio", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "28bd82f2-50fc-4069-1217-e5d1739ff4e1", + "path": "z://MP4\\KaraokeOnVEVO\\The Kingston Trio - Tom Dooley.mp4", + "title": "Tom Dooley" + }, + "match_type": "exact" + }, + { + "position": 6, + "playlist_artist": "Elvis Presley", + "playlist_title": "One Night", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "guid": "da6ff584-1e6b-e161-661a-5c8f6ce293c8", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke One Night - Elvis Presley.mp4", + "title": "One Night" + }, + "match_type": "exact" + }, + { + "position": 9, + "playlist_artist": "Conway Twitty", + "playlist_title": "It's Only Make Believe", + "found_song": { + "artist": "Conway Twitty", + "disabled": false, + "favorite": false, + "guid": "c577c8ca-76e3-81c2-f9c0-4b60a3bb6359", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s Only Make Believe - Conway Twitty.mp4", + "title": "It s Only Make Believe" + }, + "match_type": "exact" + }, + { + "position": 11, + "playlist_artist": "Elvis Presley", + "playlist_title": "I Got Stung", + "found_song": { + "artist": "Elvis Presley", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "bbd6540e-423a-bc5c-797a-c47c83b758a4", + "path": "z://MP4\\KaraokeOnVEVO\\Elvis Presley - I Got Stung.mp4", + "title": "I Got Stung" + }, + "match_type": "exact" + }, + { + "position": 12, + "playlist_artist": "Fats Domino", + "playlist_title": "Whole Lotta Loving", + "found_song": { + "artist": "Fats Domino", + "disabled": false, + "favorite": false, + "guid": "92c33bd6-ee64-f30c-26f2-d3e7dd2f5b58", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Whole Lotta Loving - Fats Domino.mp4", + "title": "Whole Lotta Loving" + }, + "match_type": "exact" + }, + { + "position": 17, + "playlist_artist": "Connie Francis", + "playlist_title": "My Happiness", + "found_song": { + "artist": "Connie Francis", + "disabled": false, + "favorite": false, + "guid": "88947e8e-5a01-14a8-76aa-ad5f45c7176b", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke My Happiness - Connie Francis.mp4", + "title": "My Happiness" + }, + "match_type": "exact" + }, + { + "position": 19, + "playlist_artist": "Jackie Wilson", + "playlist_title": "Lonely Teardrops", + "found_song": { + "artist": "Jackie Wilson", + "disabled": false, + "favorite": false, + "guid": "9eb595a5-605c-088c-cd8a-da17cff3a4b6", + "path": "z://MP4\\Stingray Karaoke\\Lonely Teardrops Jackie Wilson Karaoke with Lyrics.mp4", + "title": "Lonely Teardrops" + }, + "match_type": "exact" + }, + { + "position": 25, + "playlist_artist": "Big Bopper", + "playlist_title": "Chantilly Lace", + "found_song": { + "artist": "Big Bopper", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "e850d845-ed2a-e97e-b44c-369e381d23ba", + "path": "z://MP4\\KaraokeOnVEVO\\Big Bopper - Chantilly Lace.mp4", + "title": "Chantilly Lace" + }, + "match_type": "exact" + }, + { + "position": 27, + "playlist_artist": "Ritchie Valens", + "playlist_title": "Donna", + "found_song": { + "artist": "Ritchie Valens", + "disabled": false, + "favorite": false, + "guid": "e2d78790-e8ad-0cbe-4ba1-eb2d0a04726e", + "path": "z://MP4\\KaraFun Karaoke\\Donna - Ritchie Valens Karaoke Version KaraFun.mp4", + "title": "Donna" + }, + "match_type": "exact" + }, + { + "position": 29, + "playlist_artist": "Tommy Edwards", + "playlist_title": "It's All In The Game", + "found_song": { + "artist": "Tommy Edwards", + "disabled": false, + "favorite": false, + "guid": "ec8b3638-e173-ca9b-22c3-864e70b57156", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke It s All In The Game - Tommy Edwards.mp4", + "title": "It s All In The Game" + }, + "match_type": "exact" + }, + { + "position": 32, + "playlist_artist": "The Crests", + "playlist_title": "16 Candles", + "found_song": { + "artist": "The Crests", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "b49d1f7e-99b5-ffe4-28a1-df4ecf51142a", + "path": "z://MP4\\VocalStarKaraoke\\The Crests - 16 Candles.mp4", + "title": "16 Candles" + }, + "match_type": "exact" + }, + { + "position": 41, + "playlist_artist": "Neil Sedaka", + "playlist_title": "The Diary", + "found_song": { + "artist": "Neil Sedaka", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "fe489948-a758-63dd-918c-61d73e04911f", + "path": "z://MP4\\KaraokeOnVEVO\\Neil Sedaka - The Diary.mp4", + "title": "The Diary" + }, + "match_type": "exact" + }, + { + "position": 43, + "playlist_artist": "Eddie Cochran", + "playlist_title": "C'mon Everybody", + "found_song": { + "artist": "Eddie Cochran", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "1addc634-52a2-3083-4422-c8f3e388a093", + "path": "z://MP4\\ZoomKaraokeOfficial\\Eddie Cochran - CMon Everybody.mp4", + "title": "C'Mon Everybody" + }, + "match_type": "exact" + }, + { + "position": 47, + "playlist_artist": "Jane Morgan", + "playlist_title": "The Day The Rains Came", + "found_song": { + "artist": "Jane Morgan", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "04b1e774-5d07-20b5-05af-c3b857009678", + "path": "z://MP4\\VocalStarKaraoke\\Jane Morgan - The Day The Rains Came.mp4", + "title": "The Day The Rains Came" + }, + "match_type": "exact" + }, + { + "position": 57, + "playlist_artist": "Bobby Helms", + "playlist_title": "Jingle Bell Rock", + "found_song": { + "artist": "Bobby Helms", + "disabled": false, + "favorite": false, + "guid": "6c55bfa9-445b-0545-511b-9fb979d99d6d", + "path": "z://MP4\\Sing King Karaoke\\Bobby Helms - Jingle Bell Rock (Karaoke Version).mp4", + "title": "Jingle Bell Rock" + }, + "match_type": "exact" + }, + { + "position": 66, + "playlist_artist": "Lloyd Price", + "playlist_title": "Stagger Lee", + "found_song": { + "artist": "Lloyd Price", + "disabled": false, + "favorite": false, + "guid": "7baaab3a-1aa6-b3a5-2292-97315f68bb7c", + "path": "z://MP4\\KaraFun Karaoke\\Karaoke Stagger Lee - Lloyd Price.mp4", + "title": "Stagger Lee" + }, + "match_type": "exact" + }, + { + "position": 73, + "playlist_artist": "Chuck Berry", + "playlist_title": "Run Rudolph Run", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e2763a55-f716-761a-efe3-b05a031e8d32", + "path": "z://MP4\\Sing King Karaoke\\Chuck Berry - Run Rudolph Run (Karaoke Version).mp4", + "title": "Run Rudolph Run" + }, + "match_type": "exact" + }, + { + "position": 79, + "playlist_artist": "Chuck Berry", + "playlist_title": "Merry Christmas Baby", + "found_song": { + "artist": "Chuck Berry", + "disabled": false, + "favorite": false, + "guid": "e39943d8-0683-999b-a4c7-9a94ee686927", + "path": "z://CDG\\Various\\Chuck Berry - Merry Christmas Baby.mp3", + "title": "Merry Christmas Baby" + }, + "match_type": "exact" + }, + { + "position": 86, + "playlist_artist": "Bing Crosby", + "playlist_title": "White Christmas", + "found_song": { + "artist": "Bing Crosby", + "disabled": false, + "favorite": false, + "guid": "3cb6463b-ae00-3eb0-0173-f78406d93c1f", + "path": "z://MP4\\Sing King Karaoke\\Bing Crosby - White Christmas (Karaoke Version).mp4", + "title": "White Christmas" + }, + "match_type": "exact" + }, + { + "position": 91, + "playlist_artist": "Bobby Day", + "playlist_title": "Rock-in Robin", + "found_song": { + "artist": "Bobby Day", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "d66a08b4-1589-7d9f-84d7-485f7a5adb79", + "path": "z://MP4\\KaraokeOnVEVO\\Bobby Day - Rock-in Robin.mp4", + "title": "Rock-in Robin" + }, + "match_type": "exact" + } + ], + "fuzzy_matches": [ + { + "position": 3, + "playlist_artist": "The Teddy Bears", + "playlist_title": "To Know Him, Is To Love Him", + "found_song": { + "artist": "Teddy Bears", + "disabled": false, + "favorite": false, + "genre": "Karaoke", + "guid": "60e4f026-ebae-ad0d-edfc-298346cafb1a", + "path": "z://CDG\\Sunfly Collection\\Sunfly Most Wanted\\SFMW 827\\Teddy Bears - To Know Him Is To Love Him - SFMW 827 -13.mp3", + "title": "To Know Him Is To Love Him" + }, + "similarity": 0.94, + "match_type": "fuzzy", + "needs_manual_review": true + } + ], + "missing_songs": [ + { + "position": 1, + "artist": "The Chipmunks With David Seville", + "title": "The Chipmunk Song", + "reason": "No matches found" + }, + { + "position": 7, + "artist": "The Playmates", + "title": "Beep Beep", + "reason": "No matches found" + }, + { + "position": 8, + "artist": "Ricky Nelson", + "title": "Lonesome Town", + "reason": "No matches found" + }, + { + "position": 10, + "artist": "Clyde McPhatter", + "title": "A Lover's Question", + "reason": "No matches found" + }, + { + "position": 13, + "artist": "Jimmie Rodgers", + "title": "Bimbombey", + "reason": "No matches found" + }, + { + "position": 14, + "artist": "Billy Grammer", + "title": "Gotta Travel On", + "reason": "No matches found" + }, + { + "position": 15, + "artist": "Tommy Edwards", + "title": "Love Is All We Need", + "reason": "No matches found" + }, + { + "position": 16, + "artist": "Bobby Darin", + "title": "Queen Of The Hop", + "reason": "No matches found" + }, + { + "position": 18, + "artist": "Duane Eddy His Twangy Guitar And The Rebels", + "title": "Cannonball", + "reason": "No matches found" + }, + { + "position": 20, + "artist": "Cozy Cole", + "title": "Topsy II", + "reason": "No matches found" + }, + { + "position": 21, + "artist": "Frankie Avalon", + "title": "I'll Wait For You", + "reason": "No matches found" + }, + { + "position": 22, + "artist": "Ricky Nelson", + "title": "I Got A Feeling", + "reason": "No matches found" + }, + { + "position": 23, + "artist": "The Royaltones", + "title": "Poor Boy", + "reason": "No matches found" + }, + { + "position": 24, + "artist": "Louis Prima And Keely Smith", + "title": "That Old Black Magic", + "reason": "No matches found" + }, + { + "position": 26, + "artist": "The Nu Tornados", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 28, + "artist": "Donnie Owens", + "title": "Need You", + "reason": "No matches found" + }, + { + "position": 30, + "artist": "The Four Coins", + "title": "The World Outside", + "reason": "No matches found" + }, + { + "position": 31, + "artist": "Reg Owen & His Orchestra", + "title": "Manhattan Spiritual", + "reason": "No matches found" + }, + { + "position": 33, + "artist": "The Diamonds", + "title": "Walking Along", + "reason": "No matches found" + }, + { + "position": 34, + "artist": "Earl Grant", + "title": "The End", + "reason": "No matches found" + }, + { + "position": 35, + "artist": "The Cadillacs", + "title": "Peek-A-Boo", + "reason": "No matches found" + }, + { + "position": 36, + "artist": "Sam Cooke", + "title": "Love You Most Of All", + "reason": "No matches found" + }, + { + "position": 37, + "artist": "Paul Anka-Geo. Hamilton IV-Johnny Nash", + "title": "The Teen Commandments", + "reason": "No matches found" + }, + { + "position": 38, + "artist": "Big Bopper", + "title": "Big Bopper's Wedding", + "reason": "No matches found" + }, + { + "position": 39, + "artist": "Paul Anka", + "title": "(All of a Sudden) My Heart Sings", + "reason": "No matches found" + }, + { + "position": 40, + "artist": "Pat Boone", + "title": "I'll Remember Tonight", + "reason": "No matches found" + }, + { + "position": 42, + "artist": "Jimmy Clanton", + "title": "A Letter To An Angel", + "reason": "No matches found" + }, + { + "position": 44, + "artist": "Cozy Cole", + "title": "Turvy II", + "reason": "No matches found" + }, + { + "position": 45, + "artist": "LaVern Baker", + "title": "I Cried A Tear", + "reason": "No matches found" + }, + { + "position": 46, + "artist": "The Four Lads", + "title": "The Mocking Bird", + "reason": "No matches found" + }, + { + "position": 48, + "artist": "Johnny Mathis", + "title": "Call Me", + "reason": "No matches found" + }, + { + "position": 49, + "artist": "The Ames Brothers", + "title": "Pussy Cat", + "reason": "No matches found" + }, + { + "position": 50, + "artist": "Kalin Twins", + "title": "Forget Me Not", + "reason": "No matches found" + }, + { + "position": 51, + "artist": "The Tommy Dorsey Orchestra", + "title": "Tea For Two Cha Cha", + "reason": "No matches found" + }, + { + "position": 52, + "artist": "Dee Clark", + "title": "Nobody But You", + "reason": "No matches found" + }, + { + "position": 53, + "artist": "Augie Rios", + "title": "??�D??�nde Est??� Santa Claus? (Where Is Santa Claus?)", + "reason": "No matches found" + }, + { + "position": 54, + "artist": "Chuck Berry", + "title": "Sweet Little Rock And Roller", + "reason": "No matches found" + }, + { + "position": 55, + "artist": "June Valli", + "title": "The Wedding", + "reason": "No matches found" + }, + { + "position": 56, + "artist": "Bill Parsons", + "title": "The All American Boy", + "reason": "No matches found" + }, + { + "position": 58, + "artist": "Bernie Lowe Orchestra", + "title": "Sing Sing Sing", + "reason": "No matches found" + }, + { + "position": 59, + "artist": "Roy Hamilton", + "title": "Pledging My Love", + "reason": "No matches found" + }, + { + "position": 60, + "artist": "Billy Vaughn And His Orchestra", + "title": "Cimarron (Roll On)", + "reason": "No matches found" + }, + { + "position": 61, + "artist": "The Four Esquires", + "title": "Hideaway", + "reason": "No matches found" + }, + { + "position": 62, + "artist": "Johnny Cash And The Tennessee Two", + "title": "It's Just About Time", + "reason": "No matches found" + }, + { + "position": 63, + "artist": "Dion & The Belmonts", + "title": "Don't Pity Me", + "reason": "No matches found" + }, + { + "position": 64, + "artist": "The Applejacks", + "title": "Rocka-Conga", + "reason": "No matches found" + }, + { + "position": 65, + "artist": "Joni James", + "title": "There Goes My Heart", + "reason": "No matches found" + }, + { + "position": 67, + "artist": "James Brown And The Famous Flames", + "title": "Try Me", + "reason": "No matches found" + }, + { + "position": 68, + "artist": "Jack Scott", + "title": "Goodbye Baby", + "reason": "No matches found" + }, + { + "position": 69, + "artist": "The Four Preps", + "title": "Cinderella", + "reason": "No matches found" + }, + { + "position": 70, + "artist": "Tony Dallara", + "title": "Come Prima", + "reason": "No matches found" + }, + { + "position": 71, + "artist": "Raymond Lefevre and His Orchestra", + "title": "The Day The Rains Came", + "reason": "No matches found" + }, + { + "position": 72, + "artist": "Harvey & The Moonglows", + "title": "Ten Commandments Of Love", + "reason": "No matches found" + }, + { + "position": 74, + "artist": "Tab Hunter", + "title": "Jealous Heart", + "reason": "No matches found" + }, + { + "position": 75, + "artist": "Polly Bergen", + "title": "Come Prima (Koma Preema)", + "reason": "No matches found" + }, + { + "position": 76, + "artist": "Frank Sinatra", + "title": "Mr. Success", + "reason": "No matches found" + }, + { + "position": 77, + "artist": "Billy & Lillie", + "title": "Lucky Ladybug", + "reason": "No matches found" + }, + { + "position": 78, + "artist": "The Everly Brothers", + "title": "Love Of My Life", + "reason": "No matches found" + }, + { + "position": 80, + "artist": "The Applejacks", + "title": "Mexican Hat Rock", + "reason": "No matches found" + }, + { + "position": 81, + "artist": "Quaker City Boys", + "title": "Teasin'", + "reason": "No matches found" + }, + { + "position": 82, + "artist": "Perry Como", + "title": "Mandolins In The Moonlight", + "reason": "No matches found" + }, + { + "position": 83, + "artist": "Jerry Wallace", + "title": "Diamond Ring", + "reason": "No matches found" + }, + { + "position": 84, + "artist": "Bobby Helms", + "title": "The Fool And The Angel", + "reason": "No matches found" + }, + { + "position": 85, + "artist": "Poni-Tails", + "title": "Seven Minutes In Heaven", + "reason": "No matches found" + }, + { + "position": 87, + "artist": "Nat King Cole", + "title": "Non Dimenticar (Don't Forget)", + "reason": "No matches found" + }, + { + "position": 88, + "artist": "The Harry Simeone Chorale", + "title": "The Little Drummer Boy", + "reason": "No matches found" + }, + { + "position": 89, + "artist": "Enoch Light & The Light Brigade", + "title": "I Want To Be Happy Cha Cha", + "reason": "No matches found" + }, + { + "position": 90, + "artist": "Bobby Freeman", + "title": "Need Your Love", + "reason": "No matches found" + }, + { + "position": 92, + "artist": "Johnny Tillotson", + "title": "Dreamy Eyes", + "reason": "No matches found" + }, + { + "position": 93, + "artist": "Art Lund", + "title": "Philadelphia U.S.A.", + "reason": "No matches found" + }, + { + "position": 94, + "artist": "Chuck Berry", + "title": "Joe Joe Gunne", + "reason": "No matches found" + }, + { + "position": 95, + "artist": "Ray Charles and his Orchestra", + "title": "Rockhouse (Part 2)", + "reason": "No matches found" + }, + { + "position": 96, + "artist": "The Accents", + "title": "Wiggle, Wiggle", + "reason": "No matches found" + }, + { + "position": 97, + "artist": "Little Anthony And The Imperials", + "title": "So Much", + "reason": "No matches found" + }, + { + "position": 98, + "artist": "The 5 Chanels", + "title": "The Reason", + "reason": "No matches found" + }, + { + "position": 99, + "artist": "Wade Flemons and the Newcomers", + "title": "Here I Stand", + "reason": "No matches found" + }, + { + "position": 100, + "artist": "The Olympics", + "title": "(I Wanna) Dance With The Teacher", + "reason": "No matches found" + } + ], + "summary": { + "exact_match_count": 22, + "fuzzy_match_count": 1, + "missing_count": 77, + "needs_manual_review": 1 + } + } + ], + "overall_summary": { + "total_songs": 9749, + "exact_matches": 3911, + "fuzzy_matches": 557, + "missing_songs": 5281, + "needs_manual_review": 557 + } +} \ No newline at end of file diff --git a/cli/playlist_validator.py b/cli/playlist_validator.py index c5de831..abc9dc7 100644 --- a/cli/playlist_validator.py +++ b/cli/playlist_validator.py @@ -21,6 +21,7 @@ from utils import ( extract_channel_from_path, get_file_extension, parse_multi_artist, + clean_artist_name, validate_song_data ) @@ -63,10 +64,15 @@ class PlaylistValidator: if not validate_song_data(song): continue - # Handle multi-artist songs - artists = parse_multi_artist(song['artist']) + # Clean and handle artist names + cleaned_artist = clean_artist_name(song['artist']) + if not cleaned_artist: + cleaned_artist = song['artist'] # Fallback to original if cleaning fails + + # Handle multi-artist songs (after cleaning) + artists = parse_multi_artist(cleaned_artist) if not artists: - artists = [song['artist']] + artists = [cleaned_artist] # Create exact match keys for artist in artists: diff --git a/cli/utils.py b/cli/utils.py index 5e28c8b..c6e903b 100644 --- a/cli/utils.py +++ b/cli/utils.py @@ -218,6 +218,50 @@ def extract_consolidated_channel_from_path(file_path: str, channel_priorities: L return None +def clean_artist_name(artist_string: str) -> str: + """Clean artist name by removing features, collaborations, etc.""" + if not artist_string: + return "" + + # Remove common feature/collaboration patterns (more precise) + patterns_to_remove = [ + r'\s*feat\.?\s*.*$', # feat. anything after + r'\s*ft\.?\s*.*$', # ft. anything after + r'\s*featuring\s*.*$', # featuring anything after + r'\s*with\s*.*$', # with anything after + r'\s*presents\s*.*$', # presents anything after + r'\s*featuring\s*.*$', # featuring anything after + r'\s*feat\s*.*$', # feat anything after + r'\s*ft\s*.*$', # ft anything after + ] + + # Handle comma/semicolon/slash patterns more carefully + # Only remove if they're followed by feature words + separator_patterns = [ + r'\s*,\s*(feat\.?|ft\.?|featuring|with|presents).*$', # comma followed by feature words + r'\s*;\s*(feat\.?|ft\.?|featuring|with|presents).*$', # semicolon followed by feature words + r'\s*/\s*(feat\.?|ft\.?|featuring|with|presents).*$', # slash followed by feature words + ] + + cleaned_artist = artist_string + + # Apply feature removal patterns first + for pattern in patterns_to_remove: + cleaned_artist = re.sub(pattern, '', cleaned_artist, flags=re.IGNORECASE) + + # Apply separator patterns only if they're followed by feature words + for pattern in separator_patterns: + cleaned_artist = re.sub(pattern, '', cleaned_artist, flags=re.IGNORECASE) + + # Clean up any trailing separators that might be left + cleaned_artist = re.sub(r'\s*[,;/]\s*$', '', cleaned_artist) + + # Clean up extra whitespace + cleaned_artist = re.sub(r'\s+', ' ', cleaned_artist).strip() + + return cleaned_artist + + def parse_multi_artist(artist_string: str) -> List[str]: """Parse multi-artist strings with various delimiters.""" if not artist_string: diff --git a/config/config.json b/config/config.json index 6e31e2b..d6388e2 100644 --- a/config/config.json +++ b/config/config.json @@ -5,7 +5,7 @@ "Stingray Karaoke" ], "matching": { - "fuzzy_matching": false, + "fuzzy_matching": true, "fuzzy_threshold": 0.85, "case_sensitive": false }, diff --git a/requirements.txt b/requirements.txt index 09999cc..6cfa243 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,12 @@ # Python dependencies for KaraokeMerge CLI tool -# Core dependencies (currently using only standard library) -# No external dependencies required for basic functionality +# Core dependencies +flask>=2.0.0 -# Optional dependencies for enhanced features: -# Uncomment the following lines if you want to enable fuzzy matching: +# Fuzzy matching dependencies (required for playlist validation) fuzzywuzzy>=0.18.0 python-Levenshtein>=0.21.0 # For future enhancements: # pandas>=1.5.0 # For advanced data analysis -# click>=8.0.0 # For enhanced CLI interface - -# Web UI dependencies -flask>=2.0.0 \ No newline at end of file +# click>=8.0.0 # For enhanced CLI interface \ No newline at end of file diff --git a/start_web_ui.py b/start_web_ui.py index 32ce6e4..1f847a0 100644 --- a/start_web_ui.py +++ b/start_web_ui.py @@ -10,21 +10,38 @@ import webbrowser from time import sleep def check_dependencies(): - """Check if Flask is installed.""" + """Check if required dependencies are installed.""" + dependencies_ok = True + + # Check Flask try: import flask print("✅ Flask is installed") - return True except ImportError: print("❌ Flask is not installed") print("Installing Flask...") try: subprocess.check_call([sys.executable, "-m", "pip", "install", "flask>=2.0.0"]) print("✅ Flask installed successfully") - return True except subprocess.CalledProcessError: print("❌ Failed to install Flask") - return False + dependencies_ok = False + + # Check fuzzywuzzy for playlist validation + try: + import fuzzywuzzy + print("✅ fuzzywuzzy is installed (for playlist validation)") + except ImportError: + print("❌ fuzzywuzzy is not installed") + print("Installing fuzzywuzzy and python-Levenshtein...") + try: + subprocess.check_call([sys.executable, "-m", "pip", "install", "fuzzywuzzy>=0.18.0", "python-Levenshtein>=0.21.0"]) + print("✅ fuzzywuzzy installed successfully") + except subprocess.CalledProcessError: + print("❌ Failed to install fuzzywuzzy") + print("⚠️ Playlist validation will work without fuzzy matching") + + return dependencies_ok def check_data_files(): """Check if required data files exist.""" diff --git a/web/app.py b/web/app.py index b248d1e..bef2b15 100644 --- a/web/app.py +++ b/web/app.py @@ -1449,4 +1449,4 @@ def apply_all_updates(): if __name__ == '__main__': - app.run(debug=True, host='0.0.0.0', port=5000) \ No newline at end of file + app.run(debug=True, host='0.0.0.0', port=5001) \ No newline at end of file